:root {
      --primary-color: #007bff;
      --text-color: #333;
      --light-text-color: #666;
      --lighter-text-color: #777; 
      --background-color: #f9f9f9;
      --card-background: #fff;
      --border-radius-base: 10px;
      --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
      --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.15);
      --header-offset: 120px;
    }

    .blog-list {
      padding: 20px;
      padding-top: var(--header-offset, 120px);
      background-color: var(--background-color);
      min-height: 100vh;
      display: grid;
      gap: 30px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      max-width: 1200px;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .blog-list {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
        padding-top: var(--header-offset, 120px);
      }
    }

    @media (min-width: 1024px) {
      .blog-list {
        grid-template-columns: repeat(3, 1fr);
        padding: 40px;
        padding-top: var(--header-offset, 120px);
      }
    }

    .blog-list__item {
      background-color: var(--card-background);
      border-radius: var(--border-radius-base);
      overflow: hidden;
      box-shadow: var(--shadow-light);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
    }

    .blog-list__item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
    }

    .blog-list__image-wrapper {
      width: 100%;
      padding-bottom: 56.25%; 
      position: relative;
      overflow: hidden;
    }

    .blog-list__image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .blog-list__item:hover .blog-list__image {
      transform: scale(1.05);
    }

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

    .blog-list__date {
      font-size: 14px;
      color: var(--lighter-text-color);
      margin-bottom: 10px;
      display: block;
    }

    .blog-list__title-link {
      font-size: 20px;
      font-weight: bold;
      color: var(--text-color);
      text-decoration: none;
      margin-bottom: 10px;
      line-height: 1.3;
      display: block;
      transition: color 0.3s ease;
    }

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

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

    .blog-list__read-more {
      display: inline-block;
      margin-top: auto;
      padding: 8px 15px;
      background-color: var(--primary-color);
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      align-self: flex-start;
      transition: background-color 0.3s ease;
      font-size: 15px;
      font-weight: 500;
    }

    .blog-list__read-more:hover {
      background-color: #0056b3;
    }