﻿.blog-list-header-scope .site-page-header.site-page-header--with-breadcrumb {
  padding: 26px 0 28px;
  background: #fff;
  border-bottom: none;
}
.site-page-header--with-breadcrumb {
    margin-bottom: 20px;
}

.blog-list-header-scope .site-page-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a2e;
}

.blog-list-header-scope .site-page-subtitle {
  font-size: 18px;
  color: #4a4a68;
  margin-top: 8px;
}

.blog-list-page {
  padding: 0 0 56px;
  background: #fff;
}

.bl-featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}

.bl-featured-image {
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: block;
}

.bl-featured-content {
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.bl-badge {
  display: inline-block;
  width: fit-content;
  background: rgba(214, 64, 69, 0.12);
  color: #d64045;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.bl-featured-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
}

.bl-featured-title a {
  color: #1a1a2e;
  text-decoration: none;
}

.bl-featured-title a:hover {
  color: #d64045;
}

.bl-featured-excerpt {
  font-size: 16px;
  line-height: 1.65;
  color: #4a4a68;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bl-featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: #8b8b9f;
  font-size: 14px;
  margin-bottom: 14px;
}

.bl-author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bl-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.bl-author-name {
  font-weight: 600;
  color: #1a1a2e;
  font-size: 14px;
}

.bl-meta-item i {
  margin-right: 5px;
}

.bl-read-more {
  color: #d64045;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
}

.bl-read-more:hover {
  color: #bf2f3a;
}

.bl-read-more i {
  margin-left: 6px;
  font-size: 12px;
}

.bl-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.bl-chip {
  padding: 10px 20px;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 14px;
  color: #4a4a68;
  cursor: pointer;
  transition: 0.2s;
}

.bl-chip:hover,
.bl-chip.active {
  background: #d64045;
  color: #fff;
  border-color: #d64045;
}

.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.bl-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: 0.2s;
}

.bl-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.bl-card-image {
  display: block;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.bl-card-image .bl-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  margin-bottom: 0;
}

.bl-card-body {
  padding: 20px;
}

.bl-card-title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.bl-card-title a {
  color: #1a1a2e;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bl-card-title a:hover {
  color: #d64045;
}

.bl-card-excerpt {
  color: #4a4a68;
  font-size: 14px;
  margin: 0 0 16px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bl-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: #8b8b9f;
  font-size: 13px;
}

.bl-card-meta-author {
  color: #8b8b9f;
  font-weight: 500;
}

.bl-empty-state {
  border: 1px dashed #e5e7eb;
  border-radius: 12px;
  padding: 22px;
  color: #4a4a68;
  background: #f9fafb;
}

.bl-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 42px;
  margin-bottom: 8px;
}

.bl-pagination a,
.bl-pagination span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 15px;
  text-decoration: none;
}

.bl-pagination a {
  border: 1px solid #e5e7eb;
  color: #4a4a68;
}

.bl-pagination a:hover {
  background: #d64045;
  color: #fff;
  border-color: #d64045;
}

.bl-pagination span.active {
  background: #d64045;
  color: #fff;
}

.bl-pagination a.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.bl-pagination .ellipsis {
  border: none;
  color: #8b8b9f;
  width: auto;
  min-width: 24px;
  pointer-events: none;
}

.bl-newsletter {
  background: #f8f9fa;
  padding: 56px 0;
  margin-top: 12px;
  text-align: center;
}

.bl-newsletter-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #1a1a2e;
}

.bl-newsletter-text {
  color: #4a4a68;
  margin: 0 0 22px;
}

.bl-newsletter-form {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
}

.bl-newsletter-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.bl-newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 15px;
}

.bl-newsletter-form button {
  border: none;
  background: #d64045;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 14px 24px;
  cursor: pointer;
}

.bl-newsletter-form button:hover {
  background: #bf2f3a;
}

@media (max-width: 1100px) {
  .bl-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .bl-featured-post {
    grid-template-columns: 1fr;
  }

  .bl-featured-image {
    min-height: 260px;
  }

  .bl-featured-content {
    padding: 24px;
  }

}

@media (max-width: 680px) {
  .bl-grid {
    grid-template-columns: 1fr;
  }

  .bl-newsletter-form {
    flex-direction: column;
  }

  .bl-newsletter-form button {
    width: 100%;
  }
}
