.blog-list {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      color: #333;
      background-color: #f8f9fa;
      padding: 0 15px 60px;
      padding-top: var(--header-offset, 120px);
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }

    .blog-list__heading {
      text-align: center;
      font-size: 2.5em;
      color: #0056b3;
      margin-bottom: 40px;
      padding-top: 20px;
      font-weight: 700;
    }

    .blog-list__timeline-container {
      position: relative;
      padding: 0 15px;
    }

    .blog-list__timeline-container::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 20px;
      width: 4px;
      background-color: #e0e0e0;
      z-index: 0;
    }

    .blog-list__timeline-item {
      position: relative;
      margin-bottom: 40px;
      padding-left: 60px;
      display: flex;
      flex-direction: column;
    }

    .blog-list__timeline-dot {
      width: 18px;
      height: 18px;
      background-color: #0056b3;
      border: 3px solid #fff;
      border-radius: 50%;
      position: absolute;
      left: 14px;
      top: 0;
      z-index: 1;
      box-shadow: 0 0 0 2px #0056b3;
    }

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

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

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

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

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

    .blog-list__date {
      font-size: 14px;
      color: #6c757d;
      margin-bottom: 10px;
      display: block;
    }

    .blog-list__title {
      font-size: 20px;
      font-weight: 700;
      color: #333;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .blog-list__title-link {
      text-decoration: none;
      color: #333;
      transition: color 0.3s ease;
    }

    .blog-list__title-link:hover {
      color: #0056b3;
    }

    .blog-list__summary {
      font-size: 16px;
      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__read-more {
      display: inline-block;
      margin-top: auto;
      padding: 10px 20px;
      background-color: #0056b3;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      transition: background-color 0.3s ease;
      font-size: 15px;
      text-align: center;
      align-self: flex-start;
    }

    .blog-list__read-more:hover {
      background-color: #003d80;
    }

    @media (min-width: 768px) {
      .blog-list__timeline-container::before {
        left: 50%;
        transform: translateX(-2px);
      }

      .blog-list__timeline-item {
        display: grid;
        grid-template-columns: 1fr 4px 1fr;
        gap: 30px;
        padding-left: 0;
        margin-bottom: 60px;
      }

      .blog-list__timeline-dot {
        left: 50%;
        transform: translateX(-50%);
      }

      .blog-list__timeline-item:nth-child(odd) .blog-list__card {
        grid-column: 1 / 2;
        text-align: right;
      }

      .blog-list__timeline-item:nth-child(even) .blog-list__card {
        grid-column: 3 / 4;
        text-align: left;
      }

      .blog-list__timeline-item:nth-child(odd) .blog-list__content {
        align-items: flex-end;
      }

      .blog-list__timeline-item:nth-child(even) .blog-list__read-more {
        align-self: flex-start;
      }
      
      .blog-list__timeline-item:nth-child(odd) .blog-list__read-more {
        align-self: flex-end;
      }

      .blog-list__timeline-item:nth-child(odd) .blog-list__image-wrapper {
        order: 1;
      }
      
      .blog-list__timeline-item:nth-child(even) .blog-list__image-wrapper {
        order: 0;
      }
    }

    @media (min-width: 1024px) {
      .blog-list {
        padding: 0 30px 80px;
        padding-top: var(--header-offset, 120px);
      }
      .blog-list__heading {
        font-size: 3em;
      }
    }

    .blog-list__title-link, .blog-list__title { color: #212529; }
    .blog-list__title-link:hover { color: #0056b3; }
    .blog-list__summary { color: #495057; }
    .blog-list__date { color: #6c757d; }
    .blog-list__read-more { background-color: #0056b3; color: #fff; }
    .blog-list__read-more:hover { background-color: #003d80; }
    .blog-list__heading { color: #0056b3; }
    .blog-list__timeline-dot { background-color: #0056b3; border-color: #fff; box-shadow: 0 0 0 2px #0056b3; }
    .blog-list__timeline-container::before { background-color: #e0e0e0; }