.blog-list {
    padding-top: var(--header-offset, 120px);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f8f8f8;
  }

  .blog-list__hero {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .blog-list__hero-title {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: bold;
  }

  .blog-list__hero-description {
    font-size: 16px;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
  }

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

  .blog-list__grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-list__card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

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

  .blog-list__card-image {
    width: 100%;
    padding-bottom: 56.25%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid #eee;
  }

  .blog-list__card-content {
    padding: 20px;
  }

  .blog-list__card-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .blog-list__card-summary {
    font-size: 15px;
    color: #666666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .blog-list__card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }

  .blog-list__card-date {
    color: #555555;
    font-size: 13px;
  }

  .blog-list__card-read-more {
    color: #B8860B;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .blog-list__card-read-more:hover {
    color: #DAA520;
  }

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

  @media (min-width: 1024px) {
    .blog-list__grid-container {
      grid-template-columns: repeat(3, 1fr);
    }
    .blog-list__hero-title {
      font-size: 36px;
    }
  }