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

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

  .blog-list__heading {
    text-align: center;
    color: #ffd700;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
  }

  .blog-list__description {
    text-align: center;
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  .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: #ffd700;
    transform: translateX(-50%);
  }

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

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

  .blog-list__item:last-child {
    margin-bottom: 0;
  }

  .blog-list__date-wrapper {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: #ffd700;
    color: #1a1a1a;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9em;
    font-weight: bold;
    white-space: nowrap;
    z-index: 1;
  }

  .blog-list__item:nth-child(even) .blog-list__date-wrapper {
    left: 50%;
  }

  .blog-list__content-wrapper {
    flex: 1;
    background-color: #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin: 0 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .blog-list__item:nth-child(odd) .blog-list__content-wrapper {
    margin-right: calc(50% + 20px);
  }

  .blog-list__item:nth-child(even) .blog-list__content-wrapper {
    margin-left: calc(50% + 20px);
  }

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

  .blog-list__link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .blog-list__image-container {
    width: 100%;
    padding-bottom: 56.25%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
  }

  .blog-list__image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
  }

  .blog-list__title {
    font-size: 1.5em;
    color: #ffd700;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.3;
  }

  .blog-list__title:hover {
    text-decoration: underline;
  }

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

  .blog-list__read-more {
    display: inline-block;
    color: #ffd700;
    font-weight: bold;
    font-size: 0.95em;
    transition: color 0.3s ease;
  }

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

  @media (max-width: 768px) {
    .blog-list__heading {
      font-size: 2em;
    }

    .blog-list__description {
      font-size: 1em;
      margin-bottom: 30px;
    }

    .blog-list__timeline::before {
      left: 20px;
      transform: none;
    }

    .blog-list__item,
    .blog-list__item:nth-child(even) {
      flex-direction: column;
      margin-bottom: 30px;
    }

    .blog-list__date-wrapper {
      position: relative;
      left: auto;
      top: auto;
      transform: none;
      margin-left: 20px;
      margin-bottom: 15px;
      display: inline-block;
      background-color: #ffd700;
      color: #1a1a1a;
      padding: 6px 12px;
      border-radius: 50px;
    }

    .blog-list__content-wrapper,
    .blog-list__item:nth-child(odd) .blog-list__content-wrapper,
    .blog-list__item:nth-child(even) .blog-list__content-wrapper {
      margin: 0 20px 0 40px;
      padding: 15px;
    }

    .blog-list__title {
      font-size: 1.3em;
    }

    .blog-list__summary {
      font-size: 0.95em;
      -webkit-line-clamp: 4;
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .blog-list__timeline::before {
      left: 50%;
      transform: translateX(-50%);
    }

    .blog-list__item:nth-child(odd) .blog-list__content-wrapper {
      margin-right: calc(50% + 20px);
    }

    .blog-list__item:nth-child(even) .blog-list__content-wrapper {
      margin-left: calc(50% + 20px);
    }

    .blog-list__date-wrapper {
      left: 50%;
      transform: translateX(-50%);
    }
  }