.blog-list__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      padding-top: var(--header-offset, 120px);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      background-color: #f9f9f9;
    }

    .blog-list__timeline {
      position: relative;
      padding: 20px 0;
      list-style: none;
      margin: 0;
    }

    .blog-list__timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 20px;
      width: 2px;
      background-color: #ddd;
      z-index: 1;
    }

    .blog-list__item {
      position: relative;
      margin-bottom: 40px;
      padding: 20px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      margin-left: 60px;
    }

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

    .blog-list__date-marker {
      position: absolute;
      left: -50px;
      top: 20px;
      background-color: #CC3300;
      color: #fff;
      border-radius: 5px;
      width: 80px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: bold;
      line-height: 1.2;
      text-align: center;
      z-index: 2;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .blog-list__content {
      flex-grow: 1;
    }

    .blog-list__image-wrapper {
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      padding-top: 56.25%;
      background-color: #eee;
    }

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

    .blog-list__text-content {
      padding-top: 5px;
    }

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

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

    .blog-list__title a:hover {
      color: #E67300;
    }

    .blog-list__summary {
      font-size: 16px;
      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__read-more {
      display: inline-block;
      background-color: #CC3300;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 15px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

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

    @media (min-width: 768px) {
      .blog-list__timeline::before {
        left: 50%;
        transform: translateX(-50%);
      }

      .blog-list__item {
        width: calc(50% - 40px);
        margin-left: auto;
        margin-right: auto;
        clear: both;
        padding: 25px;
      }

      .blog-list__item:nth-child(odd) {
        float: left;
        margin-right: 40px;
        margin-left: 0;
        text-align: right;
      }

      .blog-list__item:nth-child(even) {
        float: right;
        margin-left: 40px;
        margin-right: 0;
        text-align: left;
      }

      .blog-list__item .blog-list__date-marker {
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        width: 90px;
        height: 45px;
        font-size: 13px;
        margin-top: -22.5px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
      }

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

      .blog-list__item:nth-child(odd) .blog-list__title,
      .blog-list__item:nth-child(odd) .blog-list__summary,
      .blog-list__item:nth-child(odd) .blog-list__read-more {
        text-align: right;
      }

      .blog-list__item:nth-child(even) .blog-list__title,
      .blog-list__item:nth-child(even) .blog-list__summary,
      .blog-list__item:nth-child(even) .blog-list__read-more {
        text-align: left;
      }
    }

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

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

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