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

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

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

    @media (max-width: 767px) {
      .blog-list__timeline-line {
        left: 20px;
      }
    }

    .blog-list__item {
      display: flex;
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
      align-items: center;
    }

    .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.1);
      padding: 25px;
      flex: 1;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      min-height: 200px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .blog-list__item-date {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100px;
      text-align: center;
      font-size: 14px;
      color: #555;
      font-weight: bold;
      background-color: #fff;
      padding: 5px 0;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      z-index: 2;
    }

    .blog-list__item-dot {
      position: absolute;
      top: 50%;
      width: 16px;
      height: 16px;
      background-color: #ff6600;
      border: 3px solid #fff;
      border-radius: 50%;
      transform: translateY(-50%);
      z-index: 2;
    }

    @media (min-width: 768px) {
      .blog-list__item {
        width: 50%;
      }

      .blog-list__item:nth-child(odd) {
        padding-right: 100px;
        left: 0;
        text-align: right;
      }

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

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

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

      .blog-list__item:nth-child(odd) .blog-list__item-date {
        right: -50px;
        left: auto;
      }

      .blog-list__item:nth-child(even) .blog-list__item-date {
        left: -50px;
        right: auto;
      }

      .blog-list__item:nth-child(odd) .blog-list__item-dot {
        right: -8px;
        left: auto;
      }

      .blog-list__item:nth-child(even) .blog-list__item-dot {
        left: -8px;
        right: auto;
      }
    }

    @media (max-width: 767px) {
      .blog-list__item {
        width: 100%;
        padding-left: 60px;
        margin-bottom: 30px;
      }

      .blog-list__item-content {
        margin-left: 0;
      }

      .blog-list__item-date {
        left: -50px;
        width: 80px;
        font-size: 13px;
        transform: translateY(-50%) rotate(-90deg);
        transform-origin: center;
        top: 20px;
        background-color: transparent;
        box-shadow: none;
        color: #555;
      }

      .blog-list__item-dot {
        left: 12px;
      }
    }

    .blog-list__cover-image {
      width: 100%;
      padding-bottom: 56.25%; 
      background-size: cover;
      background-position: center;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      position: relative;
    }

    .blog-list__title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.4;
      color: #222;
    }

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

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

    .blog-list__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;
      flex-grow: 1;
    }

    .blog-list__footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 10px;
    }

    .blog-list__published-at {
      font-size: 13px;
      color: #555;
    }

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

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