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

    
    .blog-list__hero {
      padding: var(--header-offset, 120px) 20px 40px; 
      text-align: center;
      background-color: #1a1a1a;
      border-bottom: 1px solid #333;
    }

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

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

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

    
    .blog-list__grid {
      display: grid;
      gap: 30px; 
      grid-template-columns: repeat(1, 1fr); 
    }

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

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

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

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

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

    
    .blog-list__image-wrapper {
      width: 100%;
      padding-bottom: 56.25%; 
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }

    
    .blog-list__content {
      padding: 20px;
      flex-grow: 1; 
      display: flex;
      flex-direction: column;
      justify-content: space-between; 
    }

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

    .blog-list__summary {
      font-size: 0.95em; 
      color: #cccccc; 
      margin-bottom: 15px;
      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;
      margin-top: auto; 
      padding-top: 10px;
      border-top: 1px solid #333;
    }

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

    .blog-list__read-more {
      font-size: 0.9em; 
      color: #ffcc00; 
      font-weight: bold;
      transition: color 0.2s ease;
    }

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