@charset "utf-8";

:root {
  --ij-ink: #212830;
  --ij-ink-2: #403e3e;
  --ij-paper: #f4f6f8;
  --ij-line: #d5dbe3;
  --ij-accent: #0f766e;
  --ij-accent-hover: #0d9488;
  --ij-header-bg: #12171f;
  --ij-header-bg-2: #1a222d;
  --ij-header-muted: rgba(255, 255, 255, 0.62);
  --ij-header-h: 118px;
  --ij-font: "Source Sans 3", "Segoe UI", sans-serif;
  --ij-font-display: "Barlow", "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ij-font);
  color: var(--ij-ink);
  background: #fff;
  margin: 0;
}

a { text-decoration: none; }

h1, h2, h3, h4,
.site-header__menu a,
.site-header__cta,
.site-heading {
  font-family: var(--ij-font-display);
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  color: #fff;
  background: linear-gradient(180deg, var(--ij-header-bg) 0%, var(--ij-header-bg-2) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 40px rgba(8, 12, 18, 0.35); }
.site-header__glow {
  pointer-events: none;
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--ij-accent) 35%, #2dd4bf 50%, var(--ij-accent) 65%, transparent 100%);
}
.site-header__inner { position: relative; padding-top: 14px; padding-bottom: 0; }
.site-header__row {
  display: grid;
  grid-template-columns: auto minmax(160px, 1fr) auto;
  align-items: center;
  gap: 16px 20px;
  min-height: 56px;
  padding-bottom: 12px;
}
.site-header__brand { display: flex; align-items: center; }
.site-header__brand img { height: 42px; width: auto; max-width: 176px; object-fit: contain; }
.site-header__search {
  display: flex;
  align-items: center;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 4px 4px 14px;
}
.site-header__search:focus-within {
  border-color: rgba(45, 212, 191, 0.55);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.25);
}
.site-header__search-icon { color: var(--ij-header-muted); margin-right: 8px; flex-shrink: 0; }
.site-header__search-input {
  flex: 1; border: 0; background: transparent; min-width: 0;
  padding: 0.45rem 0.4rem; font-size: 0.94rem; color: #fff; outline: none;
}
.site-header__search-input::placeholder { color: rgba(255,255,255,0.42); }
.site-header__search-btn {
  border: 0; border-radius: 8px; background: var(--ij-accent); color: #fff;
  font-family: var(--ij-font-display); font-weight: 700; font-size: 0.82rem;
  padding: 0.5rem 0.95rem; cursor: pointer;
}
.site-header__search-btn:hover { background: var(--ij-accent-hover); }
.site-header__actions { display: flex; align-items: center; gap: 0.5rem; }
.site-header__chip {
  display: none;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
}
.site-header__iconbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
}
.site-header__iconbtn--wa { color: #25d366; }
.site-header__toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 0; border: 0; background: transparent; cursor: pointer;
}
.site-header__toggler span {
  display: block; height: 2px; width: 22px; margin: 0 auto;
  background: #fff; border-radius: 2px;
}
.site-header__nav { border-top: 1px solid rgba(255,255,255,0.08); }
.site-header__menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; flex-wrap: wrap; gap: 2px;
}
.site-header__menu > li > a {
  position: relative;
  display: inline-flex;
  color: var(--ij-header-muted);
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.95rem 0.85rem; transition: color 0.2s ease;
}
.site-header__menu > li > a:not(.site-header__cta)::after {
  content: "";
  position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.55rem;
  height: 2px; border-radius: 2px; background: var(--ij-accent);
  transform: scaleX(0); transition: transform 0.22s ease;
}
.site-header__menu > li > a:not(.site-header__cta):hover { color: #fff; }
.site-header__menu > li > a:not(.site-header__cta):hover::after { transform: scaleX(1); }
.site-header__cta {
  display: inline-flex !important;
  margin: 0.45rem 0 0.45rem 0.35rem !important;
  padding: 0.45rem 0.95rem !important;
  border-radius: 8px !important;
  border: 1px solid rgba(45, 212, 191, 0.55) !important;
  color: #fff !important;
  font-size: 0.78rem !important;
}
.site-header__cta:hover {
  background: var(--ij-accent) !important;
  border-color: var(--ij-accent) !important;
  color: #fff !important;
}
.site-header__cta::after { display: none !important; }

@media (min-width: 1200px) {
  .site-header__chip--phone { display: inline-flex; }
}
@media (min-width: 992px) {
  .site-header__nav.collapse {
    display: block !important;
    height: auto !important;
    visibility: visible;
  }
}
@media (max-width: 991.98px) {
  .site-header__toggler { display: inline-flex; }
  .site-header__row { grid-template-columns: auto 1fr auto; }
  .site-header__search { display: none; }
  .site-header__nav {
    background: var(--ij-header-bg-2);
    margin: 0 -12px;
    padding: 0.5rem 0.75rem 1rem;
  }
  .site-header__menu { flex-direction: column; align-items: stretch; }
  .site-header__menu > li > a { padding: 0.75rem 0.5rem; }
}

/* Hero / section heads */
.page-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2.75rem, 6vw, 3.75rem);
  background:
    radial-gradient(700px 220px at 80% -20%, rgba(15, 118, 110, 0.28), transparent 60%),
    linear-gradient(180deg, #12171f 0%, #0d1218 100%);
  color: #fff;
}
.page-hero__inner { max-width: 720px; }
.page-bread {
  display: flex; align-items: center; gap: 0.55rem;
  margin-bottom: 1.1rem; font-size: 0.88rem; color: rgba(255,255,255,0.55);
}
.page-bread a { color: rgba(255,255,255,0.78); }
.page-bread a:hover { color: #99f6e4; }
.page-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--ij-font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700; line-height: 1.1; color: #fff;
}
.page-hero__lead {
  margin: 0; max-width: 42ch;
  color: rgba(255,255,255,0.72); font-size: 1.05rem; line-height: 1.55;
}
.site-kicker {
  margin: 0 0 0.55rem;
  font-family: var(--ij-font-display);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ij-accent);
}
.site-kicker--on-dark { color: #2dd4bf; }
.site-heading {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 700; line-height: 1.15; color: var(--ij-ink);
}
.site-section-head { margin-bottom: 2rem; max-width: 40rem; }
.site-section-head--row {
  max-width: none;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.site-section-head__cta {
  font-family: var(--ij-font-display); font-weight: 700; font-size: 0.9rem;
  color: var(--ij-accent); border-bottom: 1px solid rgba(15, 118, 110, 0.35);
}
.site-section-head__cta:hover { color: var(--ij-accent-hover); }

/* Intro */
.blog-intro { padding: clamp(2rem, 5vw, 3.5rem) 0 0.5rem; }
.blog-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}
.blog-intro__text,
.blog-intro__text p {
  color: #4b5563;
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 0.85rem;
}
.blog-intro__aside {
  padding: 1.15rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}
.blog-search__label {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--ij-font-display);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: #64748b;
}
.blog-search__row { display: flex; gap: 0.45rem; }
.blog-search__row input {
  flex: 1; min-width: 0; min-height: 42px;
  padding: 0.45rem 0.75rem;
  border-radius: 8px; border: 1px solid #d5dbe3;
  font-size: 0.95rem; outline: none;
}
.blog-search__row input:focus {
  border-color: rgba(15, 118, 110, 0.55);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}
.blog-search__row button {
  min-height: 42px; padding: 0.45rem 0.95rem;
  border: 0; border-radius: 8px;
  background: var(--ij-accent); color: #fff;
  font-family: var(--ij-font-display); font-weight: 700; font-size: 0.88rem;
  cursor: pointer;
}
.blog-search__row button:hover { background: var(--ij-accent-hover); }
.blog-cats { margin-top: 1.15rem; }
.blog-cats__label {
  margin: 0 0 0.55rem;
  font-family: var(--ij-font-display);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: #64748b;
}
.blog-cats__list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.blog-cats__chip {
  display: inline-flex; align-items: center;
  min-height: 34px; padding: 0.3rem 0.7rem;
  border-radius: 8px; border: 1px solid #d5dbe3;
  background: #fff; color: #475569;
  font-family: var(--ij-font-display); font-size: 0.82rem; font-weight: 700;
}
.blog-cats__chip:hover {
  border-color: rgba(15, 118, 110, 0.45);
  color: var(--ij-accent);
}

/* Listing */
.blog-listing { padding: clamp(1.75rem, 4vw, 3.25rem) 0 clamp(2.5rem, 5vw, 4rem); }
.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
}
.blog-featured__media {
  display: block; overflow: hidden; border-radius: 12px;
  aspect-ratio: 16 / 10; background: var(--ij-paper);
}
.blog-featured__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.blog-featured:hover .blog-featured__media img { transform: scale(1.03); }
.blog-featured__body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 0.35rem 0.5rem 0.35rem 0;
}
.blog-featured__meta,
.blog-card__meta {
  margin: 0 0 0.55rem;
  font-size: 0.8rem; color: #6b7280;
}
.blog-featured__meta span,
.blog-card__meta span { color: var(--ij-accent); font-weight: 600; }
.blog-featured__title {
  margin: 0 0 0.75rem;
  font-family: var(--ij-font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700; line-height: 1.2;
}
.blog-featured__title a { color: var(--ij-ink); }
.blog-featured__title a:hover { color: var(--ij-accent); }
.blog-featured__excerpt {
  margin: 0 0 1rem; color: #4b5563; line-height: 1.6;
}
.blog-featured__more,
.blog-card__more {
  font-family: var(--ij-font-display);
  font-size: 0.9rem; font-weight: 700; color: var(--ij-accent);
}
.blog-featured__more:hover,
.blog-card__more:hover { color: var(--ij-accent-hover); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.blog-card {
  display: flex; flex-direction: column;
  border-radius: 12px; border: 1px solid #e2e8f0;
  background: #fff; overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.blog-card:hover {
  border-color: rgba(15, 118, 110, 0.4);
  transform: translateY(-2px);
}
.blog-card__media {
  display: block; aspect-ratio: 16 / 10;
  background: var(--ij-paper); overflow: hidden;
}
.blog-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.blog-card:hover .blog-card__media img { transform: scale(1.04); }
.blog-card__body {
  display: flex; flex-direction: column; flex: 1;
  padding: 1rem 1.05rem 1.15rem;
}
.blog-card__title {
  margin: 0 0 0.55rem;
  font-family: var(--ij-font-display);
  font-size: 1.08rem; font-weight: 700; line-height: 1.25;
}
.blog-card__title a { color: var(--ij-ink); }
.blog-card__title a:hover { color: var(--ij-accent); }
.blog-card__excerpt {
  margin: 0 0 0.85rem; flex: 1;
  color: #64748b; font-size: 0.92rem; line-height: 1.5;
}
.blog-pagination {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.4rem; margin-top: 2rem;
}
.blog-pagination__link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; min-height: 40px; padding: 0.35rem 0.65rem;
  border-radius: 8px; border: 1px solid #d5dbe3; background: #fff;
  color: #475569; font-family: var(--ij-font-display); font-weight: 700;
}
.blog-pagination__link:hover {
  border-color: rgba(15, 118, 110, 0.45); color: var(--ij-accent);
}
.blog-pagination__link.is-active {
  background: var(--ij-accent); border-color: var(--ij-accent); color: #fff;
}
.blog-empty { text-align: center; color: #64748b; margin: 1.5rem 0 0; }

[data-reveal] {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: calc(var(--i, 0) * 40ms);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* CTA band */
.site-band {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  margin: 0 0 0.5rem;
  background: #e8f4f2;
  border-top: 1px solid #c5e4df;
  border-bottom: 1px solid #c5e4df;
}
.site-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.site-band__title {
  margin: 0 0 0.55rem; max-width: 22ch;
  font-family: var(--ij-font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; line-height: 1.15;
}
.site-band__text { margin: 0; max-width: 40ch; color: #3f5560; line-height: 1.55; }
.site-band__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.site-band__btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0.75rem 1.35rem; border-radius: 8px;
  font-family: var(--ij-font-display); font-size: 0.92rem; font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.site-band__btn--primary {
  background: var(--ij-accent); color: #fff; border: 1px solid var(--ij-accent);
}
.site-band__btn--primary:hover { background: var(--ij-accent-hover); color: #fff; }
.site-band__btn--ghost {
  background: #fff; color: var(--ij-ink); border: 1px solid #9fc9c2;
}
.site-band__btn--ghost:hover { border-color: var(--ij-accent); color: var(--ij-accent); }

/* Footer (mesmo padrao do site raiz) */
.site-footer {
  position: relative;
  margin-top: 0;
  color: #c5ccd6;
  background:
    radial-gradient(1000px 280px at 12% -10%, rgba(15, 118, 110, 0.18), transparent 60%),
    linear-gradient(180deg, #12171f 0%, #0d1218 100%);
  overflow: hidden;
}

.site-footer__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--ij-accent) 30%, #2dd4bf 50%, var(--ij-accent) 70%, transparent 100%);
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #99f6e4;
}

.site-footer__cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
}

.site-footer__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer__cta-eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--ij-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2dd4bf;
}

.site-footer__cta-title {
  margin: 0;
  max-width: 28ch;
  font-family: var(--ij-font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.site-footer__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.site-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.2rem;
  border-radius: 8px;
  font-family: var(--ij-font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-footer__btn--primary {
  background: var(--ij-accent);
  border: 1px solid var(--ij-accent);
  color: #fff !important;
}

.site-footer__btn--primary:hover {
  background: var(--ij-accent-hover);
  border-color: var(--ij-accent-hover);
  color: #fff !important;
  transform: translateY(-1px);
}

.site-footer__btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff !important;
}

.site-footer__btn--ghost:hover {
  border-color: rgba(45, 212, 191, 0.6);
  color: #99f6e4 !important;
  transform: translateY(-1px);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr 0.85fr 1.15fr;
  gap: 2.25rem 2rem;
  padding: 2.75rem 0 2.5rem;
}

.site-footer__logo {
  display: inline-flex;
  margin-bottom: 1rem;
}

.site-footer__logo img {
  height: 42px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

.site-footer__about {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #a7b0bd;
  max-width: 36ch;
}

.site-footer__about p {
  margin: 0 0 0.75rem;
  color: inherit;
}

.site-footer__title {
  margin: 0 0 1rem;
  font-family: var(--ij-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer__links,
.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li {
  margin-bottom: 0.55rem;
}

.site-footer__links a {
  color: #b7c0cc;
  font-size: 0.95rem;
  position: relative;
  padding-left: 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.site-footer__links a:hover {
  color: #fff;
  padding-left: 6px;
}

.site-footer__contact li {
  margin-bottom: 1rem;
}

.site-footer__label {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--ij-font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7f8a99;
}

.site-footer__value {
  display: block;
  color: #e7ebf0;
  font-size: 0.95rem;
  line-height: 1.5;
}

a.site-footer__value:hover {
  color: #99f6e4;
}

.site-footer__social {
  display: flex;
  gap: 8px;
  margin-top: 1.35rem;
}

.site-footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-footer__social a:hover {
  border-color: rgba(45, 212, 191, 0.5);
  background: rgba(15, 118, 110, 0.25);
  color: #99f6e4;
  transform: translateY(-1px);
}

.site-footer__base {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  padding: 1rem 0;
}

.site-footer__base-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer__copy,
.site-footer__credit {
  margin: 0;
  font-size: 0.82rem;
  color: #8b95a3;
}

.site-footer__credit a {
  color: #b7c0cc;
  border-bottom: 1px solid rgba(183, 192, 204, 0.35);
}

.site-footer__credit a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.whatsapp-btn {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 1000;
  width: 54px;
  height: 54px;
  background-color: #25d366;
  color: #fff;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-btn:hover {
  color: #fff;
  background-color: #1ebe57;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .site-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .site-footer__cta-inner {
    align-items: flex-start;
  }

  .site-footer__cta-actions {
    width: 100%;
  }

  .site-footer__btn {
    flex: 1 1 auto;
  }
}

goria extras ===== */
.page-hero--compact { padding: clamp(1.75rem, 4vw, 2.75rem) 0; }
.page-hero--compact .page-hero__title { font-size: clamp(1.45rem, 3.2vw, 2.15rem); margin-bottom: 0.55rem; }
.page-hero__inner--wide { max-width: 920px; }
.blog-post__byline {
  margin: 1rem 0 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
}
.blog-post__byline strong { color: #fff; }

.blog-cats__chip.is-active {
  background: var(--ij-accent);
  border-color: var(--ij-accent);
  color: #fff;
}

.blog-article { padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 3.75rem); }
.blog-article__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.7fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}
.blog-article__cover {
  margin: 0 0 1.25rem;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ij-paper);
}
.blog-article__cover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
}
.blog-article__content {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.75;
}
.blog-article__content h2,
.blog-article__content h3 {
  margin: 1.75rem 0 0.75rem;
  font-family: var(--ij-font-display);
  color: var(--ij-ink);
  line-height: 1.25;
}
.blog-article__content p { margin: 0 0 1rem; }
.blog-article__content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 0.75rem 0;
}
.blog-article__content a { color: var(--ij-accent); text-decoration: underline; }
.blog-article__content ul,
.blog-article__content ol { margin: 0 0 1rem; padding-left: 1.25rem; }

.blog-share {
  margin: 0 0 1.5rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid #e2e8f0;
}
.blog-share__label {
  margin: 0 0 0.55rem;
  font-family: var(--ij-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}
.blog-share__list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.blog-share__btn {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #d5dbe3;
  background: #fff;
  color: #334155;
  font-family: var(--ij-font-display);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}
.blog-share__btn:hover {
  border-color: rgba(15, 118, 110, 0.45);
  color: var(--ij-accent);
}

.blog-faq { margin: 2rem 0; }
.blog-faq__title {
  margin: 0 0 1rem;
  font-family: var(--ij-font-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.blog-faq__item {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 0.55rem;
  overflow: hidden;
}
.blog-faq__q {
  width: 100%;
  text-align: left;
  padding: 0.9rem 1rem;
  border: 0;
  background: transparent;
  color: var(--ij-ink);
  font-family: var(--ij-font-display);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
}
.blog-faq__item.is-open .blog-faq__q { color: var(--ij-accent); }
.blog-faq__a {
  padding: 0 1rem 1rem;
  color: #475569;
  line-height: 1.6;
}

.blog-author {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0 1.5rem;
  padding: 1.1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}
.blog-author__media img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 0.35rem;
}
.blog-author__label {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}
.blog-author__name {
  margin: 0 0 0.35rem;
  font-family: var(--ij-font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.blog-author__text { margin: 0; color: #64748b; font-size: 0.92rem; }

.blog-tags { margin: 0 0 1rem; }
.blog-tags__label {
  margin: 0 0 0.55rem;
  font-family: var(--ij-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}
.blog-tags__list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.blog-tags__chip {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 8px;
  border: 1px solid #d5dbe3;
  background: #fff;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 600;
}
.blog-tags__chip:hover { border-color: rgba(15,118,110,0.45); color: var(--ij-accent); }

.blog-aside { display: flex; flex-direction: column; gap: 1rem; }
.blog-aside__box {
  padding: 1.1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
}
.blog-aside__title {
  margin: 0 0 0.85rem;
  font-family: var(--ij-font-display);
  font-size: 1rem;
  font-weight: 700;
}
.blog-aside__list { list-style: none; margin: 0; padding: 0; }
.blog-aside__list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.blog-aside__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.blog-aside__list a {
  display: block;
  color: var(--ij-ink);
  font-family: var(--ij-font-display);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
}
.blog-aside__list a:hover { color: var(--ij-accent); }
.blog-aside__list span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: #94a3b8;
}
.blog-aside__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: var(--ij-accent);
  color: #fff;
  font-family: var(--ij-font-display);
  font-weight: 700;
  text-align: center;
}
.blog-aside__cta:hover { background: var(--ij-accent-hover); color: #fff; }

.blog-related { margin-top: clamp(2rem, 4vw, 3rem); }

@media (max-width: 991.98px) {
  .blog-article__grid { grid-template-columns: 1fr; }
  .blog-author { grid-template-columns: 56px 1fr; }
}

.blog-empty-block {
  text-align: center;
  padding: 2rem 1rem;
}
.blog-empty-hint {
  margin: 0.35rem 0 1rem;
  color: #94a3b8;
}
.page-hero__lead strong {
  color: #fff;
  font-weight: 700;
}
