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

    .blog-list__hero {
      text-align: center;
      padding: 40px 20px;
      background-color: #ffffff;
      margin-bottom: 30px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    }

    .blog-list__main-title {
      font-size: 2.5em;
      color: #DA291C;
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: 700;
    }

    .blog-list__description {
      font-size: 1.1em;
      color: #555555;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
    }

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

    .blog-list__grid-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 25px;
    }

    @media (min-width: 768px) {
      .blog-list__grid-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

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

    .blog-list__card {
      background-color: #ffffff;
      border-radius: 10px;
      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(-7px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

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

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

    .blog-list__image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .blog-list__card:hover .blog-list__image {
      transform: scale(1.08);
    }

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

    .blog-list__title {
      font-size: 1.3em;
      font-weight: 600;
      margin-bottom: 10px;
      color: #333333;
      line-height: 1.3;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

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

    .blog-list__title-link:hover {
      color: #DA291C;
    }

    .blog-list__summary {
      font-size: 0.95em;
      color: #666666;
      line-height: 1.5;
      margin-bottom: 15px;
      flex-grow: 1;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .blog-list__meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85em;
      color: #777777;
      padding-top: 15px;
      border-top: 1px solid #eeeeee;
      margin-top: auto;
    }

    .blog-list__date {
      display: flex;
      align-items: center;
    }

    .blog-list__icon-calendar {
      display: inline-block;
      width: 1em;
      height: 1em;
      background-color: #777777;
      mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11zM5 7V6h14v1H5z"/></svg>') no-repeat center / contain;
      -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11zM5 7V6h14v1H5z"/></svg>') no-repeat center / contain;
      margin-right: 6px;
    }

    .blog-list__read-more {
      display: flex;
      align-items: center;
      color: #DA291C;
      font-weight: 600;
      transition: color 0.2s ease;
    }

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

    .blog-list__icon-arrow {
      display: inline-block;
      width: 0.8em;
      height: 0.8em;
      background-color: #DA291C;
      mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/></svg>') no-repeat center / contain;
      -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/></svg>') no-repeat center / contain;
      margin-left: 5px;
    }