.blog-list {
    background-color: #1a1a1a;
    color: #f0f0f0;
    font-family: Arial, sans-serif;
    padding-bottom: 40px;
    overflow-x: hidden;
  }

  .blog-list__hero {
    padding-top: var(--header-offset, 120px);
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
    text-align: center;
    background-color: #222;
  }

  .blog-list__hero-title {
    font-size: 28px;
    color: #ffcc00;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .blog-list__hero-description {
    font-size: 16px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  .blog-list__container {
    display: grid;
    gap: 25px;
    padding: 25px 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
  }

  .blog-list__item {
    background-color: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }

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

  .blog-list__item-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .blog-list__thumbnail-wrapper {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
    background-color: #333;
  }

  .blog-list__thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .blog-list__content {
    padding: 20px;
  }

  .blog-list__title {
    font-size: 19px;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

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

  .blog-list__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999;
  }

  .blog-list__read-more {
    color: #ffcc00;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
  }

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

  @media (min-width: 768px) {
    .blog-list__container {
      grid-template-columns: repeat(2, 1fr);
    }
    .blog-list__hero-title {
      font-size: 32px;
    }
    .blog-list__hero-description {
      font-size: 17px;
    }
    .blog-list__title {
      font-size: 20px;
    }
  }

  @media (min-width: 1024px) {
    .blog-list__container {
      grid-template-columns: repeat(3, 1fr);
    }
    .blog-list__hero-title {
      font-size: 38px;
    }
    .blog-list__hero-description {
      font-size: 18px;
    }
    .blog-list__title {
      font-size: 20px;
    }
  }