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

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

    .blog-list__main-title {
      font-size: 32px;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.3;
    }

    .blog-list__description {
      font-size: 16px;
      color: #555;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    .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: #e0e0e0;
      transform: translateX(-50%);
      border-radius: 2px;
    }

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

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

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

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

    .blog-list__item-content: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 {
      margin-right: auto;
    }

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

    .blog-list__item-content::before {
      content: '';
      position: absolute;
      top: 15px;
      width: 0;
      height: 0;
      border-style: solid;
    }

    .blog-list__item:nth-child(odd) .blog-list__item-content::before {
      border-width: 15px 0 15px 15px;
      border-color: transparent transparent transparent #fff;
      right: -15px;
    }

    .blog-list__item:nth-child(even) .blog-list__item-content::before {
      border-width: 15px 15px 15px 0;
      border-color: transparent #fff transparent transparent;
      left: -15px;
    }

    .blog-list__item-image {
      width: 100%;
      aspect-ratio: 16/9;
      background-size: cover;
      background-position: center;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      display: block;
    }

    .blog-list__item-title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .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;
      margin-bottom: 15px;
      line-height: 1.6;
      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: 13px;
      color: #999;
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid #eee;
    }

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

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

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

    @media (max-width: 768px) {
      .blog-list__main-title {
        font-size: 28px;
      }

      .blog-list__description {
        font-size: 15px;
      }

      .blog-list__timeline::before {
        left: 20px;
        transform: translateX(0);
      }

      .blog-list__item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-bottom: 30px;
      }

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

      .blog-list__item-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      .blog-list__item-content::before {
        border-width: 10px 10px 10px 0;
        border-color: transparent #fff transparent transparent;
        left: -10px;
        top: 20px;
      }

      .blog-list__item:nth-child(odd) .blog-list__item-content::before,
      .blog-list__item:nth-child(even) .blog-list__item-content::before {
        left: -10px;
        right: auto;
        border-width: 10px 10px 10px 0;
        border-color: transparent #fff transparent transparent;
      }

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

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

    @media (max-width: 480px) {
      .blog-list__main-title {
        font-size: 24px;
      }

      .blog-list__description {
        font-size: 14px;
      }

      .blog-list__item-content {
        margin-left: 50px !important;
        width: calc(100% - 40px);
        padding: 15px;
      }
      .blog-list__timeline::before,
      .blog-list__item-marker {
        left: 15px;
      }
    }