.blog-list {
      font-family: Arial, sans-serif;
      color: #333;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
      padding-top: var(--header-offset, 120px);
      position: relative;
    }

    .blog-list__timeline {
      position: relative;
      margin-top: 40px;
      padding-bottom: 40px;
    }

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

    .blog-list__item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 30px;
      position: relative;
      width: 100%;
    }

    .blog-list__item:nth-child(even) {
      flex-direction: row-reverse;
    }

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

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

    .blog-list__item:nth-child(odd) .blog-list__item-content-wrapper {
      margin-right: 40px;
      left: 0;
    }

    .blog-list__item:nth-child(even) .blog-list__item-content-wrapper {
      margin-left: 40px;
      right: 0;
    }

    .blog-list__item-date-wrapper {
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      z-index: 3;
    }

    .blog-list__item-dot {
      width: 16px;
      height: 16px;
      background-color: #007bff;
      border: 3px solid #fff;
      border-radius: 50%;
      display: block;
      margin: 0 auto 5px auto;
      box-shadow: 0 0 0 2px #007bff;
    }

    .blog-list__item-date {
      font-size: 14px;
      color: #666;
      white-space: nowrap;
    }

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

    .blog-list__item-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
    }

    .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: #007bff;
    }

    .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;
      min-height: 3em;
    }

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

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

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

      .blog-list__item {
        flex-direction: row !important;
      }

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

      .blog-list__item-date-wrapper {
        left: 30px;
        transform: translateX(-50%);
        text-align: center;
      }
    }

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

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

      .blog-list__item-date-wrapper {
        left: 20px;
      }

      .blog-list__item-dot {
        width: 12px;
        height: 12px;
        border: 2px solid #fff;
        box-shadow: 0 0 0 1px #007bff;
      }

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

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

      .blog-list__item-summary {
        font-size: 14px;
        -webkit-line-clamp: 4;
        min-height: auto;
      }

      .blog-list__item-link {
        padding: 7px 12px;
        font-size: 13px;
      }
    }