:root {
    --primary-bg: #1a1a1a;
    --secondary-bg: #282828;
    --text-color: #f0f0f0;
    --accent-color: #ffd700;
    --secondary-text-color: #b0b0b0;
    --border-color: #3a3a3a;
    --shadow-color: rgba(0, 0, 0, 0.4);
    --header-offset: 120px;
  }

  .blog-list__hero {
    padding-top: var(--header-offset);
    background-color: var(--primary-bg);
    color: var(--text-color);
    text-align: center;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
  }

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

  .blog-list__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-weight: bold;
    line-height: 1.2;
  }
  @media (max-width: 767px) {
    .blog-list__hero-title {
      font-size: 2em;
    }
  }

  .blog-list__hero-description {
    font-size: 1.1em;
    color: var(--secondary-text-color);
    line-height: 1.6;
    margin-bottom: 0;
  }

  .blog-list__content-section {
    background-color: var(--primary-bg);
    padding: 40px 0 60px 0;
  }

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

  .blog-list__section-heading {
    font-size: 2.2em;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
  }
  .blog-list__section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
  }
  @media (max-width: 767px) {
    .blog-list__section-heading {
      font-size: 1.8em;
      margin-bottom: 30px;
    }
  }

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

  @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: var(--secondary-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

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

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

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

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

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

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

  .blog-list__card-title {
    font-size: 1.25em;
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .blog-list__card-summary {
    font-size: 0.95em;
    color: var(--secondary-text-color);
    margin-bottom: 15px;
    line-height: 1.6;
    flex-grow: 1;
    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;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
  }

  .blog-list__card-date {
    font-size: 0.85em;
    color: var(--secondary-text-color);
  }

  .blog-list__card-read-more {
    font-size: 0.9em;
    color: var(--accent-color);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .blog-list__card-read-more:hover {
    color: var(--text-color);
  }