.blog-list__section {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 40px;
      background-color: #f8f8f8;
    }

    .blog-list__page-title {
      font-size: 2.2em;
      color: #333333;
      text-align: center;
      margin-bottom: 15px;
      padding: 0 15px;
      line-height: 1.3;
    }

    .blog-list__description {
      font-size: 1em;
      color: #666666;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px auto;
      padding: 0 15px;
      line-height: 1.6;
    }

    .blog-list__grid-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    @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__item {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      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: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

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

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

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

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

    .blog-list__item-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .blog-list__item-title {
      font-size: 1.25em; 
      font-weight: bold;
      color: #333333;
      margin-top: 0;
      margin-bottom: 10px;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .blog-list__item-summary {
      font-size: 0.9em; 
      color: #666666;
      margin-bottom: 15px;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

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

    .blog-list__item-date {
      font-size: 0.8em; 
      color: #555555; 
    }

    .blog-list__item-read-more {
      font-size: 0.9em;
      color: #0056b3;
      font-weight: bold;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-list__item-read-more:hover {
      color: #007bff;
      text-decoration: underline;
    }

    @media (max-width: 480px) {
      .blog-list__page-title {
        font-size: 1.8em;
      }
      .blog-list__item-title {
        font-size: 1.1em;
      }
      .blog-list__item-summary {
        font-size: 0.85em;
      }
      .blog-list__item-date, .blog-list__item-read-more {
        font-size: 0.75em;
      }
    }