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

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

    .blog-list__hero-title {
      font-size: 2.5em;
      color: rgb(34, 34, 34);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .blog-list__hero-description {
      font-size: 1.1em;
      color: rgb(70, 70, 70); 
      margin-bottom: 30px;
    }

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

    .blog-list__timeline-line {
      position: absolute;
      width: 4px;
      background-color: rgb(255, 193, 7); 
      top: 0;
      bottom: 0;
      left: 20px;
    }

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

    .blog-list__item::before {
      content: '';
      position: absolute;
      width: 16px;
      height: 16px;
      background-color: rgb(255, 193, 7); 
      border-radius: 50%;
      border: 3px solid rgb(255, 255, 255); 
      left: 20px;
      top: 15px;
      transform: translateX(-50%);
      box-shadow: 0 0 0 2px rgb(255, 193, 7);
      z-index: 1;
    }

    .blog-list__item-content-wrapper {
      background-color: rgb(255, 255, 255); 
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .blog-list__item-link {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .blog-list__item-image-container {
      width: 100%;
      padding-top: 56.25%; 
      position: relative;
      overflow: hidden;
    }

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

    .blog-list__item-text-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .blog-list__item-date {
      font-size: 0.9em;
      color: rgb(70, 70, 70); 
      margin-bottom: 10px;
      display: block;
    }

    .blog-list__item-title {
      font-size: 1.25em;
      color: rgb(34, 34, 34);
      margin-top: 0;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .blog-list__item-summary {
      font-size: 1em;
      color: rgb(102, 102, 102); 
      margin-bottom: 15px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      flex-grow: 1;
    }

    @media (min-width: 768px) {
      .blog-list__hero {
        padding: 60px 20px;
      }

      .blog-list__hero-title {
        font-size: 3em;
      }

      .blog-list__timeline {
        padding: 20px 0;
      }

      .blog-list__timeline-line {
        left: 50%;
        margin-left: -2px;
      }

      .blog-list__item {
        width: 50%;
        padding: 0 20px;
        margin-bottom: 60px;
      }

      .blog-list__item:nth-child(odd) {
        float: left;
        clear: both;
        text-align: right;
      }

      .blog-list__item:nth-child(even) {
        float: right;
        clear: both;
        text-align: left;
      }

      .blog-list__item::before {
        left: 50%;
        transform: translateX(-50%);
        top: 25px;
      }

      .blog-list__item:nth-child(odd) .blog-list__item-content-wrapper {
        margin-right: 40px;
      }

      .blog-list__item:nth-child(even) .blog-list__item-content-wrapper {
        margin-left: 40px;
      }

      .blog-list__item:nth-child(odd) .blog-list__item-text-content {
        text-align: right;
      }

      .blog-list__item:nth-child(even) .blog-list__item-text-content {
        text-align: left;
      }

      .blog-list__item:nth-child(odd) .blog-list__item-date {
        text-align: right;
      }

      .blog-list__item:nth-child(even) .blog-list__item-date {
        text-align: left;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__hero {
        padding: 80px 20px;
      }

      .blog-list__hero-title {
        font-size: 3.5em;
      }
    }