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

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

    .blog-list__main-title {
      font-size: 2.5em;
      color: #ffd700;
      text-align: center;
      margin-bottom: 15px;
      padding-top: 20px;
      font-weight: bold;
    }

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

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

    .blog-list__timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 4px;
      background-color: #ffd700;
      transform: translateX(-50%);
      z-index: 0;
      display: none;
    }

    .blog-list__item {
      position: relative;
      margin-bottom: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 1;
      background-color: #2a2a2a;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
      max-width: 90%;
      margin-left: auto;
      margin-right: auto;
    }

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

    .blog-list__item-date-wrapper {
      background-color: #ffd700;
      color: #1a1a1a;
      padding: 10px 15px;
      border-radius: 8px 8px 0 0;
      font-weight: bold;
      font-size: 0.9em;
      text-align: center;
      width: 100%;
      box-sizing: border-box;
    }

    .blog-list__item-date {
      display: block;
    }

    .blog-list__item-content {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .blog-list__item-link {
      display: block;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background-color: #3a3a3a;
    }

    .blog-list__item-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .blog-list__item:hover .blog-list__item-image {
      transform: scale(1.05);
    }

    .blog-list__item-text-wrapper {
      padding: 20px;
      text-align: left;
      flex-grow: 1;
    }

    .blog-list__item-title {
      font-size: 1.4em;
      margin-top: 0;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .blog-list__item-title-link {
      color: #ffffff;
      text-decoration: none;
      transition: color 0.3s ease;
    }

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

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

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

    .blog-list__item-read-more:hover {
      background-color: #e6c200;
      color: #000000;
    }

    @media (min-width: 768px) {
      .blog-list__timeline::before {
        display: block;
      }

      .blog-list__item {
        max-width: 45%;
        margin-left: 0;
        margin-right: 0;
      }

      .blog-list__item-date-wrapper {
        position: absolute;
        top: 20px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        z-index: 2;
        box-shadow: 0 0 0 5px #1a1a1a, 0 0 0 7px #ffd700;
        border: none;
        background-color: #ffd700;
        color: #1a1a1a;
        font-size: 1em;
        line-height: 1.2;
        flex-direction: column;
      }

      .blog-list__item-date-wrapper .blog-list__item-date {
        font-size: 1.1em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 5px;
      }

      .blog-list__item:nth-child(odd) {
        left: 0;
        transform: translateX(calc(50% - 2px - 22.5%));
        margin-right: auto;
      }

      .blog-list__item:nth-child(even) {
        left: 50%;
        transform: translateX(calc(-50% + 2px + 22.5%));
        margin-left: auto;
      }

      .blog-list__item:nth-child(odd) .blog-list__item-date-wrapper {
        right: -100px;
        left: auto;
      }

      .blog-list__item:nth-child(even) .blog-list__item-date-wrapper {
        left: -100px;
        right: auto;
      }

      .blog-list__item-content {
        flex-direction: row;
      }

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

      .blog-list__item-link {
        width: 40%;
        aspect-ratio: auto;
      }

      .blog-list__item-text-wrapper {
        width: 60%;
      }
    }

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

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

      .blog-list__item {
        max-width: 40%;
      }

      .blog-list__item-date-wrapper {
        width: 140px;
        height: 140px;
      }

      .blog-list__item-date-wrapper .blog-list__item-date {
        font-size: 1.2em;
      }

      .blog-list__item:nth-child(odd) {
        transform: translateX(calc(50% - 2px - 25%));
      }

      .blog-list__item:nth-child(even) {
        transform: translateX(calc(-50% + 2px + 25%));
      }
    }