.blog-list {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a1a;
      color: #e0e0e0;
      padding-top: var(--header-offset, 120px);
      padding-bottom: 40px;
      min-height: 80vh;
    }

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

    .blog-list__main-title {
      font-size: 2.5em;
      color: #FFD700;
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: bold;
    }

    .blog-list__hero-description {
      font-size: 1.1em;
      color: #cccccc;
      line-height: 1.6;
    }

    .blog-list__container {
      display: grid;
      gap: 24px;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

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

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

    .blog-list__item {
      background-color: #282828;
      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;
      height: 100%;
    }

    .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%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }

    .blog-list__thumbnail {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .blog-list__thumbnail--placeholder {
      background-color: #3a3a3a;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #999999;
      font-size: 1.2em;
      text-align: center;
    }

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

    .blog-list__post-title {
      font-size: 1.25em;
      font-weight: bold;
      color: #FFD700;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .blog-list__post-summary {
      font-size: 0.95em;
      color: #cccccc;
      line-height: 1.6;
      margin-bottom: 15px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
    }

    .blog-list__post-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
      padding-top: 10px;
      border-top: 1px solid #3a3a3a;
    }

    .blog-list__post-date {
      font-size: 0.85em;
      color: #999999;
    }

    .blog-list__read-more-button {
      font-size: 0.9em;
      color: #FFD700;
      font-weight: bold;
      text-decoration: none;
      padding: 5px 10px;
      border: 1px solid #FFD700;
      border-radius: 5px;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .blog-list__read-more-button:hover {
      background-color: #FFD700;
      color: #1a1a1a;
    }

    .blog-list__main-title {
        color: #FFD700;
    }
    .blog-list__hero-description, .blog-list__post-summary {
        color: #e0e0e0;
    }
    .blog-list__post-title {
        color: #FFD700;
    }
    .blog-list__post-date {
        color: #999999;
    }
    .blog-list__read-more-button {
        color: #FFD700;
    }
    .blog-list__read-more-button:hover {
        background-color: #FFD700;
        color: #1a1a1a;
    }