.blog-list {
      padding-top: var(--header-offset, 120px);
      background-color: rgb(24, 24, 27);
      color: rgb(240, 240, 240);
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      min-height: 80vh;
    }

    .blog-list__header {
      text-align: center;
      margin-bottom: 40px;
    }

    .blog-list__title {
      font-size: 2.5em;
      color: rgb(255, 193, 7);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .blog-list__description {
      font-size: 1.1em;
      color: rgb(180, 180, 180);
      line-height: 1.6;
      max-width: 800px;
      margin: 0 auto;
    }

    .blog-list__grid {
      display: grid;
      gap: 30px;
      grid-template-columns: 1fr;
    }

    .blog-list__card {
      background-color: rgb(39, 39, 42);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .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: block;
      height: 100%;
    }

    .blog-list__image-wrapper {
      width: 100%;
      padding-top: 56.25%;
      position: relative;
      overflow: hidden;
      background-color: rgb(50, 50, 50);
    }

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

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

    .blog-list__date {
      font-size: 0.875em;
      color: rgb(180, 180, 180);
      margin-bottom: 10px;
      display: block;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      position: relative;
      padding-left: 20px;
    }

    .blog-list__date::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 8px;
      height: 8px;
      background-color: rgb(255, 193, 7);
      border-radius: 50%;
      border: 2px solid rgb(39, 39, 42);
      box-shadow: 0 0 0 2px rgb(24, 24, 27);
    }

    .blog-list__card-title {
      font-size: 1.25em;
      font-weight: bold;
      color: rgb(240, 240, 240);
      margin-bottom: 10px;
      line-height: 1.3;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      min-height: 2.6em;
    }

    .blog-list__summary {
      font-size: 0.9375em;
      color: rgb(180, 180, 180);
      line-height: 1.5;
      margin-bottom: 15px;
      flex-grow: 1;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      min-height: 4.5em;
    }

    .blog-list__read-more {
      display: inline-block;
      background-color: rgb(255, 193, 7);
      color: rgb(24, 24, 27);
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      align-self: flex-start;
    }

    .blog-list__read-more:hover {
      background-color: rgb(255, 214, 0);
    }

    @media (min-width: 768px) {
      .blog-list__grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .blog-list__title {
        font-size: 2.8em;
      }
      .blog-list__card-title {
        font-size: 1.35em;
      }
      .blog-list__summary {
        font-size: 1em;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .blog-list__title {
        font-size: 3.2em;
      }
      .blog-list__card-title {
        font-size: 1.45em;
      }
      .blog-list__summary {
        font-size: 1.05em;
      }
    }

    @media (min-width: 1200px) {
      .blog-list {
        padding-left: 0;
        padding-right: 0;
      }
    }