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

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

    .blog-list__heading {
      text-align: center;
      font-size: 2.5em;
      color: #1a1a1a;
      margin-bottom: 20px;
      font-weight: bold;
      line-height: 1.2;
    }
    
    .blog-list__description {
      text-align: center;
      font-size: 1.1em;
      color: #555;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

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

    .blog-list__timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 4px;
      background: #ddd;
      margin-left: -2px;
      display: none;
    }

    @media (min-width: 768px) {
      .blog-list__timeline::before {
        display: block;
      }
    }

    .blog-list__item {
      display: flex;
      flex-direction: column;
      margin-bottom: 30px;
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

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

    @media (min-width: 768px) {
      .blog-list__item {
        flex-direction: row;
        width: calc(50% - 20px);
        margin-left: 10px;
        margin-right: 10px;
      }
      .blog-list__item:nth-child(odd) {
        float: left;
        clear: left;
        transform: translateX(-20px);
      }
      .blog-list__item:nth-child(even) {
        float: right;
        clear: right;
        transform: translateX(20px);
      }
    }
    
    @media (min-width: 768px) and (max-width: 1023px) {
      .blog-list__item {
        width: calc(50% - 20px);
      }
    }

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

    .blog-list__date-marker {
      position: absolute;
      width: 16px;
      height: 16px;
      background-color: #007bff;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 10;
      box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.3);
      display: none;
    }

    @media (min-width: 768px) {
      .blog-list__date-marker {
        display: block;
      }
      .blog-list__item:nth-child(odd) .blog-list__date-marker {
        left: calc(100% + 18px);
      }
      .blog-list__item:nth-child(even) .blog-list__date-marker {
        left: -42px;
      }
    }

    .blog-list__image-wrapper {
      width: 100%;
      padding-top: 56.25%;
      position: relative;
      background-color: #eee;
    }

    @media (min-width: 768px) {
      .blog-list__item:nth-child(odd) .blog-list__image-wrapper {
        width: 40%;
        padding-top: 0;
        height: 200px;
      }
      .blog-list__item:nth-child(even) .blog-list__image-wrapper {
        width: 40%;
        padding-top: 0;
        height: 200px;
      }
    }

    .blog-list__image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px 12px 0 0;
    }

    @media (min-width: 768px) {
      .blog-list__item:nth-child(odd) .blog-list__image {
        border-radius: 12px 0 0 12px;
      }
      .blog-list__item:nth-child(even) .blog-list__image {
        border-radius: 0 12px 12px 0;
      }
    }

    .blog-list__content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    @media (min-width: 768px) {
      .blog-list__item:nth-child(odd) .blog-list__content {
        width: 60%;
      }
      .blog-list__item:nth-child(even) .blog-list__content {
        width: 60%;
      }
    }

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

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

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

    .blog-list__summary {
      font-size: 0.95em;
      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;
      flex-grow: 1;
    }

    .blog-list__meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 15px;
      font-size: 0.85em;
      color: #777;
    }

    .blog-list__date {
      white-space: nowrap;
    }

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

    .blog-list__read-more-link:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }