.blog-list {
    padding-top: var(--header-offset, 120px);
    background-color: hsl(210, 10%, 98%);
    color: hsl(220, 15%, 20%);
    font-family: 'Arial', sans-serif;
  }

  .blog-list__hero {
    text-align: center;
    padding: 40px 20px;
    max-width: 960px;
    margin: 0 auto;
  }

  .blog-list__hero-title {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 15px;
    color: hsl(220, 15%, 20%);
    line-height: 1.3;
  }

  .blog-list__hero-description {
    font-size: 1.1em;
    color: hsl(210, 5%, 45%);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
  }

  .blog-list__articles-section {
    padding: 30px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
  }

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

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

  @media (min-width: 1024px) {
    .blog-list__container {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .blog-list__item {
    background-color: hsl(0, 0%, 100%);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
  }

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

  .blog-list__item-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%; 
    display: flex;
    flex-direction: column;
  }

  .blog-list__item-image-container {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
  }

  .blog-list__item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

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

  .blog-list__item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1; 
  }

  .blog-list__item-title {
    font-size: 1.25em;
    font-weight: bold;
    color: hsl(220, 15%, 20%);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .blog-list__item-summary {
    font-size: 0.95em;
    color: hsl(210, 5%, 45%);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .blog-list__item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; 
    padding-top: 15px;
    border-top: 1px solid hsl(210, 10%, 92%);
  }

  .blog-list__item-date {
    font-size: 0.8em;
    color: hsl(210, 5%, 65%);
    white-space: nowrap;
  }

  .blog-list__item-read-more {
    font-size: 0.9em;
    font-weight: bold;
    color: hsl(10, 80%, 50%);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .blog-list__item-read-more:hover {
    color: hsl(10, 90%, 60%);
    text-decoration: underline;
  }