:root {
      --primary-color: #e44d26;
      --secondary-color: #ff9800;
      --text-color-dark: #333333;
      --text-color-light: #ffffff;
      --text-color-gray: #666666;
      --background-color-light: #f5f5f5;
      --background-color-dark: #222222;
      --card-background: #ffffff;
      --border-radius-base: 10px;
      --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
      --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .blog-list {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 40px;
      background-color: var(--background-color-light);
      font-family: Arial, sans-serif;
      color: var(--text-color-dark);
    }

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

    .blog-list__grid {
      display: grid;
      grid-template-columns: repeat(1, 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: var(--border-radius-base);
      box-shadow: var(--shadow-light);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: var(--text-color-dark);
    }

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

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

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

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

    .blog-list__title {
      font-size: 20px;
      font-weight: bold;
      margin-top: 0;
      margin-bottom: 10px;
      line-height: 1.4;
      color: var(--text-color-dark);
    }
    
    .blog-list__title-link {
      text-decoration: none;
      color: var(--text-color-dark);
      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);
      margin-bottom: 15px;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      flex-grow: 1;
    }

    .blog-list__meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
      padding-top: 15px;
      border-top: 1px solid #eee;
    }

    .blog-list__date {
      font-size: 14px;
      color: #999999;
    }

    .blog-list__read-more {
      display: inline-block;
      padding: 8px 15px;
      background-color: var(--primary-color);
      color: var(--text-color-light);
      text-decoration: none;
      border-radius: 5px;
      font-size: 14px;
      transition: background-color 0.3s ease;
      white-space: nowrap;
    }

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

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

    .blog-list__section-title {
      font-size: 32px;
      color: var(--text-color-dark);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .blog-list__section-description {
      font-size: 18px;
      color: var(--text-color-gray);
      max-width: 800px;
      margin: 0 auto 20px auto;
      line-height: 1.6;
    }

    .blog-list__view-all-button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--secondary-color);
      color: var(--text-color-light);
      text-decoration: none;
      border-radius: 8px;
      font-size: 18px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .blog-list__view-all-button:hover {
      background-color: #e68900;
    }