.blog-page {
  background: var(--panel-paper);
}

.blog-hero {
  position: relative;
  padding: 0 0 72px;
  background:
    radial-gradient(circle at 10% 18%, rgba(185, 216, 107, .34), transparent 28%),
    linear-gradient(135deg, #f7f2e8 0%, #edf5ee 58%, #fffdf8 100%);
}

.blog-hero-content h1 {
  margin: 0 0 20px;
  color: var(--panel-green-dark);
  font-size: clamp(32px, 5vw, 36px);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 800;
}

.blog-hero-content p {
  width: min(100%, 760px);
  margin: 0;
  color: var(--panel-muted);
  font-size: 20px;
  line-height: 1.7;
}

.blog-search {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(15, 77, 54, .14);
  box-shadow: 0 18px 48px rgba(20, 62, 45, .08);
}

.blog-search label {
  display: block;
  margin-bottom: 10px;
  color: var(--panel-green-dark);
  font-size: 14px;
  font-weight: 800;
}

.blog-search-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.blog-search-box input {
  min-height: 52px;
  border: 1px solid rgba(15, 77, 54, .16);
  border-radius: 14px;
  padding: 0 16px;
  background: #fff;
  color: var(--panel-text);
  font-weight: 600;
  outline: 0;
}

.blog-search-box input:focus {
  border-color: var(--panel-green);
  box-shadow: 0 0 0 .25rem rgba(15, 77, 54, .11);
}

.blog-search-box button {
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  padding: 0 18px;
  background: var(--panel-green);
  color: #fff;
  font-weight: 800;
}

.blog-list-section {
  background: #fff;
}

.blog-category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.blog-category-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--panel-green-dark);
  background: var(--panel-green-soft);
  border: 1px solid rgba(15, 77, 54, .12);
  font-size: 15px;
  font-weight: 800;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.blog-category-bar a span {
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 77, 54, .1);
  color: var(--panel-green);
  font-size: 12px;
}

.blog-category-bar a:hover,
.blog-category-bar a.active {
  color: #fff;
  background: var(--panel-green);
  border-color: var(--panel-green);
  transform: translateY(-2px);
}

.blog-category-bar a:hover span,
.blog-category-bar a.active span {
  color: var(--panel-green-dark);
  background: var(--panel-lime);
}

.blog-list-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.blog-list-head h2 {
  margin: 0 0 12px;
  color: var(--panel-green-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 800;
}

.blog-list-head p {
  max-width: 680px;
  margin: 0;
  color: var(--panel-muted);
  font-size: 18px;
  line-height: 1.65;
}

.blog-sort {
  min-width: 220px;
}

.blog-sort label {
  display: block;
  margin-bottom: 8px;
  color: var(--panel-green-dark);
  font-size: 13px;
  font-weight: 800;
}

.blog-sort .form-select {
  min-height: 48px;
  border-radius: 14px;
  border-color: rgba(15, 77, 54, .16);
  color: var(--panel-text);
  font-weight: 700;
}

.featured-blog-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: 28px;
  background: var(--panel-cream);
  border: 1px solid rgba(15, 77, 54, .12);
  box-shadow: 0 24px 70px rgba(12, 42, 31, .1);
}

.featured-blog-image {
  min-height: 430px;
  overflow: hidden;
}

.featured-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.featured-blog-card:hover .featured-blog-image img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.03);
}

.featured-blog-content {
  padding: 42px;
  align-self: center;
}

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--panel-muted);
  font-size: 14px;
  font-weight: 700;
}

.blog-meta a {
  color: var(--panel-green);
  font-weight: 800;
}

.blog-meta time {
  color: var(--panel-muted);
}

.featured-blog-content h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.03;
  letter-spacing: -.04em;
  font-weight: 800;
}

.featured-blog-content h2 a {
  color: var(--panel-green-dark);
}

.featured-blog-content p {
  margin: 0 0 26px;
  color: var(--panel-muted);
  font-size: 18px;
  line-height: 1.72;
}

.blog-read-more {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 14px;
  color: #fff;
  background: var(--panel-green);
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease;
}

.blog-read-more:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 77, 54, .22);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(15, 77, 54, .12);
  box-shadow: 0 18px 48px rgba(20, 62, 45, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 77, 54, .24);
  box-shadow: 0 26px 64px rgba(20, 62, 45, .13);
}

.blog-card-image {
  display: block;
  height: 230px;
  overflow: hidden;
  background: var(--panel-green-soft);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-body h2 {
  margin: 0 0 13px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 800;
}

.blog-card-body h2 a {
  color: var(--panel-green-dark);
}

.blog-card-body h2 a:hover {
  color: var(--panel-green);
}

.blog-card-body p {
  margin: 0;
  color: var(--panel-muted);
  font-size: 16px;
  line-height: 1.62;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 46px;
}

.blog-pagination a {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 14px;
  color: var(--panel-green-dark);
  background: var(--panel-green-soft);
  border: 1px solid rgba(15, 77, 54, .12);
  font-weight: 800;
}

.blog-pagination a.active {
  color: #fff;
  background: var(--panel-green);
}

.blog-pagination a.disabled {
  opacity: .45;
  pointer-events: none;
}