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

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

    .blog-list__title {
      font-size: 2.5em;
      color: #ffd700;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .blog-list__description {
      font-size: 1.1em;
      color: #bbbbbb;
      max-width: 700px;
      margin: 0 auto;
    }

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

    @media (min-width: 768px) {
      .blog-list__timeline::before {
        content: '';
        position: absolute;
        width: 4px;
        background-color: #3a3f52;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
      }
    }

    .blog-list__item {
      background-color: #282c34;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      margin-bottom: 30px;
      padding: 25px;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      z-index: 1;
    }

    .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::before {
        content: '';
        position: absolute;
        width: 18px;
        height: 18px;
        background-color: #ffd700;
        border-radius: 50%;
        border: 3px solid #1a1a2e;
        z-index: 2;
        top: 35px;
        left: 50%;
        transform: translateX(-50%);
      }

      .blog-list__item:nth-child(odd) {
        margin-right: calc(50% + 30px);
        text-align: right;
      }

      .blog-list__item:nth-child(even) {
        margin-left: calc(50% + 30px);
        text-align: left;
      }
    }

    .blog-list__date-wrapper {
      margin-bottom: 15px;
      text-align: center;
      position: relative;
    }

    @media (min-width: 768px) {
      .blog-list__date-wrapper {
        position: absolute;
        top: 30px;
        width: calc(50% - 60px);
        text-align: right;
        font-size: 0.9em;
        color: #999999;
        font-weight: bold;
      }
      .blog-list__item:nth-child(odd) .blog-list__date-wrapper {
        left: 0;
        right: auto;
        padding-right: 20px;
      }
      .blog-list__item:nth-child(even) .blog-list__date-wrapper {
        right: 0;
        left: auto;
        padding-left: 20px;
        text-align: left;
      }
    }

    .blog-list__date {
      font-size: 0.9em;
      color: #999999;
      display: block;
      margin-bottom: 10px;
    }

    @media (min-width: 768px) {
      .blog-list__date {
        font-size: 1em;
        margin-bottom: 0;
      }
    }

    .blog-list__content-wrapper {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    @media (min-width: 768px) {
      .blog-list__item:nth-child(odd) .blog-list__content-wrapper {
        flex-direction: row-reverse;
      }
      .blog-list__item:nth-child(even) .blog-list__content-wrapper {
        flex-direction: row;
      }
    }

    .blog-list__image-link {
      display: block;
      flex-shrink: 0;
    }

    .blog-list__image {
      width: 100%;
      height: auto;
      max-height: 200px;
      object-fit: cover;
      border-radius: 8px;
      display: block;
      transition: transform 0.3s ease;
    }

    .blog-list__image-link:hover .blog-list__image {
      transform: scale(1.02);
    }

    @media (min-width: 768px) {
      .blog-list__image {
        width: 250px;
        height: 140.625px;
      }
    }

    .blog-list__text-content {
      flex-grow: 1;
    }

    .blog-list__post-title {
      font-size: 1.4em;
      margin-top: 0;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .blog-list__post-link {
      color: #87CEEB;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-list__post-link:hover {
      color: #ffd700;
    }

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

    .blog-list__read-more {
      display: inline-block;
      background-color: #ffd700;
      color: #1a1a2e;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.95em;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .blog-list__read-more:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    @media (max-width: 767px) {
      .blog-list__title {
        font-size: 2em;
      }
      .blog-list__description {
        font-size: 1em;
      }
      .blog-list__item {
        padding: 20px;
        margin-bottom: 20px;
      }
      .blog-list__post-title {
        font-size: 1.2em;
      }
      .blog-list__summary {
        font-size: 0.9em;
        -webkit-line-clamp: 4;
      }
      .blog-list__read-more {
        padding: 8px 15px;
        font-size: 0.9em;
      }
      .blog-list__image {
        max-height: 180px;
      }
      .blog-list__date-wrapper {
        text-align: left;
      }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      .blog-list__timeline {
        padding: 0 10px;
      }
      .blog-list__item:nth-child(odd) {
        margin-right: calc(50% + 20px);
      }
      .blog-list__item:nth-child(even) {
        margin-left: calc(50% + 20px);
      }
      .blog-list__item::before {
        top: 25px;
      }
      .blog-list__date-wrapper {
        top: 20px;
        width: calc(50% - 50px);
      }
      .blog-list__image {
        width: 200px;
        height: 112.5px;
      }
      .blog-list__post-title {
        font-size: 1.3em;
      }
      .blog-list__summary {
        font-size: 0.95em;
      }
    }