:root {
      --blog-list__primary-color: #FFD700; 
      --blog-list__secondary-color: #F0F0F0; 
      --blog-list__dark-bg-color: #1A1A1A; 
      --blog-list__card-bg-color: #222222; 
      --blog-list__text-muted-color: #AAAAAA; 
      --blog-list__border-color: #333333;
      --blog-list__border-radius: 10px;
      --blog-list__box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      --blog-list__box-shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

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

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

    .blog-list__heading {
      text-align: center;
      color: var(--blog-list__primary-color);
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: bold;
      line-height: 1.2;
    }

    .blog-list__description {
      text-align: center;
      color: var(--blog-list__text-muted-color);
      margin-bottom: 50px;
      font-size: 1.1em;
      line-height: 1.6;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    @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(--blog-list__card-bg-color);
      border-radius: var(--blog-list__border-radius);
      overflow: hidden;
      box-shadow: var(--blog-list__box-shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .blog-list__card:hover {
      transform: translateY(-5px);
      box-shadow: var(--blog-list__box-shadow-hover);
    }

    .blog-list__image-wrapper {
      position: relative;
      width: 100%;
      padding-top: 56.25%; 
      overflow: hidden;
    }

    .blog-list__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__image {
      transform: scale(1.05);
    }

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

    .blog-list__title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .blog-list__title-link {
      color: var(--blog-list__secondary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-list__title-link:hover {
      color: var(--blog-list__primary-color);
    }

    .blog-list__summary {
      font-size: 15px;
      color: var(--blog-list__text-muted-color);
      margin-bottom: 15px;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      flex-grow: 1;
    }

    .blog-list__date-wrapper {
      display: flex;
      align-items: center;
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid var(--blog-list__border-color);
    }

    .blog-list__date-icon {
      width: 18px;
      height: 18px;
      background-color: var(--blog-list__primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      flex-shrink: 0;
    }

    .blog-list__date-icon::before {
      content: '';
      display: block;
      width: 8px;
      height: 8px;
      background-color: var(--blog-list__card-bg-color);
      border-radius: 50%;
    }

    .blog-list__date {
      font-size: 13px;
      color: var(--blog-list__text-muted-color);
      white-space: nowrap;
      flex-grow: 1;
    }

    .blog-list__read-more {
      display: inline-block;
      margin-top: 15px;
      padding: 10px 20px;
      background-color: var(--blog-list__primary-color);
      color: var(--blog-list__dark-bg-color);
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      align-self: flex-start;
    }

    .blog-list__read-more:hover {
      background-color: #E6C200;
      transform: translateY(-2px);
    }