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

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

    .blog-list__heading {
      text-align: center;
      margin-bottom: 40px;
      color: #1a1a1a;
      font-size: 2.2em;
      font-weight: bold;
      padding-top: 20px;
    }

    .blog-list__description {
      text-align: center;
      margin-bottom: 50px;
      font-size: 1.1em;
      color: #555;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .blog-list__timeline {
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .blog-list__timeline::before {
      content: '';
      position: absolute;
      top: 0;
      left: 20px;
      width: 4px;
      height: 100%;
      background-color: #e0e0e0;
      z-index: 0;
    }

    .blog-list__item {
      display: flex;
      margin-bottom: 40px;
      position: relative;
      align-items: flex-start;
    }

    .blog-list__date-wrapper {
      position: relative;
      width: 80px;
      flex-shrink: 0;
      text-align: center;
      padding-top: 10px;
    }

    .blog-list__date-marker {
      width: 20px;
      height: 20px;
      background-color: #007bff;
      border-radius: 50%;
      position: absolute;
      left: 10px;
      top: 15px;
      z-index: 1;
      border: 3px solid #f9f9f9;
      box-sizing: border-box;
    }

    .blog-list__date {
      font-size: 0.9em;
      color: #777;
      margin-top: 30px;
      display: block;
      white-space: nowrap;
      text-align: left;
      margin-left: 45px;
    }

    .blog-list__content-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      padding: 20px;
      flex-grow: 1;
      margin-left: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      width: calc(100% - 100px);
    }

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

    .blog-list__image-wrapper {
      width: 100%;
      padding-bottom: 56.25%;
      position: relative;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
    }

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

    .blog-list__title {
      margin-top: 0;
      margin-bottom: 10px;
    }

    .blog-list__title-link {
      color: #007bff;
      text-decoration: none;
      font-size: 1.3em;
      font-weight: bold;
      line-height: 1.4;
      transition: color 0.3s ease;
      display: block;
    }

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

    .blog-list__summary {
      color: #666;
      font-size: 1em;
      margin-bottom: 15px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      min-height: 3em;
    }

    .blog-list__read-more {
      display: inline-block;
      margin-top: auto;
      color: #007bff;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.95em;
      transition: color 0.3s ease;
    }

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

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

      .blog-list__item {
        flex-direction: row;
        width: 50%;
        margin-bottom: 60px;
      }

      .blog-list__item:nth-child(odd) {
        align-self: flex-start;
        padding-right: 40px;
      }

      .blog-list__item:nth-child(even) {
        align-self: flex-end;
        padding-left: 40px;
        flex-direction: row-reverse;
      }

      .blog-list__date-wrapper {
        width: auto;
        padding-top: 0;
      }

      .blog-list__date-marker {
        left: auto;
        right: -10px;
        top: 15px;
      }

      .blog-list__item:nth-child(even) .blog-list__date-marker {
        left: -10px;
        right: auto;
      }

      .blog-list__date {
        margin-top: 0;
        text-align: right;
        margin-right: 30px;
        margin-left: 0;
        padding-top: 15px;
        width: 100px;
      }

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

      .blog-list__content-card {
        margin-left: 0;
        width: auto;
        margin-right: 20px;
      }

      .blog-list__item:nth-child(even) .blog-list__content-card {
        margin-left: 20px;
        margin-right: 0;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__timeline {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        position: relative;
        padding-top: 20px;
      }

      .blog-list__timeline::before {
        content: none;
      }

      .blog-list__item {
        flex-direction: column;
        width: auto;
        margin-bottom: 0;
        padding: 0;
        align-items: stretch;
      }

      .blog-list__date-wrapper {
        position: absolute;
        width: 100%;
        text-align: center;
        top: -15px;
        left: 0;
        z-index: 2;
      }

      .blog-list__date-marker {
        position: static;
        display: inline-block;
        vertical-align: middle;
        transform: none;
        margin: 0 5px;
        background-color: #007bff;
        border-color: #f9f9f9;
      }

      .blog-list__date {
        display: inline-block;
        vertical-align: middle;
        margin: 0;
        text-align: center;
        color: #777;
        font-size: 0.85em;
      }

      .blog-list__content-card {
        margin: 0;
        height: 100%;
      }
    }

    .blog-list__heading,
    .blog-list__description,
    .blog-list__date,
    .blog-list__title-link,
    .blog-list__summary,
    .blog-list__read-more {
      color: #333;
    }

    .blog-list__heading { color: #1a1a1a; }
    .blog-list__description { color: #555; }
    .blog-list__date { color: #777; }
    .blog-list__title-link { color: #007bff; }
    .blog-list__summary { color: #666; }
    .blog-list__read-more { color: #007bff; }
    .blog-list__title-link:hover { color: #0056b3; }
    .blog-list__read-more:hover { color: #0056b3; }
    .blog-list__date-marker { background-color: #007bff; }