.blog-list {
      padding-top: var(--header-offset, 120px);
      background-color: hsl(0, 0%, 98%);
      color: hsl(0, 0%, 20%);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      padding-bottom: 60px;
    }

    .blog-list__hero {
      text-align: center;
      padding: 40px 20px;
      max-width: 800px;
      margin: 0 auto;
    }

    .blog-list__hero-title {
      font-size: 2.2em;
      color: hsl(0, 0%, 15%);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .blog-list__hero-description {
      font-size: 1.1em;
      color: hsl(0, 0%, 30%);
    }

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

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

    .blog-list__timeline::before {
      content: '';
      position: absolute;
      top: 0;
      left: 19px;
      width: 2px;
      background-color: hsl(0, 0%, 85%);
      height: 100%;
      z-index: 0;
    }

    .blog-list__item {
      position: relative;
      margin-bottom: 40px;
    }

    .blog-list__item-dot {
      position: absolute;
      left: 10px;
      top: 15px;
      width: 20px;
      height: 20px;
      background-color: hsl(30, 80%, 45%);
      border: 3px solid hsl(0, 0%, 98%);
      border-radius: 50%;
      z-index: 1;
    }

    .blog-list__item-content-card {
      background-color: hsl(0, 0%, 100%);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      margin-left: 30px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .blog-list__item-date {
      display: block;
      font-size: 0.9em;
      color: hsl(0, 0%, 40%);
      margin-bottom: 15px;
      font-weight: 600;
    }

    .blog-list__item-image-link {
      display: block;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
    }

    .blog-list__item-image {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

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

    .blog-list__item-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .blog-list__item-title-link {
      color: hsl(0, 0%, 15%);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .blog-list__item-title-link:hover {
      color: hsl(30, 80%, 40%);
    }

    .blog-list__item-summary {
      font-size: 1em;
      color: hsl(0, 0%, 30%);
      margin-bottom: 20px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
    }

    .blog-list__item-read-more {
      display: inline-block;
      background-color: hsl(30, 80%, 45%);
      color: hsl(0, 0%, 100%);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 0.95em;
      margin-top: auto; 
    }

    .blog-list__item-read-more:hover {
      background-color: hsl(30, 80%, 35%);
    }

    @media (min-width: 768px) {
      .blog-list__timeline {
        padding-left: 0;
        max-width: 1000px;
        margin: 0 auto;
      }

      .blog-list__timeline::before {
        left: 50%;
        transform: translateX(-1px);
      }

      .blog-list__item {
        display: flex;
        position: relative;
        margin-bottom: 50px;
        width: 100%;
      }

      .blog-list__item-dot {
        left: 50%;
        transform: translateX(-50%);
      }

      .blog-list__item-content-card {
        width: calc(50% - 40px);
        margin-left: 0;
        margin-right: 0;
      }

      .blog-list__item:nth-child(odd) {
        justify-content: flex-start;
      }
      .blog-list__item:nth-child(odd) .blog-list__item-content-card {
        margin-right: 40px;
      }
      .blog-list__item:nth-child(odd) .blog-list__item-date {
        text-align: right;
      }

      .blog-list__item:nth-child(even) {
        justify-content: flex-end;
      }
      .blog-list__item:nth-child(even) .blog-list__item-content-card {
        margin-left: 40px;
      }
      .blog-list__item:nth-child(even) .blog-list__item-date {
        text-align: left;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__hero-title {
        font-size: 2.8em;
      }

      .blog-list__hero-description {
        font-size: 1.2em;
      }

      .blog-list__item-title {
        font-size: 1.5em;
      }
    }