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

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

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

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

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

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

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

    .blog-list__item-date-wrapper {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        background-color: #E6B325;
        color: #fff;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: bold;
        white-space: nowrap;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .blog-list__item:nth-child(even) .blog-list__item-content {
      margin-left: auto;
    }

    .blog-list__item:nth-child(odd) .blog-list__item-content {
      margin-right: auto;
    }

    .blog-list__item-content::after {
      content: '';
      position: absolute;
      top: 30px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background-color: #E6B325;
      border: 3px solid #f8f8f8;
      z-index: 3;
    }

    .blog-list__item:nth-child(odd) .blog-list__item-content::after {
      right: -58px;
    }

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

    .blog-list__item-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      display: block;
    }

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

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

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

    .blog-list__item-summary {
      font-size: 15px;
      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__item-read-more {
      display: inline-block;
      margin-top: 10px;
      color: #E6B325;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

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

    @media (max-width: 1024px) {
      .blog-list__container::before {
        left: 20px;
        transform: translateX(0);
      }

      .blog-list__item {
        justify-content: flex-start;
      }

      .blog-list__item-content {
        width: calc(100% - 60px);
        margin-left: 40px !important;
        margin-right: 0 !important;
      }

      .blog-list__item-content::after {
        left: -38px;
        right: auto;
      }

      .blog-list__item-date-wrapper {
          left: 20px;
          transform: translateX(0);
          top: 0;
          padding: 5px 10px;
          font-size: 13px;
      }

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

    @media (max-width: 768px) {
      .blog-list__container {
        padding: 0 15px;
      }

      .blog-list__container::before {
        left: 15px;
      }

      .blog-list__item-content {
        width: calc(100% - 50px);
        margin-left: 30px !important;
        padding: 20px;
      }

      .blog-list__item-content::after {
        left: -30px;
        width: 14px;
        height: 14px;
        top: 25px;
      }

      .blog-list__item-date-wrapper {
          left: 15px;
          font-size: 12px;
          padding: 4px 8px;
      }

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

      .blog-list__item-title {
        font-size: 18px;
      }

      .blog-list__item-summary {
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      .blog-list__item-image {
        height: 150px;
      }

      .blog-list__item-title {
        font-size: 16px;
      }

      .blog-list__item-summary {
        font-size: 13px;
        -webkit-line-clamp: 4;
      }

      .blog-list__item-content {
        padding: 15px;
      }
      .blog-list__item-content::after {
        top: 20px;
      }
      .blog-list__item-date-wrapper {
          top: -10px;
          left: 15px;
          transform: translateX(0);
      }
      .blog-list__item {
        margin-bottom: 50px;
      }
    }