.blog-list {
      font-family: 'Arial', sans-serif;
      background-color: rgb(26, 30, 34); 
      color: rgb(240, 240, 240); 
      padding: 20px;
      padding-top: var(--header-offset, 120px); 
      min-height: 100vh;
      box-sizing: border-box;
      max-width: 1200px;
      margin: 0 auto;
    }

    .blog-list__header {
      text-align: center;
      margin-bottom: 40px;
      padding: 20px 0;
    }

    .blog-list__title {
      font-size: 2.5em;
      color: rgb(255, 193, 7); 
      margin-bottom: 10px;
      font-weight: bold;
    }

    .blog-list__description {
      font-size: 1.1em;
      color: rgb(180, 180, 180);
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
    }

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

    @media (min-width: 768px) {
      .blog-list__timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%; 
        width: 4px;
        background: rgb(255, 193, 7); 
        height: 100%;
        transform: translateX(-50%);
        z-index: 0;
      }
    }

    .blog-list__item {
      background-color: rgb(34, 39, 43); 
      border-radius: 12px;
      margin-bottom: 30px;
      padding: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 1; 
      width: 100%; 
      max-width: 550px; 
    }

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

    @media (min-width: 768px) {
      .blog-list__item {
        margin-bottom: 50px; 
      }
      .blog-list__item:nth-child(odd) {
        margin-right: calc(50% + 25px); 
        text-align: right;
      }
      .blog-list__item:nth-child(even) {
        margin-left: calc(50% + 25px); 
        text-align: left;
      }
      .blog-list__item-content {
        padding-left: 0;
        padding-right: 0;
      }
    }

    .blog-list__item-date {
      font-size: 0.9em;
      color: rgb(150, 150, 150); 
      margin-bottom: 15px;
      display: block;
      font-weight: normal;
    }

    @media (min-width: 768px) {
      .blog-list__item-date {
        position: absolute;
        width: 150px; 
        top: 20px;
        font-size: 1em;
        font-weight: bold;
        color: rgb(255, 193, 7); 
      }
      .blog-list__item:nth-child(odd) .blog-list__item-date {
        right: calc(50% + 150px); 
        text-align: right;
      }
      .blog-list__item:nth-child(even) .blog-list__item-date {
        left: calc(50% + 150px); 
        text-align: left;
      }
    }

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

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

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

    .blog-list__item-title-link {
      color: rgb(240, 240, 240); 
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-list__item-title-link:hover {
      color: rgb(255, 193, 7); 
    }

    .blog-list__item-summary {
      font-size: 1em;
      color: rgb(180, 180, 180); 
      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__item-read-more-link {
      display: inline-block;
      background-color: rgb(255, 193, 7); 
      color: rgb(34, 39, 43); 
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
      margin-top: 10px;
    }

    .blog-list__item-read-more-link:hover {
      background-color: rgb(255, 210, 80); 
      color: rgb(26, 30, 34); 
    }

    @media (max-width: 767px) {
      .blog-list {
        padding: 15px;
        padding-top: var(--header-offset, 120px);
      }
      .blog-list__title {
        font-size: 2em;
      }
      .blog-list__description {
        font-size: 1em;
      }
      .blog-list__item {
        margin-left: auto;
        margin-right: auto;
        max-width: 95%;
      }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      .blog-list__timeline {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        justify-items: center;
      }
      .blog-list__timeline::before {
        display: none;
      }
      .blog-list__item {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: none;
        margin-bottom: 0;
        text-align: left;
      }
      .blog-list__item-date {
        position: static;
        width: auto;
        text-align: left;
        color: rgb(150, 150, 150);
        margin-bottom: 15px;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__timeline {
        max-width: 1000px;
      }
      .blog-list__item {
        max-width: 45%;
      }
    }