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

    .blog-list__timeline-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .blog-list__header {
      text-align: center;
      margin-bottom: 40px;
    }

    .blog-list__main-title {
      font-size: 2.5rem;
      color: #212529;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .blog-list__description {
      font-size: 1.1rem;
      color: #495057;
      line-height: 1.6;
      max-width: 800px;
      margin: 0 auto;
    }

    .blog-list__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .blog-list__card {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
      position: relative;
    }

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

    .blog-list__card-link {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .blog-list__image-wrapper {
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }

    .blog-list__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .blog-list__content {
      padding: 20px;
    }

    .blog-list__title {
      font-size: 1.25rem;
      font-weight: bold;
      color: #212529;
      margin-bottom: 10px;
      line-height: 1.3;
    }

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

    .blog-list__summary {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.5;
      margin-bottom: 15px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 3em;
    }

    .blog-list__meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
      color: #555;
    }

    .blog-list__read-more {
      color: #0056b3;
      font-weight: bold;
    }

    .blog-list__read-more:hover {
      text-decoration: underline;
    }

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

    .blog-list__view-all-button {
      display: inline-block;
      background-color: #0056b3;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1rem;
      transition: background-color 0.3s ease;
    }

    .blog-list__view-all-button:hover {
      background-color: #003d7a;
    }

    @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);
      }
    }

    @media (max-width: 767px) {
      .blog-list__card {
        padding-left: 30px;
      }

      .blog-list__card::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 0;
        bottom: 0;
        width: 2px;
        background-color: #ddd;
      }

      .blog-list__card:first-child::before {
        top: 20px;
      }

      .blog-list__card:last-child::before {
        height: 20px;
        bottom: auto;
      }

      .blog-list__card::after {
        content: '';
        position: absolute;
        left: 4px;
        top: 20px;
        width: 14px;
        height: 14px;
        background-color: #0056b3;
        border: 2px solid #ffffff;
        border-radius: 50%;
        z-index: 1;
        box-shadow: 0 0 0 2px #0056b3;
      }
    }