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

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

    .blog-list__hero-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: #ffcc00;
      font-weight: bold;
    }

    .blog-list__hero-description {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto;
      opacity: 0.9;
    }

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

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

    .blog-list__timeline::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      width: 2px;
      height: 100%;
      background: #ddd;
      transform: translateX(-50%);
      display: none;
    }

    .blog-list__item {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 40px;
      position: relative;
      align-items: flex-start;
    }

    .blog-list__item:last-child {
      margin-bottom: 0;
    }

    .blog-list__item-date {
      width: 100%;
      text-align: center;
      margin-bottom: 15px;
      font-size: 0.9em;
      color: #999;
      font-weight: bold;
      position: relative;
      padding: 0 15px;
    }

    .blog-list__item-date::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 12px;
      height: 12px;
      background: #ffcc00;
      border-radius: 50%;
      border: 2px solid #fff;
      z-index: 1;
      display: none;
    }

    .blog-list__item-content {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      padding: 25px;
      width: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      min-height: 200px; 
    }

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

    .blog-list__item-image-wrapper {
      width: 100%;
      padding-bottom: 56.25%;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 20px;
      background-color: #eee;
    }

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

    .blog-list__item-title {
      font-size: 1.25em;
      margin-top: 0;
      margin-bottom: 10px;
      font-weight: bold;
    }

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

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

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

    .blog-list__item-link {
      display: inline-block;
      background-color: #0056b3;
      color: #fff;
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .blog-list__item-link:hover {
      background-color: #003d80;
    }

    @media (min-width: 768px) {
      .blog-list__timeline::before {
        display: block;
      }

      .blog-list__item-date::after {
        display: block;
      }

      .blog-list__item {
        justify-content: space-between;
        margin-bottom: 60px;
      }

      .blog-list__item-date {
        position: absolute;
        top: 0;
        width: calc(50% - 70px);
        padding: 10px 0;
        text-align: right;
        margin-right: 40px;
      }

      .blog-list__item-date::after {
        left: auto;
        right: -45px;
        transform: translateY(-50%);
      }

      .blog-list__item-content {
        width: calc(50% - 70px);
        margin-left: calc(50% + 70px);
        margin-top: 0;
      }

      .blog-list__item:nth-child(even) .blog-list__item-date {
        left: auto;
        right: 0;
        text-align: left;
        margin-left: 40px;
        padding-left: 0;
        padding-right: 0;
      }

      .blog-list__item:nth-child(even) .blog-list__item-date::after {
        left: -45px;
        right: auto;
      }

      .blog-list__item:nth-child(even) .blog-list__item-content {
        margin-left: 0;
        margin-right: calc(50% + 70px);
      }
    }

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

      .blog-list__hero-title {
        font-size: 2.8em;
      }

      .blog-list__hero-description {
        font-size: 1.2em;
      }

      .blog-list__item-date {
        width: calc(50% - 80px);
      }

      .blog-list__item-date::after {
        right: -50px;
      }

      .blog-list__item-content {
        width: calc(50% - 80px);
        margin-left: calc(50% + 80px);
      }

      .blog-list__item:nth-child(even) .blog-list__item-date::after {
        left: -50px;
      }

      .blog-list__item:nth-child(even) .blog-list__item-content {
        margin-right: calc(50% + 80px);
      }
    }