.blog-list {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; 
      background-color: #1a1a1a; 
      min-height: 100vh;
    }

    .blog-list__hero {
      padding-top: var(--header-offset, 120px); 
      padding-bottom: 40px;
      text-align: center;
      background-color: #2a2a2a; 
      color: #fff;
    }

    .blog-list__hero-content {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 20px;
    }

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

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

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

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

    
    @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__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;
      display: flex;
      flex-direction: column;
    }

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

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

    .blog-list__card-image-wrapper {
      width: 100%;
      padding-bottom: 56.25%; 
      position: relative;
      overflow: hidden;
      background-color: #3a3a3a; 
    }

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

    .blog-list__card-body {
      padding: 20px;
      flex-grow: 1; 
      display: flex;
      flex-direction: column;
    }

    .blog-list__card-title {
      font-size: 20px; 
      font-weight: bold;
      color: #ffd700; 
      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__card-summary {
      font-size: 15px; 
      color: #cccccc; 
      margin-bottom: 15px;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 3; 
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      flex-grow: 1; 
    }

    .blog-list__card-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto; 
      padding-top: 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .blog-list__read-more {
      font-size: 14px;
      color: #87ceeb; 
      font-weight: bold;
      text-decoration: none;
      transition: color 0.3s ease;
    }

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