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

    .blog-list__hero {
      text-align: center;
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
    }

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

    .blog-list__hero-description {
      font-size: 1.1em;
      color: #6c757d;
      line-height: 1.8;
    }

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

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

    .blog-list__item {
      display: flex;
      position: relative;
      margin-bottom: 40px;
      padding: 20px;
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      z-index: 1;
      align-items: flex-start;
    }

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

    .blog-list__item-date-wrapper {
      position: absolute;
      top: 25px;
      width: 120px;
      text-align: right;
      color: #6c757d;
      font-size: 0.9em;
      z-index: 2;
    }

    .blog-list__item-date {
      display: block;
      padding-right: 20px;
      white-space: nowrap;
    }

    .blog-list__item::after {
      content: '';
      position: absolute;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background-color: #007bff;
      border: 3px solid #ffffff;
      z-index: 2;
      top: 28px;
      left: 50%;
      transform: translateX(-50%);
    }

    .blog-list__item:nth-child(odd) {
      margin-right: 50%;
      padding-right: 60px;
      text-align: right;
    }

    .blog-list__item:nth-child(odd) .blog-list__item-date-wrapper {
      left: auto;
      right: -140px;
      text-align: left;
      padding-left: 20px;
      padding-right: 0;
    }
    
    .blog-list__item:nth-child(odd) .blog-list__item-image-link {
        float: right;
        margin-left: 20px;
        margin-right: 0;
    }

    .blog-list__item:nth-child(even) {
      margin-left: 50%;
      padding-left: 60px;
      text-align: left;
    }

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

    .blog-list__item-content {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

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

    .blog-list__item-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-radius: 8px;
      transition: transform 0.3s ease;
    }

    .blog-list__item-image:hover {
      transform: scale(1.05);
    }

    .blog-list__item-text {
      flex-grow: 1;
    }

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

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

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

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

    .blog-list__item-read-more {
      display: inline-block;
      color: #007bff;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: color 0.3s ease;
    }

    .blog-list__item-read-more:hover {
      color: #0056b3;
      text-decoration: underline;
    }

    @media (max-width: 767px) {
      .blog-list__hero-title {
        font-size: 2em;
      }

      .blog-list__container::before {
        display: none;
      }

      .blog-list__item {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
        padding: 15px;
        text-align: left;
      }

      .blog-list__item::after {
        display: none;
      }

      .blog-list__item-date-wrapper {
        position: static;
        width: auto;
        text-align: left;
        color: #6c757d;
        font-size: 0.85em;
        margin-bottom: 10px;
        padding-right: 0;
      }

      .blog-list__item-date {
        padding-right: 0;
      }
      
      .blog-list__item:nth-child(odd),
      .blog-list__item:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
        padding-left: 15px;
        padding-right: 15px;
      }

      .blog-list__item:nth-child(odd) .blog-list__item-date-wrapper,
      .blog-list__item:nth-child(even) .blog-list__item-date-wrapper {
        left: auto;
        right: auto;
        text-align: left;
        padding-left: 0;
        padding-right: 0;
      }

      .blog-list__item:nth-child(odd) .blog-list__item-image-link {
          float: none;
          margin-left: 0;
          margin-right: 0;
      }

      .blog-list__item-image {
        height: 180px;
      }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      .blog-list__container {
        padding: 0 40px;
      }
      .blog-list__item-image {
        height: 150px;
      }
      .blog-list__item:nth-child(odd) {
        margin-right: calc(50% - 20px);
        padding-right: 40px;
      }

      .blog-list__item:nth-child(even) {
        margin-left: calc(50% - 20px);
        padding-left: 40px;
      }
    }

    @media (min-width: 1024px) {
        .blog-list__item-content {
            flex-direction: row;
            align-items: center;
        }

        .blog-list__item-image-link {
            width: 40%;
            margin-bottom: 0;
        }

        .blog-list__item-text {
            width: 60%;
        }
        
        .blog-list__item:nth-child(odd) .blog-list__item-image-link {
            float: left;
            margin-right: 20px;
            margin-left: 0;
        }

        .blog-list__item:nth-child(odd) .blog-list__item-text {
            text-align: right;
        }

        .blog-list__item:nth-child(even) .blog-list__item-image-link {
            float: right;
            margin-left: 20px;
            margin-right: 0;
        }

        .blog-list__item:nth-child(even) .blog-list__item-text {
            text-align: left;
        }
    }