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

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

    .blog-list__title {
      text-align: center;
      font-size: 2.5em;
      color: #1a1a1a;
      margin-bottom: 60px;
      font-weight: bold;
      line-height: 1.2;
    }

    .blog-list__timeline {
      position: relative;
      padding: 20px 0;
    }

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

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

    .blog-list__item-wrapper {
      width: 50%;
      padding: 0 30px;
      box-sizing: border-box;
      position: relative;
      margin-bottom: 40px;
    }

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

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

    .blog-list__item {
      display: flex;
      align-items: flex-start;
      border-radius: 12px;
      overflow: hidden;
      background-color: #fff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      min-height: 180px;
      height: 100%;
    }

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

    .blog-list__item-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .blog-list__item-image {
      width: 35%;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
    }

    .blog-list__item-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .blog-list__item:hover .blog-list__item-image img {
      transform: scale(1.05);
    }

    .blog-list__item-title {
      font-size: 1.4em;
      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: 1em;
      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__item-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85em;
      color: #888;
      margin-top: auto;
    }

    .blog-list__item-date {
      white-space: nowrap;
    }

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

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

    .blog-list__item-point {
      position: absolute;
      top: 30px;
      left: 50%;
      width: 20px;
      height: 20px;
      background-color: #007bff;
      border: 4px solid #fff;
      border-radius: 50%;
      transform: translateX(-50%);
      z-index: 1;
      box-shadow: 0 0 0 2px #007bff;
    }

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

    @media (min-width: 768px) {
      .blog-list__item-image {
        height: 200px;
      }
    }

    @media (max-width: 1024px) {
      .blog-list__item-title {
        font-size: 1.3em;
      }
      .blog-list__item-summary {
        -webkit-line-clamp: 2;
      }
    }

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

      .blog-list__item:nth-child(odd) .blog-list__item-wrapper,
      .blog-list__item:nth-child(even) .blog-list__item-wrapper {
        margin: 0 0 30px 0;
        padding-left: 60px;
        padding-right: 20px;
      }

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

      .blog-list__item {
        flex-direction: column;
      }

      .blog-list__item-image {
        width: 100%;
        height: 180px;
        border-radius: 12px 12px 0 0;
      }

      .blog-list__item-content {
        padding: 20px;
        border-radius: 0 0 12px 12px;
      }

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

      .blog-list__item-title {
        font-size: 1.2em;
      }
      .blog-list__item-summary {
        -webkit-line-clamp: 3;
      }
    }