:root {
      --primary-color: #FFD700; 
      --secondary-color: #007BFF; 
      --background-dark: #1a1a1a;
      --text-light: #f0f0f0;
      --text-muted: #cccccc;
      --card-background: #282828;
      --border-color: #3a3a3a;
      --shadow-color: rgba(0, 0, 0, 0.4);
      --header-offset: 120px; 
    }

    .blog-list__container {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 40px;
      background-color: var(--background-dark);
      color: var(--text-light);
      min-height: 100vh;
    }

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

    .blog-list__heading {
      font-size: 36px;
      color: var(--primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px var(--shadow-color);
    }

    .blog-list__description {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.7;
      padding: 0 15px;
    }

    .blog-list__wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      display: grid;
      gap: 30px; 
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    }

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

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

    .blog-list__card {
      background-color: var(--card-background);
      border-radius: 10px; 
      overflow: hidden;
      box-shadow: 0 4px 15px var(--shadow-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border-color);
    }

    .blog-list__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px var(--shadow-color);
    }

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

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

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

    .blog-list__date {
      font-size: 13px; 
      color: var(--text-muted);
      margin-bottom: 10px;
      text-align: right;
    }

    .blog-list__title {
      margin: 0 0 10px 0;
    }

    .blog-list__title-link {
      font-size: 19px; 
      font-weight: bold;
      color: var(--primary-color);
      text-decoration: none;
      line-height: 1.4;
      display: block;
      transition: color 0.3s ease;
    }

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

    .blog-list__summary {
      font-size: 15px; 
      color: var(--text-light);
      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;
      margin-top: auto; 
      padding: 10px 15px;
      background-color: var(--primary-color);
      color: var(--background-dark);
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
      align-self: flex-start; 
    }

    .blog-list__read-more:hover {
      background-color: var(--secondary-color);
      color: var(--text-light);
    }

    @media (max-width: 767px) {
      .blog-list__heading {
        font-size: 28px;
      }
      .blog-list__description {
        font-size: 16px;
      }
      .blog-list__wrapper {
        padding: 20px 10px;
      }
      .blog-list__card {
        margin: 0;
      }
    }