.blog-list {
      font-family: Arial, sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      padding-top: var(--header-offset, 120px);
      padding-bottom: 40px;
    }

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

    .blog-list__main-title {
      font-size: 2.5em;
      color: #FFD700;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .blog-list__description {
      font-size: 1.1em;
      color: #b0b0b0;
      line-height: 1.6;
    }

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

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

    .blog-list__item {
      display: flex;
      margin-bottom: 40px;
      position: relative;
      padding-left: 60px; 
      z-index: 2;
    }

    .blog-list__item::before {
      content: '';
      position: absolute;
      top: 5px; 
      left: 12px; 
      width: 16px;
      height: 16px;
      background-color: #FFD700;
      border-radius: 50%;
      border: 3px solid #1a1a1a;
      z-index: 3;
    }

    .blog-list__date-wrapper {
      position: absolute;
      left: 0;
      top: 0;
      width: 60px; 
      text-align: right;
      padding-right: 20px;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      height: 26px; 
    }

    .blog-list__content-wrapper {
      background-color: #282828;
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
    }

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

    .blog-list__image-link {
      display: block;
      width: 100%;
      padding-bottom: 56.25%; 
      position: relative;
      overflow: hidden;
    }

    .blog-list__cover-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .blog-list__content-wrapper:hover .blog-list__cover-image {
      transform: scale(1.05);
    }

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

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

    .blog-list__title-link {
      color: #f0f0f0;
      text-decoration: none;
      transition: color 0.3s ease;
    }

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

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

    .blog-list__date {
      font-size: 0.8em; 
      color: #999;
      white-space: nowrap;
    }

    .blog-list__read-more {
      display: inline-block;
      margin-top: auto; 
      padding: 10px 15px;
      background-color: #FFD700;
      color: #1a1a1a;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      align-self: flex-start; 
      font-size: 0.9em;
    }

    .blog-list__read-more:hover {
      background-color: #FFA500;
    }

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

      .blog-list__item {
        width: 50%;
        padding-left: 0; 
        margin-left: auto;
        margin-right: auto;
        justify-content: flex-end; 
      }

      .blog-list__item:nth-child(odd) {
        margin-right: 50%; 
        padding-right: 40px; 
        justify-content: flex-end;
      }

      .blog-list__item:nth-child(even) {
        margin-left: 50%; 
        padding-left: 40px; 
        justify-content: flex-start;
      }

      .blog-list__item::before {
        top: 20px; 
      }

      .blog-list__item:nth-child(odd)::before {
        left: auto;
        right: -9px; 
      }

      .blog-list__item:nth-child(even)::before {
        left: -9px; 
        right: auto;
      }

      .blog-list__date-wrapper {
        position: absolute; 
        top: 20px; 
        width: auto;
        display: block;
        height: auto;
        padding-right: 0;
        padding-left: 0;
      }

      .blog-list__item:nth-child(odd) .blog-list__date-wrapper {
        right: calc(100% + 15px); 
        left: auto;
        text-align: right;
      }

      .blog-list__item:nth-child(even) .blog-list__date-wrapper {
        left: calc(100% + 15px); 
        right: auto;
        text-align: left;
      }

      .blog-list__content-wrapper {
        flex-direction: row; 
      }

      .blog-list__image-link {
        width: 40%;
        min-width: 150px;
        padding-bottom: 0;
        height: auto;
        aspect-ratio: 16 / 9; 
      }

      .blog-list__text-content {
        width: 60%;
        padding: 20px;
      }

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

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

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

      .blog-list__item:nth-child(odd) .blog-list__read-more {
        align-self: flex-end; 
      }

      .blog-list__item:nth-child(even) .blog-list__read-more {
        align-self: flex-start; 
      }
    }

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

      .blog-list__description {
        font-size: 1.2em;
      }

      .blog-list__timeline-section {
        padding: 0 40px;
      }

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

      .blog-list__item:nth-child(odd) {
        padding-right: 60px; 
      }

      .blog-list__item:nth-child(even) {
        padding-left: 60px; 
      }

      .blog-list__item:nth-child(odd) .blog-list__date-wrapper {
        right: calc(100% + 30px); 
      }

      .blog-list__item:nth-child(even) .blog-list__date-wrapper {
        left: calc(100% + 30px); 
      }
    }