:root {
      --primary-color: #e44d26;
      --secondary-color: #333;
      --text-color-dark: #333;
      --text-color-light: #fff;
      --text-color-gray: #666;
      --text-color-light-gray: #999;
      --background-color-light: #f5f5f5;
      --card-background: #fff;
      --border-radius-medium: 10px;
      --spacing-medium: 20px;
      --spacing-large: 30px;
      --shadow-light: rgba(0, 0, 0, 0.1) 0px 4px 12px;
      --shadow-hover: rgba(0, 0, 0, 0.2) 0px 8px 24px;
    }

    .blog-list {
      padding-top: var(--header-offset, 120px);
      background-color: var(--background-color-light);
      padding-bottom: var(--spacing-large);
      min-height: 100vh;
    }

    .blog-list__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: var(--spacing-medium);
      display: grid;
      gap: var(--spacing-large);
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

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

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

    @media (max-width: 767px) {
      .blog-list__container {
        grid-template-columns: 1fr;
        padding: var(--spacing-medium) 15px;
      }
    }

    .blog-list__card {
      background-color: var(--card-background);
      border-radius: var(--border-radius-medium);
      overflow: hidden;
      box-shadow: var(--shadow-light);
      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(--shadow-hover);
    }

    .blog-list__image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      aspect-ratio: 16/9;
      display: block;
    }

    .blog-list__content {
      padding: var(--spacing-medium);
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .blog-list__date {
      font-size: 14px;
      color: var(--text-color-light-gray);
      margin-bottom: 10px;
      display: block;
    }

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

    .blog-list__title-link {
      text-decoration: none;
      color: inherit;
      transition: color 0.3s ease;
    }

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

    .blog-list__summary {
      font-size: 16px;
      color: var(--text-color-gray);
      line-height: 1.6;
      margin-bottom: var(--spacing-medium);
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
    }

    .blog-list__read-more {
      display: inline-block;
      margin-top: auto;
      padding: 8px 15px;
      background-color: var(--primary-color);
      color: var(--text-color-light);
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      align-self: flex-start;
    }

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