:root {
      --primary-color: #da291c;
      --secondary-color: #222;
      --text-color: #333;
      --light-text-color: #555;
      --lighter-text-color: #777;
      --background-color: #f0f2f5;
      --card-background: #fff;
      --border-radius: 10px;
      --shadow-light: rgba(0, 0, 0, 0.08) 0px 4px 12px;
      --shadow-hover: rgba(0, 0, 0, 0.15) 0px 8px 24px;
      --header-offset: 120px;
    }

    .blog-list {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-color);
      min-height: 100vh;
    }

    .blog-list__hero {
      padding-top: var(--header-offset);
      background-color: #1a1a1a;
      color: #fff;
      text-align: center;
      padding-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .blog-list__hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
      z-index: 1;
    }

    .blog-list__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
    }

    .blog-list__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #fff;
      font-weight: bold;
    }

    .blog-list__hero-description {
      font-size: 1.1em;
      opacity: 0.9;
      line-height: 1.8;
      color: #ddd;
    }

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

    .blog-list__container {
      position: relative;
    }

    .blog-list__container::before {
      content: '';
      position: absolute;
      left: 20px;
      top: 0;
      bottom: 0;
      width: 2px;
      background-color: rgba(0, 0, 0, 0.05);
      z-index: 0;
    }

    @media (min-width: 768px) {
      .blog-list__container::before {
        left: 50%;
        transform: translateX(-50%);
      }
    }

    .blog-list__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      position: relative;
      z-index: 1;
    }

    @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(--card-background);
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow-light);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

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

    .blog-list__link {
      display: block;
      text-decoration: none;
      color: inherit;
    }

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

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

    .blog-list__content {
      padding: 20px;
    }

    .blog-list__title {
      font-size: 1.25em;
      font-weight: bold;
      margin-top: 0;
      margin-bottom: 10px;
      color: var(--secondary-color);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      min-height: 2.4em;
    }

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

    .blog-list__meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85em;
      color: var(--lighter-text-color);
      padding-top: 10px;
      border-top: 1px solid #eee;
    }

    .blog-list__date {
      color: var(--lighter-text-color);
    }

    .blog-list__read-more {
      display: inline-block;
      color: var(--primary-color);
      font-weight: bold;
      text-decoration: none;
      transition: color 0.3s ease;
    }

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

    .blog-list__link:focus {
      outline: 2px solid var(--primary-color);
      outline-offset: 2px;
    }