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

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

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

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

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

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

    .blog-list__item-content-wrapper {
      width: calc(50% - 40px);
      background-color: #ffffff;
      border-radius: 12px;
      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;
    }

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

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

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

    .blog-list__item-content-wrapper::before {
      content: '';
      position: absolute;
      top: 30px;
      width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      z-index: 2;
    }

    .blog-list__item:nth-child(odd) .blog-list__item-content-wrapper::before {
      border-left: 10px solid #ffffff;
      right: -10px;
    }

    .blog-list__item:nth-child(even) .blog-list__item-content-wrapper::before {
      border-right: 10px solid #ffffff;
      left: -10px;
    }

    .blog-list__item-dot {
      position: absolute;
      top: 35px;
      width: 20px;
      height: 20px;
      background-color: #ff6600;
      border-radius: 50%;
      transform: translateX(-50%);
      z-index: 3;
    }

    .blog-list__item:nth-child(odd) .blog-list__item-dot {
      left: calc(50% + 2px);
    }

    .blog-list__item:nth-child(even) .blog-list__item-dot {
      right: calc(50% + 2px);
    }

    .blog-list__image-wrapper {
      width: 100%;
      padding-bottom: 56.25%;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 15px;
    }

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

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

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

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

    .blog-list__summary {
      font-size: 15px;
      color: #555;
      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;
      margin-top: 15px;
    }

    .blog-list__date {
      font-size: 13px;
      color: #888;
    }

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

    .blog-list__read-more:hover {
      background-color: #CC5200;
    }

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

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

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

      .blog-list__item-content-wrapper::before {
        border-right: 10px solid #ffffff;
        border-left: none;
        left: -10px;
        right: auto;
      }

      .blog-list__item-dot {
        left: 20px;
        right: auto;
        transform: translateX(-50%);
      }
    }

    @media (max-width: 767px) {
      .blog-list__container {
        padding: 0 15px;
      }
      .blog-list__item-content-wrapper {
        padding: 20px;
      }
      .blog-list__title {
        font-size: 18px;
      }
      .blog-list__summary {
        font-size: 14px;
        -webkit-line-clamp: 4;
      }
      .blog-list__date, .blog-list__read-more {
        font-size: 13px;
      }
    }