.blog-list {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #1A1A1A;
    padding-bottom: 60px;
  }

  .blog-list__hero {
    padding: var(--header-offset, 120px) 20px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }

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

  .blog-list__hero-description {
    font-size: 1.1em;
    color: #A0A0A0;
    line-height: 1.6;
    margin-bottom: 0;
  }

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

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

  .blog-list__item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
    justify-content: center;
  }

  .blog-list__date-wrapper {
    position: absolute;
    width: 150px;
    text-align: right;
    left: calc(50% - 170px);
    top: 10px;
    display: none;
  }

  .blog-list__date {
    font-size: 0.9em;
    color: #A0A0A0;
    font-weight: bold;
    display: block;
    padding-top: 5px;
  }

  .blog-list__date-wrapper::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 15px;
    width: 12px;
    height: 12px;
    background-color: #FFD700;
    border-radius: 50%;
    border: 2px solid #1A1A1A;
    z-index: 1;
  }

  .blog-list__card {
    background-color: #2A2A2A;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    width: 100%;
  }

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

  .blog-list__image {
    width: 100%;
    height: 225px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #3A3A3A;
  }

  .blog-list__content {
    padding: 20px;
  }

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

  .blog-list__link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .blog-list__link:hover {
    color: #FFE54C;
    text-decoration: underline;
  }

  .blog-list__summary {
    font-size: 0.95em;
    color: #A0A0A0;
    line-height: 1.6;
    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: #1A1A1A;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

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

  @media (max-width: 767px) {
    .blog-list__hero-title {
      font-size: 2em;
    }

    .blog-list__hero-description {
      font-size: 1em;
    }

    .blog-list__item {
      margin-bottom: 40px;
      padding: 0 10px;
    }

    .blog-list__date-wrapper {
      position: static;
      text-align: left;
      width: auto;
      margin-bottom: 10px;
      display: block;
    }

    .blog-list__date-wrapper::after {
      display: none;
    }

    .blog-list__date {
      font-size: 0.85em;
      color: #FFD700;
    }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .blog-list__container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .blog-list__item {
      margin-bottom: 0;
      flex-direction: column;
      align-items: center;
    }

    .blog-list__card {
      width: 100%;
    }

    .blog-list__container::before,
    .blog-list__date-wrapper,
    .blog-list__date-wrapper::after {
      display: none;
    }
  }

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

    .blog-list__item {
      margin-bottom: 80px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      max-width: 100%;
      width: 100%;
    }

    .blog-list__date-wrapper {
      display: block;
    }

    .blog-list__card {
      width: calc(50% - 100px);
      max-width: 500px;
    }

    .blog-list__item:nth-child(even) .blog-list__card {
      order: 1;
    }

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

    .blog-list__item:nth-child(even) .blog-list__date-wrapper::after {
      left: -25px;
      right: auto;
    }
  }