.blog-list {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 60px;
      background-color: hsl(220, 15%, 15%); 
      color: hsl(0, 0%, 90%); 
      font-family: 'Arial', sans-serif;
    }

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

    .blog-list__main-title {
      font-size: 2.5em;
      font-weight: bold;
      text-align: center;
      margin-bottom: 20px;
      color: hsl(38, 92%, 50%); 
    }

    .blog-list__main-description {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
      color: hsl(0, 0%, 75%);
    }

    .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: hsl(220, 10%, 25%);
      transform: translateX(-50%);
      z-index: 1;
    }

    .blog-list__item {
      display: flex;
      position: relative;
      margin-bottom: 50px;
      z-index: 2;
      align-items: center;
    }

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

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

    .blog-list__date-wrapper {
      flex: 0 0 50%;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .blog-list__item:nth-child(even) .blog-list__date-wrapper {
      justify-content: flex-start;
    }

    .blog-list__date {
      background-color: hsl(38, 92%, 50%);
      color: hsl(220, 15%, 15%);
      padding: 8px 15px;
      border-radius: 5px;
      font-size: 0.9em;
      font-weight: bold;
      white-space: nowrap;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .blog-list__card {
      flex: 0 0 50%;
      background-color: hsl(220, 10%, 20%);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      margin: 0 20px;
    }

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

    .blog-list__card-link {
      display: block;
      text-decoration: none;
    }

    .blog-list__card-image {
      width: 100%;
      height: 225px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid hsl(220, 10%, 25%);
    }

    .blog-list__card-content {
      padding: 20px;
    }

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

    .blog-list__card-title-link {
      color: hsl(0, 0%, 90%);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-list__card-title-link:hover {
      color: hsl(38, 92%, 50%);
    }

    .blog-list__card-summary {
      font-size: 1em;
      color: hsl(0, 0%, 70%);
      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__card-read-more {
      display: inline-block;
      background-color: hsl(38, 92%, 50%);
      color: hsl(220, 15%, 15%);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .blog-list__card-read-more:hover {
      background-color: hsl(38, 100%, 60%);
      transform: translateY(-2px);
    }

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

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

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

      .blog-list__date-wrapper {
        flex: none;
        padding: 0 0 10px 0;
        justify-content: flex-start;
        position: relative;
        left: 20px;
        margin-bottom: 10px;
      }

      .blog-list__date {
        margin-left: 15px;
      }

      .blog-list__card {
        flex: none;
        width: calc(100% - 60px);
        margin-left: 40px;
        margin-right: 20px;
      }

      .blog-list__main-title {
        font-size: 2em;
      }

      .blog-list__main-description {
        font-size: 1em;
      }

      .blog-list__card-image {
        height: 180px;
      }

      .blog-list__card-title {
        font-size: 1.2em;
      }

      .blog-list__card-summary {
        font-size: 0.9em;
      }
    }

    
    @media (min-width: 768px) and (max-width: 1023px) {
      .blog-list__timeline::before {
        left: 50%;
      }

      .blog-list__item {
        margin-bottom: 60px;
      }

      .blog-list__date-wrapper {
        flex: 0 0 45%;
      }

      .blog-list__card {
        flex: 0 0 45%;
        margin: 0 20px;
      }

      .blog-list__card-image {
        height: 200px;
      }
    }

    
    @media (min-width: 1024px) {
      .blog-list__item {
        margin-bottom: 80px;
      }

      .blog-list__date-wrapper {
        flex: 0 0 40%;
      }

      .blog-list__card {
        flex: 0 0 40%;
        margin: 0 20px;
      }

      .blog-list__card-image {
        height: 250px;
      }
    }