:root {
      --primary-color: #007bff;
      --secondary-color: #6c757d;
      --text-color: #333;
      --light-bg: #f8f9fa;
      --white-bg: #ffffff;
      --border-color: #dee2e6;
      --shadow-color: rgba(0, 0, 0, 0.1);
      --hover-shadow-color: rgba(0, 0, 0, 0.2);
      --card-radius: 10px;
      --spacing-md: 20px;
      --spacing-lg: 30px;
      --header-offset: 120px;
    }

    .blog-list {
      padding-top: var(--header-offset, 120px);
      padding-bottom: var(--spacing-lg);
      background-color: var(--light-bg);
      min-height: 100vh;
      font-family: Arial, sans-serif;
    }

    .blog-list__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: var(--spacing-md);
    }

    .blog-list__header {
      text-align: center;
      margin-bottom: var(--spacing-lg);
      padding: var(--spacing-md) 0;
    }

    .blog-list__title {
      font-size: 2.5em;
      color: var(--text-color);
      margin-bottom: 10px;
      line-height: 1.2;
      font-weight: bold;
    }

    .blog-list__description {
      font-size: 1.1em;
      color: var(--secondary-color);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .blog-list__grid {
      display: grid;
      gap: var(--spacing-lg);
      grid-template-columns: 1fr;
    }

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

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

    .blog-list__card {
      background-color: var(--white-bg);
      border-radius: var(--card-radius);
      overflow: hidden;
      box-shadow: 0 4px 12px var(--shadow-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .blog-list__card-link {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .blog-list__card-image {
      width: 100%;
      padding-bottom: 56.25%; 
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border-bottom: 1px solid var(--border-color);
      flex-shrink: 0;
    }

    .blog-list__card-content {
      padding: var(--spacing-md);
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .blog-list__card-title {
      font-size: 1.25em;
      font-weight: bold;
      color: var(--text-color);
      margin-bottom: 10px;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .blog-list__card-summary {
      font-size: 0.95em;
      color: var(--secondary-color);
      margin-bottom: 15px;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .blog-list__card-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85em;
      color: var(--secondary-color);
      margin-top: auto;
    }

    .blog-list__card-date {
      color: #999;
      white-space: nowrap;
    }

    .blog-list__card-read-more {
      color: var(--primary-color);
      font-weight: bold;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-list__card-read-more:hover {
      color: #0056b3;
    }