.blog-list {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 40px;
      background-color: #f8f8f8;
      font-family: 'Arial', sans-serif;
      color: #333;
    }

    .blog-list__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .blog-list__heading {
      text-align: center;
      font-size: 2.5em;
      color: #1a1a1a;
      margin-bottom: 40px;
      font-weight: bold;
    }

    .blog-list__timeline-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      position: relative;
    }

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

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

    .blog-list__item {
      background-color: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .blog-list__item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .blog-list__item-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

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

    .blog-list__item-title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .blog-list__item-title-link {
      color: #1a1a1a;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-list__item-title-link:hover {
      color: #007bff; 
    }

    .blog-list__item-summary {
      font-size: 15px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 15px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3; 
      -webkit-box-orient: vertical;
      flex-grow: 1;
    }

    .blog-list__item-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto; 
      padding-top: 15px; 
      border-top: 1px solid #eee;
    }

    .blog-list__item-date {
      font-size: 13px;
      color: #777;
    }

    .blog-list__read-more {
      display: inline-block;
      background-color: #007bff; 
      color: #ffffff;
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 14px;
      transition: background-color 0.3s ease;
      font-weight: bold;
    }

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