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

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

    .blog-list__heading {
      font-size: 32px;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

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

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

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

    .blog-list__item {
      display: flex;
      margin-bottom: 40px;
      position: relative;
      flex-direction: column;
      align-items: center;
    }

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

    .blog-list__item-marker {
      width: 20px;
      height: 20px;
      background-color: #ffcc00;
      border-radius: 50%;
      position: absolute;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      z-index: 1;
      display: none;
    }

    .blog-list__item-date-wrapper {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    .blog-list__item-date-wrapper .blog-list__published-date {
        font-size: 13px;
        color: #999999;
        display: block;
    }

    .blog-list__item-content {
      background-color: #282828;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      padding: 20px;
      width: 100%;
      max-width: 600px;
      box-sizing: border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .blog-list__cover-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      display: block;
    }

    .blog-list__title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.3;
    }

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

    .blog-list__title-link:hover {
      color: #ffe066;
      text-decoration: underline;
    }

    .blog-list__summary {
      font-size: 15px;
      color: #aaaaaa;
      margin-bottom: 15px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      height: calc(1.6em * 3); 
    }

    .blog-list__read-more-link {
      display: inline-block;
      background-color: #ffcc00;
      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: 14px;
    }

    .blog-list__read-more-link:hover {
      background-color: #ffe066;
      color: #000000;
    }

    @media (min-width: 768px) {
      .blog-list__timeline::before,
      .blog-list__item-marker {
        display: block;
      }
      .blog-list__item {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        margin-bottom: 60px;
      }
      .blog-list__item:last-child {
        margin-bottom: 0;
      }

      .blog-list__item-content {
        width: calc(50% - 70px);
        max-width: none;
      }

      .blog-list__item-marker {
        left: 50%;
        transform: translateX(-50%);
        top: 0;
      }

      .blog-list__item-date-wrapper {
        position: absolute;
        width: 100px;
        top: 0;
        z-index: 2;
      }

      .blog-list__item:nth-child(even) .blog-list__item-date-wrapper {
        left: calc(50% - 140px);
        text-align: right;
      }
      .blog-list__item:nth-child(odd) .blog-list__item-date-wrapper {
        right: calc(50% - 140px);
        text-align: left;
      }
      .blog-list__item-date-wrapper .blog-list__published-date {
          font-weight: bold;
          margin-bottom: 5px;
          color: #ffcc00;
          font-size: 14px;
      }
      .blog-list__item:nth-child(even) .blog-list__item-content {
          margin-left: 70px;
          margin-right: 0;
      }
      .blog-list__item:nth-child(odd) .blog-list__item-content {
          margin-right: 70px;
          margin-left: 0;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__heading {
        font-size: 38px;
      }
      .blog-list__description {
        font-size: 18px;
      }
      .blog-list__item-content {
        width: calc(50% - 80px);
      }
      .blog-list__item:nth-child(even) .blog-list__item-date-wrapper {
        left: calc(50% - 160px);
      }
      .blog-list__item:nth-child(odd) .blog-list__item-date-wrapper {
        right: calc(50% - 160px);
      }
      .blog-list__item:nth-child(even) .blog-list__item-content {
          margin-left: 80px;
      }
      .blog-list__item:nth-child(odd) .blog-list__item-content {
          margin-right: 80px;
      }
    }