:root {
      --primary-color: #FFD700; 
      --secondary-color: #007bff; 
      --text-color-dark: #333333;
      --text-color-light: #ffffff;
      --text-color-gray: #666666;
      --background-light: #f8f9fa;
      --background-dark: #212529;
      --card-background: #ffffff;
      --border-color: #e0e0e0;
      --shadow-light: rgba(0, 0, 0, 0.1);
      --shadow-hover: rgba(0, 0, 0, 0.2);
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color-dark);
      background-color: var(--background-light);
    }

    .blog-list {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 40px;
      padding-left: 20px;
      padding-right: 20px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      background-color: var(--background-light);
    }

    .blog-list__heading {
      text-align: center;
      margin-bottom: 40px;
      color: var(--text-color-dark);
      font-size: 2.2em;
      font-weight: bold;
      padding-top: 20px;
    }

    .blog-list__description {
      text-align: center;
      margin-bottom: 50px;
      color: var(--text-color-gray);
      font-size: 1.1em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .blog-list__grid-container {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 30px;
    }

    @media (min-width: 768px) {
      .blog-list__grid-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .blog-list__grid-container {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .blog-list__card {
      background-color: var(--card-background);
      border-radius: 12px;
      box-shadow: 0 4px 8px var(--shadow-light);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .blog-list__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px var(--shadow-hover);
    }

    .blog-list__image-wrapper {
      width: 100%;
      padding-top: 56.25%; 
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border-bottom: 1px solid var(--border-color);
    }

    .blog-list__content {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .blog-list__title {
      font-size: 20px;
      font-weight: bold;
      margin-top: 0;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .blog-list__title-link {
      color: var(--text-color-dark);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-list__title-link:hover {
      color: var(--primary-color);
    }

    .blog-list__summary {
      font-size: 15px;
      color: var(--text-color-gray);
      margin-bottom: 15px;
      flex-grow: 1;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3; 
      -webkit-box-orient: vertical;
    }

    .blog-list__meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
      border-top: 1px solid var(--border-color);
      padding-top: 15px;
    }

    .blog-list__published-at {
      font-size: 13px;
      color: var(--text-color-gray);
    }

    .blog-list__read-more-link {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--text-color-dark); 
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 14px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      white-space: nowrap;
    }

    .blog-list__read-more-link:hover {
      background-color: #e6c200; 
      color: var(--text-color-dark);
    }

    .blog-list__view-all-button-wrapper {
        text-align: center;
        margin-top: 50px;
    }

    .blog-list__view-all-button {
        background-color: var(--secondary-color);
        color: var(--text-color-light);
        padding: 12px 25px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .blog-list__view-all-button:hover {
        background-color: #0056b3; 
    }