:root {
      --blog-list__primary-color: #007bff; 
      --blog-list__text-color: #333;
      --blog-list__light-text-color: #666;
      --blog-list__date-color: #555; 
      --blog-list__background-color: #f8f9fa; 
      --blog-list__card-background: #ffffff;
      --blog-list__border-color: #e0e0e0;
      --blog-list__shadow-light: rgba(0, 0, 0, 0.08);
      --blog-list__shadow-hover: rgba(0, 0, 0, 0.15);
    }

    .blog-list {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 60px;
      background-color: var(--blog-list__background-color);
      min-height: calc(100vh - var(--header-offset, 120px) - 200px); 
    }

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

    .blog-list__main-title {
      font-size: 32px;
      font-weight: 700;
      color: var(--blog-list__text-color);
      text-align: center;
      margin-bottom: 15px;
      padding-top: 30px;
    }

    .blog-list__description {
      font-size: 16px;
      color: var(--blog-list__light-text-color);
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px auto;
      line-height: 1.6;
    }

    .blog-list__grid {
      display: grid;
      gap: 30px; 
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
      padding: 30px 0;
    }

    @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__item {
      background-color: var(--blog-list__card-background);
      border-radius: 12px; 
      overflow: hidden;
      box-shadow: 0 4px 12px var(--blog-list__shadow-light); 
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--blog-list__border-color);
    }

    .blog-list__item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px var(--blog-list__shadow-hover); 
    }

    .blog-list__image-wrapper {
      width: 100%;
      padding-bottom: 56.25%; 
      position: relative;
      background-color: #eee; 
      border-bottom: 1px solid var(--blog-list__border-color);
    }

    .blog-list__cover-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 12px 12px 0 0; 
    }

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

    .blog-list__date {
      font-size: 13px; 
      color: var(--blog-list__date-color);
      margin-bottom: 10px;
      display: block;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .blog-list__title {
      font-size: 20px; 
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 10px;
      color: var(--blog-list__text-color);
      flex-grow: 0; 
    }

    .blog-list__title-link {
      text-decoration: none;
      color: inherit;
      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__light-text-color);
      line-height: 1.6;
      margin-bottom: 15px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 3; 
      -webkit-box-orient: vertical;
      flex-grow: 1; 
    }

    .blog-list__read-more {
      display: inline-block;
      margin-top: auto; 
      padding: 10px 15px;
      background-color: var(--blog-list__primary-color);
      color: #ffffff;
      text-decoration: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      transition: background-color 0.3s ease;
      text-align: center;
      align-self: flex-start; 
    }

    .blog-list__read-more:hover {
      background-color: #0056b3; 
    }