:root {
      --primary-color: #e44d26;
      --secondary-color: #333;
      --text-color: #333;
      --light-text-color: #555;
      --background-color: #f0f2f5;
      --card-background: #ffffff;
      --border-color: #eee;
      --header-offset: 120px;
    }

    .blog-list {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 60px;
      background-color: var(--background-color);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--text-color);
      line-height: 1.6;
    }

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

    .blog-list__section-title {
      font-size: 32px;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
      padding-top: 30px;
    }

    .blog-list__description {
      font-size: 16px;
      color: var(--light-text-color);
      text-align: center;
      margin-bottom: 40px;
      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(--card-background);
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

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

    .blog-list__image-link {
      display: block;
      width: 100%;
      position: relative;
      padding-bottom: 56.25%;
      overflow: hidden;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }

    .blog-list__image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: transform 0.3s ease;
    }

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

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

    .blog-list__title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      color: var(--text-color);
      line-height: 1.3;
      flex-grow: 1;
    }

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

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

    .blog-list__summary {
      font-size: 15px;
      color: var(--light-text-color);
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      min-height: 72px;
    }

    .blog-list__read-more {
      display: inline-block;
      background-color: var(--primary-color);
      color: #fff;
      padding: 10px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 14px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      align-self: flex-start;
    }

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

    @media (max-width: 767px) {
      .blog-list {
        padding-bottom: 40px;
      }
      .blog-list__container {
        padding: 0 15px;
      }
      .blog-list__section-title {
        font-size: 28px;
        margin-bottom: 15px;
        padding-top: 20px;
      }
      .blog-list__description {
        font-size: 14px;
        margin-bottom: 30px;
      }
      .blog-list__grid {
        gap: 20px;
      }
      .blog-list__content {
        padding: 15px;
      }
      .blog-list__date {
        font-size: 13px;
        margin-bottom: 8px;
      }
      .blog-list__title {
        font-size: 18px;
        margin-bottom: 8px;
      }
      .blog-list__summary {
        font-size: 14px;
        margin-bottom: 15px;
        min-height: 67px;
      }
      .blog-list__read-more {
        padding: 8px 15px;
        font-size: 13px;
      }
    }