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

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

  .blog-list__hero {
    background-color: #003366;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
  }

  .blog-list__main-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #FFD700;
  }

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

  .blog-list__section {
    padding-bottom: 40px;
  }

  .blog-list__timeline {
    position: relative;
    padding: 0 20px;
    margin-top: 30px;
  }

  @media (min-width: 768px) {
    .blog-list__timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 4px;
      background: linear-gradient(to bottom, #FFD700, #003366);
      margin-left: -2px;
      z-index: 0;
    }
  }

  .blog-list__timeline-entry {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    z-index: 1;
  }

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

  @media (min-width: 768px) {
    .blog-list__timeline-dot {
      content: '';
      position: absolute;
      top: 50%;
      width: 20px;
      height: 20px;
      background-color: #FFD700;
      border: 4px solid #003366;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
    }

    .blog-list__timeline-entry:nth-child(odd) .blog-list__timeline-dot {
      left: calc(100% + 20px);
    }

    .blog-list__timeline-entry:nth-child(even) .blog-list__timeline-dot {
      left: -20px;
    }
  }

  .blog-list__timeline-content {
    padding: 20px;
    width: 100%;
    text-align: center;
  }

  .blog-list__timeline-date-wrapper {
    margin-bottom: 15px;
  }

  .blog-list__timeline-date {
    font-size: 0.9em;
    color: #777;
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
  }

  .blog-list__timeline-image-link {
    display: block;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
  }

  .blog-list__timeline-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }

  .blog-list__timeline-text-wrapper {
    text-align: left;
  }

  .blog-list__timeline-title {
    font-size: 1.25em;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .blog-list__timeline-title-link {
    color: #003366;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .blog-list__timeline-title-link:hover {
    color: #FFD700;
  }

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

  .blog-list__timeline-read-more {
    display: inline-block;
    background-color: #003366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .blog-list__timeline-read-more:hover {
    background-color: #FFD700;
    color: #003366;
    transform: translateY(-2px);
  }

  @media (min-width: 768px) {
    .blog-list__hero {
      padding: 60px 20px;
    }

    .blog-list__main-title {
      font-size: 3em;
    }

    .blog-list__timeline {
      padding: 0 40px;
    }

    .blog-list__timeline-entry {
      flex-direction: row;
      width: calc(50% - 30px);
      position: relative;
      margin-left: auto;
      margin-right: auto;
      padding: 0;
    }

    .blog-list__timeline-entry:nth-child(odd) {
      margin-right: calc(50% + 20px);
      margin-left: 0;
    }

    .blog-list__timeline-entry:nth-child(even) {
      margin-left: calc(50% + 20px);
      margin-right: 0;
    }

    .blog-list__timeline-content {
      display: flex;
      flex-direction: row;
      text-align: left;
      width: 100%;
      padding: 0;
    }

    .blog-list__timeline-image-link {
      flex: 0 0 40%;
      height: auto;
      margin-right: 20px;
      margin-bottom: 0;
    }

    .blog-list__timeline-image {
      height: 100%;
      min-height: 180px;
    }

    .blog-list__timeline-text-wrapper {
      flex: 1;
      padding: 20px;
    }

    .blog-list__timeline-date-wrapper {
      position: absolute;
      top: 20px;
      right: 20px;
      margin-bottom: 0;
    }

    .blog-list__timeline-entry:nth-child(odd) .blog-list__timeline-date-wrapper {
      left: 20px;
      right: auto;
    }
  }

  @media (min-width: 1024px) {
    .blog-list__timeline-entry {
      width: calc(50% - 30px);
    }

    .blog-list__timeline-image {
      height: 220px;
    }

    .blog-list__timeline-title {
      font-size: 1.35em;
    }
    .blog-list__timeline-summary {
      font-size: 1.05em;
    }
  }