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

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

    .blog-list__hero-title {
      font-size: 2.5em;
      color: #ffffff;
      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__timeline {
      display: grid;
      gap: 30px;
      padding: 0 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

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

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

    .blog-list__item {
      background-color: #2a2a2a;
      border-radius: 12px;
      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__item: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: #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__item:hover .blog-list__card-image {
      transform: scale(1.05);
    }

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

    .blog-list__card-title {
      font-size: 1.25em;
      color: #ffffff;
      margin-top: 0;
      margin-bottom: 10px;
      line-height: 1.4;
      font-weight: bold;
    }

    .blog-list__card-summary {
      font-size: 0.95em;
      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;
    }

    .blog-list__card-footer {
      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__item-date {
      font-size: 0.85em;
      color: #999999;
      display: block;
    }

    .blog-list__card-read-more {
      font-size: 0.9em;
      color: #ffd700;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .blog-list__card-read-more:hover {
      color: #32CD32;
    }