.blog-list__container {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 40px;
      background-color: #f8f9fa;
      font-family: Arial, sans-serif;
      color: #333;
      max-width: 1200px;
      margin: 0 auto;
      padding-left: 15px;
      padding-right: 15px;
    }

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

    .blog-list__description {
      text-align: center;
      font-size: 1.1em;
      color: #5a6268;
      margin-bottom: 50px;
      line-height: 1.6;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .blog-list__timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 4px;
      background-color: #e9ecef;
      transform: translateX(-50%);
      z-index: 1;
    }

    .blog-list__item {
      display: flex;
      justify-content: center;
      margin-bottom: 40px;
      position: relative;
      z-index: 2;
    }

    .blog-list__item::before {
      content: '';
      position: absolute;
      top: 25px;
      left: 50%;
      width: 20px;
      height: 20px;
      background-color: #0056b3;
      border: 4px solid #f8f9fa;
      border-radius: 50%;
      transform: translateX(-50%);
      z-index: 3;
    }

    .blog-list__content-wrapper {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      padding: 20px;
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 500px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

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

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

    .blog-list__image {
      width: 100%;
      height: 225px;
      object-fit: cover;
      display: block;
      border-radius: 8px;
    }

    .blog-list__content {
      flex-grow: 1;
    }

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

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

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

    .blog-list__summary {
      font-size: 0.95em;
      color: #5a6268;
      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__meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85em;
      color: #5a6268;
      margin-top: auto;
    }

    .blog-list__date-mobile {
      font-size: 0.8em;
      color: #5a6268;
      margin-bottom: 10px;
      display: none;
    }
    
    .blog-list__date-desktop {
      display: block;
    }

    .blog-list__read-more {
      color: #0056b3;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .blog-list__read-more:hover {
      color: #003d7a;
      text-decoration: underline;
    }

    @media (max-width: 767px) {
      .blog-list__main-title {
        font-size: 2em;
        margin-top: 30px;
        margin-bottom: 15px;
      }

      .blog-list__description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .blog-list__timeline::before {
        left: 20px;
        transform: none;
      }

      .blog-list__item {
        justify-content: flex-start;
        margin-bottom: 30px;
      }

      .blog-list__item::before {
        left: 20px;
        transform: translateX(-50%);
        top: 20px;
      }

      .blog-list__content-wrapper {
        margin-left: 50px;
        max-width: calc(100% - 65px);
      }
      
      .blog-list__image {
        height: 180px;
      }

      .blog-list__date-mobile {
        display: block;
      }
      
      .blog-list__date-desktop {
        display: none;
      }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      .blog-list__main-title {
        font-size: 2.2em;
      }

      .blog-list__description {
        font-size: 1.05em;
      }

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

      .blog-list__item {
        margin-bottom: 50px;
      }

      .blog-list__item:nth-child(odd) .blog-list__content-wrapper {
        margin-right: calc(50% + 20px);
        text-align: right;
      }

      .blog-list__item:nth-child(even) .blog-list__content-wrapper {
        margin-left: calc(50% + 20px);
        text-align: left;
      }
      
      .blog-list__item:nth-child(odd) .blog-list__image-link {
        margin-left: auto;
      }

      .blog-list__item:nth-child(odd) .blog-list__meta {
        justify-content: flex-end;
      }
      
      .blog-list__item:nth-child(odd) .blog-list__read-more {
        margin-left: 15px;
      }

      .blog-list__item:nth-child(even) .blog-list__meta {
        justify-content: flex-start;
      }
      
      .blog-list__item:nth-child(even) .blog-list__read-more {
        margin-right: 15px;
      }

      .blog-list__item:nth-child(odd)::before {
        left: calc(50% - 2px);
        transform: translateX(-50%);
      }

      .blog-list__item:nth-child(even)::before {
        left: calc(50% - 2px);
        transform: translateX(-50%);
      }
      
      .blog-list__content-wrapper {
        max-width: 45%;
        padding: 25px;
      }
      
      .blog-list__image {
        height: 200px;
      }
    }

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

      .blog-list__item {
        margin-bottom: 60px;
      }

      .blog-list__item:nth-child(odd) .blog-list__content-wrapper {
        margin-right: calc(50% + 30px);
        text-align: right;
      }

      .blog-list__item:nth-child(even) .blog-list__content-wrapper {
        margin-left: calc(50% + 30px);
        text-align: left;
      }
      
      .blog-list__item:nth-child(odd) .blog-list__image-link {
        margin-left: auto;
      }

      .blog-list__item:nth-child(odd) .blog-list__meta {
        justify-content: flex-end;
      }
      
      .blog-list__item:nth-child(odd) .blog-list__read-more {
        margin-left: 15px;
      }

      .blog-list__item:nth-child(even) .blog-list__meta {
        justify-content: flex-start;
      }
      
      .blog-list__item:nth-child(even) .blog-list__read-more {
        margin-right: 15px;
      }

      .blog-list__item:nth-child(odd)::before {
        left: calc(50% - 2px);
        transform: translateX(-50%);
      }

      .blog-list__item:nth-child(even)::before {
        left: calc(50% - 2px);
        transform: translateX(-50%);
      }
      
      .blog-list__content-wrapper {
        max-width: 45%;
        padding: 30px;
      }
      
      .blog-list__image {
        height: 225px;
      }
    }