:root {
  --color-accent: #343d6e;
  --color-accent-dark: #282f55;
  --color-primary: #343d6e;
  --color-primary-dark: #282f55;
  --color-section-dark: #28356e;
  --color-text: #343d6e;
  --color-text-muted: #646b8f;
  --color-body: #4a4a4a;
  --color-white: #ffffff;
  --color-border: #ececf1;
  --color-bg: #ffffff;
  --color-hero: #282f55;
  --color-gold: #b89f83;
  --color-news: #eef1f8;
  --color-pill: #f1f3f7;
  --shadow-sm: 0 2px 8px rgba(52, 61, 110, 0.06);
  --shadow-md: 0 10px 28px rgba(52, 61, 110, 0.1);
  --radius: 10px;
  --radius-lg: 16px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 800;
  color: var(--color-text);
  font-family: var(--font-display);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover { background: var(--color-primary-dark); }

.btn-secondary {
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.brand-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.brand-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-img {
  height: 56px;
  width: auto;
}

.brand-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0.72rem 1.2rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}

.brand-cta:hover {
  background: var(--color-primary-dark);
}

@media (min-width: 768px) {
  .logo-img { height: 68px; }
  .brand-cta {
    padding: 0.85rem 1.4rem;
    font-size: 1rem;
  }
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 3.25rem 0 3.5rem;
  overflow: hidden;
  background: var(--color-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #282f55 0%, #282f55 34%, rgba(40, 47, 85, 0.72) 52%, rgba(40, 47, 85, 0.18) 72%, rgba(40, 47, 85, 0) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-copy {
  max-width: 36rem;
  color: #fff;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #d8d2c6;
  margin-bottom: 0.95rem;
}

.hero h1,
.listing-head h1,
.article h1,
.page-simple h1 {
  font-size: clamp(2.2rem, 5vw, 3.55rem);
  margin-bottom: 0.8rem;
  letter-spacing: -0.03em;
}

.hero h1 {
  color: #fff;
  margin-bottom: 0.95rem;
  line-height: 1.12;
}

.article h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.7rem);
  margin-bottom: 1rem;
  line-height: 1.18;
}

.hero h1 span {
  color: var(--color-gold);
}

.hero-lead {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  max-width: 34rem;
  margin: 0;
}

.page-simple p {
  color: var(--color-text-muted);
  font-size: 1.06rem;
  max-width: 34rem;
}

.hero-rule {
  display: block;
  width: 3.25rem;
  height: 3px;
  margin-top: 1.35rem;
  background: var(--color-gold);
  border-radius: 2px;
}

@media (max-width: 899px) {
  .hero {
    min-height: 480px;
    align-items: flex-start;
    padding-top: 2.75rem;
  }

  .hero-bg {
    background-position: 78% center;
  }

  .hero-bg::after {
    background: linear-gradient(180deg, #282f55 0%, rgba(40, 47, 85, 0.94) 42%, rgba(40, 47, 85, 0.42) 78%, rgba(40, 47, 85, 0.18) 100%);
  }
}

@media (min-width: 900px) {
  .hero {
    min-height: 560px;
    padding: 4.5rem 0;
  }
}

.listing { padding: 0.5rem 0 4.5rem; }
.listing--inner { padding-top: 2.75rem; }

.listing-head { margin-bottom: 1.75rem; }
.listing-head h1 { font-size: clamp(1.85rem, 4vw, 2.6rem); }
.listing-head p { color: var(--color-text-muted); max-width: 40rem; }
.listing-count { color: var(--color-text-muted); margin-top: 0.4rem; }

.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  flex: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.46rem 0.95rem;
  border-radius: 999px;
  border: 0;
  background: var(--color-pill);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
}

.pill:hover { background: #e6e9f0; }
.pill.is-active {
  background: var(--color-primary);
  color: #fff;
}

.filter-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.search-toggle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 0;
  background: var(--color-pill);
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-toggle:hover { background: #e6e9f0; }

.search-form { display: none; }
.filter-search.is-open .search-form { display: block; }

.search-form input {
  width: min(240px, 70vw);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  outline: none;
}

.search-form input:focus { border-color: var(--color-accent); }

.promo-banner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  margin: 0 0 2rem;
  padding: 1.35rem 1.4rem;
  background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 70%);
  border: 1px solid #d8dce8;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.promo-banner__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.45rem;
}

.promo-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 0.45rem;
}

.promo-banner__lead {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}

.promo-banner__points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.promo-banner__points li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
}

.promo-banner__points li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--color-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 10px 10px no-repeat;
}

.promo-banner__visual {
  display: none;
  justify-self: center;
  max-width: 340px;
}

.promo-banner__visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.promo-banner__cta {
  text-align: center;
}

.promo-banner__btn {
  width: 100%;
  padding: 0.95rem 1.15rem;
}

.promo-banner__cta p,
.promo-banner__proof {
  margin: 0.55rem auto 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--color-text-muted);
  max-width: 15rem;
}

@media (min-width: 900px) {
  .promo-banner {
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.95fr) auto;
    gap: 1.25rem 1.5rem;
    padding: 1.15rem 1.5rem;
  }

  .promo-banner__visual { display: block; }
  .promo-banner__btn { width: auto; white-space: nowrap; }
  .promo-banner__cta { justify-self: end; }
}

.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem 1.25rem;
}

@media (min-width: 700px) {
  .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1100px) {
  .post-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .post-grid--related { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.post-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.post-card__media {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(135deg, #dce3f0, #eef2f8);
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__ph {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.55), transparent 40%),
    linear-gradient(135deg, #c9d3e8, #e8edf6);
}

.post-card__body { padding: 0.95rem 0.15rem 0.35rem; }

.post-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
  margin-bottom: 0.45rem;
  font-size: 0.7rem;
}

.post-card__cat {
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
}

.post-card__byline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.7rem;
  color: var(--color-text-muted);
}

.post-card__author { font-weight: 600; }

.post-card.is-hidden,
.empty-state.is-hidden { display: none; }

.post-card__meta time { color: var(--color-text-muted); }

.post-card__title {
  font-size: 1.02rem;
  line-height: 1.3;
  min-height: calc(1.3em * 2);
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.post-card__title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__excerpt {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__more {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.empty-state {
  padding: 2.5rem 0;
  color: var(--color-text-muted);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  align-items: center;
}

.pagination a,
.pagination span {
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.pagination .is-current {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.newsletter {
  background: var(--color-news);
  padding: 1.6rem 0;
}

.newsletter-inner {
  display: grid;
  gap: 1.15rem;
}

.newsletter-copy {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.newsletter-ico {
  width: 44px;
  height: 44px;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter h2 {
  font-size: 1.2rem;
  margin-bottom: 0.15rem;
  font-weight: 800;
}

.newsletter-copy p { color: var(--color-text-muted); font-size: 0.92rem; }

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.newsletter-form input[type="email"] {
  flex: 1 1 220px;
  border: 0;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  background: #fff;
  outline: none;
}

.newsletter-legal {
  max-width: 1180px;
  margin: 0.7rem auto 0;
  padding: 0 1.25rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.newsletter-legal a { text-decoration: underline; color: var(--color-accent); }
.newsletter-msg { font-size: 0.85rem; min-height: 1.2em; flex: 1 1 100%; }
.newsletter-msg.is-ok { color: #2d7a3a; }
.newsletter-msg.is-err { color: #b42318; }

.subscribe-popup {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(52, 61, 110, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.subscribe-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.subscribe-popup__card {
  position: relative;
  width: min(420px, 100%);
  padding: 2.25rem 1.75rem 1.75rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(52, 61, 110, 0.22);
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.28s ease;
}

.subscribe-popup.is-open .subscribe-popup__card {
  transform: translateY(0) scale(1);
}

.subscribe-popup__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--color-text-muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.subscribe-popup__close:hover { color: var(--color-text); }

.subscribe-popup__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-news);
  color: var(--color-primary);
}

.subscribe-popup__card h2 {
  font-size: 1.55rem;
  margin-bottom: 0.45rem;
}

.subscribe-popup__card p {
  color: var(--color-text-muted);
  margin-bottom: 1.35rem;
  line-height: 1.55;
}

.subscribe-popup__ok { min-width: 8.5rem; }

body.subscribe-popup-open { overflow: hidden; }

@media (min-width: 900px) {
  .newsletter { padding: 1.35rem 0; }
  .newsletter-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .newsletter-form { flex-wrap: nowrap; }
  .newsletter-form input[type="email"] { width: 260px; flex: 0 0 260px; }
  .newsletter-msg { flex-basis: auto; min-width: 12rem; }
}

.article { padding: 3rem 0 2.5rem; }
.article-inner { max-width: 880px; }

.crumbs {
  display: flex;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.15rem;
}

.crumbs a:hover { color: var(--color-accent); }

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
}

.article-meta__start {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 1rem;
}

.article-author {
  color: var(--color-text-muted);
  font-weight: 600;
}

.article-media {
  margin: 0 0 2.1rem;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #dce3f0, #eef2f8);
}

.article-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
}

.article-media__ph {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 28% 28%, rgba(255,255,255,0.7), transparent 42%),
    linear-gradient(135deg, #c9d3e8, #e8edf6);
}

.article-lead {
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--color-body);
  line-height: 1.65;
  margin: 0 0 1.6rem;
}

.article-body {
  font-size: 1.05rem;
  color: var(--color-body);
  line-height: 1.75;
}

.article-body::after {
  content: '';
  display: block;
  clear: both;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body li { color: var(--color-body); }
.article-body p,
.article-body ul,
.article-body ol { margin: 0 0 1.15rem; }
.article-body h2,
.article-body h3 { margin: 1.8rem 0 0.7rem; color: var(--color-text); }
.article-body ul,
.article-body ol { padding-left: 1.2rem; }
.article-body a { color: var(--color-accent); text-decoration: underline; }
.article-body img {
  border-radius: 14px;
  max-width: 100%;
  height: auto;
  margin: 0.2rem 0 1.15rem;
}

.article-body img.alignleft,
.article-body figure.image.alignleft,
.article-body .alignleft {
  float: left;
  max-width: min(46%, 340px);
  margin: 0.2rem 1.4rem 1rem 0;
}

.article-body img.alignright,
.article-body figure.image.alignright,
.article-body .alignright {
  float: right;
  max-width: min(46%, 340px);
  margin: 0.2rem 0 1rem 1.4rem;
}

.article-body img.aligncenter,
.article-body figure.image.aligncenter,
.article-body .aligncenter {
  display: block;
  float: none;
  margin: 0.4rem auto 1.25rem;
}

@media (max-width: 759px) {
  .article-body img.alignleft,
  .article-body img.alignright,
  .article-body figure.image.alignleft,
  .article-body figure.image.alignright,
  .article-body .alignleft,
  .article-body .alignright {
    float: none;
    display: block;
    max-width: 100%;
    margin: 0 0 1.15rem;
  }
}

.share-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.share-bar__label {
  font-weight: 700;
  font-size: 0.88rem;
  margin: 0;
}

.share-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.share-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #f4f6fb;
}

.share-btn.is-copied {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.share-btn svg { flex-shrink: 0; }

.article-cta {
  margin-top: 2rem;
  padding: 1.5rem 1.4rem;
  background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 75%);
  border: 1px solid #d8dce8;
  border-radius: 18px;
}

.article-cta__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}

.article-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.article-cta__lead {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 36rem;
  margin-bottom: 1.1rem;
}

.article-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.article-cta__proof {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.industries {
  padding: 0 0 4.5rem;
}

.industries h2 {
  margin-bottom: 0.45rem;
}

.industries-lead {
  color: var(--color-text-muted);
  max-width: 36rem;
  margin-bottom: 1.4rem;
}

.industry-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

.industry-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  min-height: 100%;
  transition: var(--transition);
}

.industry-card:hover {
  border-color: #c5cade;
  box-shadow: var(--shadow-md);
}

.industry-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.industry-card__lead {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  flex: 1;
}

.industry-card__more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 0.35rem;
}

@media (min-width: 700px) {
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1100px) {
  .industry-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.related { padding: 0 0 4rem; }
.related h2 { margin-bottom: 1.25rem; }

.page-simple { padding: 4rem 0; min-height: 40vh; }
.page-simple .btn { margin-top: 0; }
.page-simple > .container > p:last-child { margin-top: 1.5rem; }

.unsub-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 1.25rem;
}

.unsub-form input[type="email"] {
  flex: 1 1 240px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  outline: none;
}

.unsub-form input[type="email"]:focus { border-color: var(--color-accent); }

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  padding: 1rem;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.cookie-consent.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-consent__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(52, 61, 110, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(52, 61, 110, 0.16);
}

.cookie-consent__title { font-weight: 700; margin-bottom: 0.35rem; }
.cookie-consent__desc { color: var(--color-text-muted); font-size: 0.9rem; }
.cookie-consent__desc a { color: var(--color-accent); font-weight: 600; text-decoration: underline; }
.cookie-consent__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

@media (max-width: 700px) {
  .cookie-consent__inner { flex-direction: column; align-items: stretch; }
  .cookie-consent__actions { width: 100%; }
  .cookie-consent__actions .btn { flex: 1; }
}

body.cookie-consent-visible { padding-bottom: 7rem; }

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 2rem 0 2.5rem;
  background: #f7f8fc;
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.site-footer-brand a {
  font-weight: 800;
  font-family: var(--font-display);
}

.site-footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 0.35rem;
  max-width: 22rem;
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.15rem;
  align-items: center;
}

.site-footer-nav a {
  font-weight: 600;
  font-size: 0.9rem;
}

.site-footer-nav a:hover { color: var(--color-accent); }

@media (max-width: 640px) {
  .article-meta { flex-direction: column; gap: 0.35rem; }
}
