.blog-list {
      background-color: #1a1a1a;
      color: #f0f0f0;
      min-height: 100vh;
      padding-bottom: 40px;
    }

    .blog-list__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: var(--header-offset, 120px) 20px 0;
    }

    .blog-list__heading {
      font-size: 2.5em;
      color: #ffd700;
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
      padding-top: 20px;
    }

    .blog-list__grid {
      display: grid;
      gap: 30px;
      grid-template-columns: 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__card {
      background-color: #222;
      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__image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      aspect-ratio: 16 / 9;
    }

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

    .blog-list__date-wrapper {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      color: #aaaaaa;
      font-size: 0.85em;
      font-weight: 500;
    }

    .blog-list__date-wrapper::before {
      content: '';
      display: block;
      width: 8px;
      height: 8px;
      background-color: #ffd700;
      border-radius: 50%;
      margin-right: 8px;
      flex-shrink: 0;
    }

    .blog-list__title-link {
      font-size: 1.25em;
      font-weight: bold;
      color: #ffd700;
      text-decoration: none;
      margin-bottom: 10px;
      line-height: 1.4;
      display: block;
      transition: color 0.2s ease;
    }

    .blog-list__title-link:hover {
      color: #ffe066;
    }

    .blog-list__summary {
      font-size: 1em;
      color: #cccccc;
      line-height: 1.6;
      margin-bottom: 15px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      flex-grow: 1;
    }

    .blog-list__read-more {
      display: inline-block;
      background-color: #ffd700;
      color: #1a1a1a;
      padding: 10px 18px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.2s ease, color 0.2s ease;
      align-self: flex-start;
    }

    .blog-list__read-more:hover {
      background-color: #ffe066;
      color: #000;
    }