:root {
      --primary-color: #e44d26; 
      --secondary-color: #333;
      --text-color: #333;
      --light-text-color: #666;
      --border-color: #eee;
      --background-color: #f9f9f9;
      --card-bg-color: #fff;
      --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
      --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.15);
      --header-offset: 120px; 
    }

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

    .blog-list__hero {
      text-align: center;
      padding: 40px 20px;
      max-width: 960px;
      margin: 0 auto;
    }

    .blog-list__main-title {
      font-size: 2.5em;
      color: var(--secondary-color);
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
    }

    .blog-list__description {
      font-size: 1.1em;
      color: var(--light-text-color);
      max-width: 700px;
      margin: 0 auto;
    }

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

    .blog-list__grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 24px;
    }

    .blog-list__item {
      background-color: var(--card-bg-color);
      border-radius: 10px;
      box-shadow: var(--shadow-light);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

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

    .blog-list__link-wrapper {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .blog-list__image-container {
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-bottom: 1px solid var(--border-color);
    }

    .blog-list__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .blog-list__item:hover .blog-list__image {
      transform: scale(1.05);
    }

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

    .blog-list__date {
      font-size: 13px;
      color: #999;
      margin-bottom: 10px;
      display: block;
    }

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

    .blog-list__summary {
      font-size: 15px;
      color: var(--light-text-color);
      margin-bottom: 15px;
      flex-grow: 1;
      display: -webkit-box;
      -webkit-line-clamp: 3; 
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

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

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

    @media (min-width: 768px) {
      .blog-list__grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .blog-list__main-title {
        font-size: 3em;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .blog-list__main-title {
        font-size: 3.5em;
      }
    }

    @media (max-width: 767px) {
      .blog-list__hero {
        padding: 30px 15px;
      }
      .blog-list__main-title {
        font-size: 2em;
      }
      .blog-list__description {
        font-size: 1em;
      }
      .blog-list__section {
        padding: 0 15px;
        margin: 30px auto;
      }
      .blog-list__content {
        padding: 15px;
      }
      .blog-list__title {
        font-size: 17px;
      }
      .blog-list__summary {
        font-size: 14px;
      }
    }