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


/* Tablet (721px–1100px): preserva leitura e áreas de toque sem usar o layout
   compacto de celular. */
@media (min-width: 721px) and (max-width: 1100px) {
  .wrap { width: min(100% - 48px, 960px); }
  .site-header__inner { min-height: 78px; }
  .site-nav.open { top: 78px; left: 24px; right: 24px; }
  .archive-grid__cards,
  .grid-3,
  .related-grid,
  .categories-row,
  .home-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .article-content-wrap { gap: 28px; }
  .site-cta,
  .menu-toggle,
  .site-nav a { min-height: 44px; }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f3ec;
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  background: #f7f3ec;
}

.wrap {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.wrap--full {
  width: min(100%, calc(100% - 40px));
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header__inner,
.site-subnav__inner,
.site-footer__top,
.site-footer__bottom,
.page-grid,
.feature-split,
.article-shell,
.home-feature,
.newsletter-panel,
.category-callout,
.cover-panel {
  display: grid;
}

.site-header__inner {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(180deg, #d4491b, #b91c1c);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand__logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand__title {
  display: block;
  font-size: 0.98rem;
  line-height: 1.02;
  font-weight: 800;
  max-width: 190px;
}

.brand__subtitle {
  display: none;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  font-size: 0.75rem;
}

.site-nav a {
  color: #3f3733;
}

.site-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--cta);
  color: var(--cta-text);
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.76rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
}

.site-subnav {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.9);
}

.site-subnav__inner {
  grid-template-columns: repeat(4, minmax(0, max-content));
  gap: 18px;
  align-items: center;
  min-height: 40px;
}

.site-subnav__inner a {
  font-size: 0.68rem;
  color: #423938;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
}

.section {
  padding: 20px 0;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 18px;
}

.section-title h2,
.page-title,
.article-title,
.hero-copy h1 {
  margin: 0;
  line-height: 0.98;
}

.section-title h2 {
  font-size: clamp(2.1rem, 4.1vw, 3.3rem);
  font-weight: 800;
}

.section-title p,
.hero-copy p,
.page-lead,
.article-lead,
.card p,
.feature-copy p,
.footer-column a,
.newsletter-card p,
.callout-copy p {
  color: var(--muted);
}

.kicker {
  color: #d4491b;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.cover-panel {
  min-height: 200px;
  max-height: 200px;
  overflow: hidden;
  border-radius: 0;
}

.cover-panel--rounded {
  border-radius: 28px;
}

.cover-panel__image,
.feature-media__image,
.card__thumb img,
.category-card__cover img,
.article-hero__media img,
.related-card__image img,
.page-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-box {
  padding-top: 8px;
}

.hero-box .cover-panel {
  min-height: 150px;
  max-height: 150px;
}

.hero-box .cover-panel img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
}

.home-feature {
  grid-template-columns: 0.95fr 1.2fr;
  background: var(--surface);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.home-feature .feature-media {
  align-self: stretch;
  height: auto;
  min-height: 0;
  overflow: hidden;
}

.home-feature .feature-media__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-feature__content,
.feature-copy,
.newsletter-card,
.callout-copy,
.page-sidebar__card,
.article-sidebar__card,
.author-strip__bio,
.footer-column {
  padding: 18px 20px;
}

.hero-copy h1 {
  font-size: clamp(1.3rem, 2.1vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.hero-copy p {
  max-width: 420px;
  font-size: 0.78rem;
  margin: 10px 0 0;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.76rem;
}

.btn--primary {
  background: #d4491b;
  color: #fff;
  box-shadow: 0 12px 30px rgba(212, 73, 27, 0.24);
}

.btn--ghost {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: var(--text);
}

.article-meta,
.card-meta,
.pill-row,
.toc-list,
.footer-links,
.footer-note,
.article-taxonomy,
.page-sidebar__links,
.social-rail {
  display: flex;
}

.mt-20 {
  margin-top: 20px;
}

.mt-22 {
  margin-top: 22px;
}

.mt-26 {
  margin-top: 26px;
}

.mt-28 {
  margin-top: 28px;
}

.mt-34 {
  margin-top: 34px;
}

.section--flush-top {
  padding-top: 0;
  padding-bottom: 0;
}

.pill-row,
.article-meta,
.card-meta {
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

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

.card,
.related-card,
.page-sidebar__card,
.article-sidebar__card,
.newsletter-card,
.page-body,
.article-body,
.author-strip,
.category-callout,
.page-cover,
.archive-grid__offer {
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card,
.related-card {
  padding: 8px;
}

.card__thumb {
  aspect-ratio: 1.34 / 1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.grid-3 .card__thumb {
  height: 180px;
  aspect-ratio: auto;
}

.card__label {
  display: inline-flex;
  margin: 8px 0 6px;
  padding: 3px 6px;
  background: var(--primary);
  font-size: 0.52rem;
  text-transform: uppercase;
  font-weight: 800;
}

.card h3,
.feature-copy h3,
.page-sidebar__card h3,
.article-sidebar__card h3,
.category-callout h3,
.article-body h2,
.article-body h3,
.page-body h2,
.page-body h3,
.author-strip__bio h3 {
  margin: 0;
}

.card h3 {
  font-size: 0.9rem;
  line-height: 1.2;
  margin-bottom: 6px;
}

.card p {
  margin: 0 0 10px;
  font-size: 0.68rem;
  line-height: 1.42;
}

.card__cta,
.feature-copy__cta,
.page-sidebar__links a,
.footer-links a {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.66rem;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.category-card__cover {
  height: 100%;
  min-height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.category-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(7, 10, 18, 0.82));
  color: #fff;
}

.category-card__body h3 {
  margin: 0 0 2px;
  font-size: 0.86rem;
  line-height: 1.1;
}

.category-card__body div {
  font-size: 0.58rem;
}

.feature-split {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
}

.feature-split--reverse {
  grid-template-columns: 1fr 1fr;
}

.feature-media {
  height: 140px;
  min-height: 140px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.feature-copy {
  padding: 10px 12px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
}

.feature-copy h3 {
  font-size: 1rem;
  line-height: 1.16;
  margin-top: 6px;
}

.feature-copy p {
  font-size: 0.7rem;
  line-height: 1.45;
  margin: 8px 0 12px;
  max-width: 320px;
}

.feature-copy__cta {
  margin-top: auto;
}

.page-hero,
.archive-hero,
.article-hero {
  padding-top: 16px;
}

.page-grid {
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
}

.page-cover {
  overflow: hidden;
  border-radius: 28px;
}

.page-cover,
.archive-cover,
.article-hero__media {
  min-height: 250px;
}

.archive-hero .cover-panel,
.page-cover,
.archive-cover {
  min-height: 200px;
  max-height: 200px;
}

.archive-hero .cover-panel img,
.page-cover img,
.archive-cover img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.page-title,
.article-title {
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.page-lead,
.article-lead {
  max-width: 540px;
  font-size: 0.84rem;
  margin: 12px 0 0;
  line-height: 1.55;
}

.archive-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: start;
}

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

.archive-grid__offer {
  min-height: 100%;
  padding: 28px;
}

.archive-grid__offer h3 {
  font-size: 2rem;
  margin: 0;
}

.article-shell {
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: start;
}

.article-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: start;
}

.article-hero__media {
  overflow: hidden;
  min-height: 280px;
  max-height: 280px;
  border-radius: 0;
}

.article-hero__media img {
  height: 280px;
  object-fit: cover;
  object-position: center;
}

.article-content-wrap {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: start;
  margin-top: 28px;
}

.social-rail {
  position: sticky;
  top: 130px;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  padding-top: 4px;
  color: #493f3a;
}

.social-rail a {
  font-weight: 700;
  font-size: 0.7rem;
}

.article-body,
.page-body {
  border-radius: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.article-body img,
.page-body img {
  border-radius: 28px;
}

.article-body p,
.page-body p,
.article-body li,
.page-body li {
  font-size: 0.82rem;
  color: #2f2926;
  line-height: 1.7;
}

.article-body h2,
.page-body h2 {
  font-size: 1.15rem;
  margin-top: 34px;
  margin-bottom: 12px;
  line-height: 1.18;
  font-weight: 800;
}

.article-body h3,
.page-body h3 {
  font-size: 1rem;
  margin-top: 24px;
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: 800;
}

.article-anchor-target {
  scroll-margin-top: 190px;
}

.article-body blockquote,
.page-body blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.72);
}

.article-inline-offer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  margin: 22px 0;
  padding: 14px 16px;
  background: #f0ece5;
  border-radius: 0;
}

.toc-card {
  position: sticky;
  top: 118px;
  padding: 8px 0 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  border-right: 0;
  border-left: 0;
  border-bottom: 0;
}

.toc-card h3 {
  margin: 0 0 12px;
  font-size: 0.86rem;
}

.toc-list {
  flex-direction: column;
  gap: 10px;
}

.toc-list a {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.toc-list a.is-active {
  color: var(--text);
  font-weight: 700;
}

.toc-list .toc-list__sub {
  padding-left: 14px;
  font-size: 0.64rem;
}

.newsletter-card h3,
.article-sidebar__card h3,
.page-sidebar__card h3 {
  font-size: 0.92rem;
  line-height: 1.15;
  margin: 6px 0 10px;
}

.newsletter-form,
.newsletter-form__field {
  display: grid;
  gap: 10px;
}

.newsletter-form {
  margin-top: 14px;
}

.newsletter-form input,
.search-form input,
.newsletter-form button {
  width: 100%;
}

.newsletter-form input,
.search-form input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  font: inherit;
  font-size: 0.72rem;
}

.newsletter-form button {
  border: 0;
  cursor: pointer;
}

.msg {
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.msg.success {
  background: rgba(22, 163, 74, 0.12);
  color: #166534;
}

.msg.error {
  background: rgba(220, 38, 38, 0.12);
  color: #991b1b;
}

.author-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  margin-top: 34px;
  background: var(--primary);
  width: 100%;
  inline-size: 100%;
  min-width: 100%;
  border-radius: 0;
  border: 0;
}

.author-strip--full {
  width: 100%;
  max-width: 100%;
  align-items: center;
}

.author-strip__bio p {
  margin: 6px 0 0;
  color: #214648;
  font-size: 0.66rem;
  line-height: 1.45;
}

.author-strip__bio h3 {
  font-size: 0.95rem;
  line-height: 1.1;
}

.author-strip--full .author-strip__bio {
  text-align: center;
  display: grid;
  align-content: center;
}

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

.related-card__image {
  aspect-ratio: 1.25 / 0.82;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.related-card__body {
  padding: 10px 0 0;
}

.card__thumb,
.related-card__image,
.feature-copy h3 a,
.card h3 a,
.related-card h3 a {
  display: block;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin: 22px 0 18px;
}

.search-form button {
  border: 0;
  cursor: pointer;
}

.page-sidebar__links,
.footer-links {
  flex-direction: column;
  gap: 12px;
}

.site-footer {
  margin-top: 28px;
  background: #f1efec;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.site-footer__top {
  grid-template-columns: 180px repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 28px 0 18px;
}

.site-footer__mark {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: linear-gradient(180deg, #d4491b, #b91c1c);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.site-footer__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: start;
}

.footer-brand__name {
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.15;
}

.footer-column h3 {
  font-size: 0.88rem;
  margin: 0 0 10px;
  white-space: nowrap;
}

.footer-column,
.footer-links a,
.site-footer__bottom {
  font-size: 0.68rem;
}

.pill {
  padding: 6px 10px;
  font-size: 0.64rem;
  line-height: 1;
}

.newsletter-card,
.article-sidebar__card,
.page-sidebar__card {
  padding: 14px 16px;
  border-radius: 0;
  background: #fff;
}

.newsletter-card p,
.page-sidebar__card p,
.article-sidebar__card p {
  font-size: 0.7rem;
  line-height: 1.55;
}

.newsletter-form__field label {
  font-size: 0.68rem;
  font-weight: 600;
  color: #5f5550;
}

.related-card__image img,
.card__thumb img,
.feature-media__image,
.page-cover img,
.category-card__cover img {
  object-fit: cover;
  object-position: center;
}

.article-taxonomy {
  gap: 8px;
}

.home-feature .kicker,
.feature-copy .kicker {
  font-size: 0.52rem;
  letter-spacing: 0.18em;
}

.section-title--compact {
  margin-bottom: 10px;
}

.section-title--compact h2 {
  font-size: 1rem;
  line-height: 1;
}

.site-footer__bottom {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 0 34px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-note {
  gap: 12px;
  align-items: center;
}

.footer-social {
  display: flex;
  gap: 14px;
  color: var(--accent-dark);
}

.footer-social a {
  font-size: 0.9rem;
  font-weight: 700;
}

.empty-state {
  padding: 48px 0 72px;
}

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .site-nav.open {
    display: flex;
    position: absolute;
    top: 84px;
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-cta {
    display: none;
  }

  .archive-grid,
  .article-shell,
  .page-grid,
  .article-top,
  .article-content-wrap,
  .site-footer__top,
  .home-feature,
  .feature-split,
  .feature-split--reverse {
    grid-template-columns: 1fr;
  }

  .archive-grid__cards,
  .grid-3,
  .related-grid,
  .categories-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-subnav__inner {
    grid-template-columns: repeat(2, minmax(0, max-content));
    row-gap: 8px;
    padding: 12px 0;
  }

  .social-rail,
  .toc-card {
    position: static;
  }

  .social-rail {
    flex-direction: row;
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 24px, 100%);
  }

  .brand__title {
    font-size: 1.3rem;
  }

  .brand__subtitle {
    font-size: 0.82rem;
  }

  .archive-grid__cards,
  .grid-3,
  .related-grid,
  .categories-row {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-title,
  .article-title,
  .section-title h2 {
    font-size: 2.4rem;
  }

  .home-feature__content,
  .feature-copy,
  .newsletter-card,
  .callout-copy,
  .page-sidebar__card,
  .article-sidebar__card,
  .author-strip__bio,
  .footer-column {
    padding: 24px;
  }

  .author-strip {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .search-form {
    grid-template-columns: 1fr;
  }
}

/* Archive/category and article — Figma frames 45:149 and 45:586 */
.archive-hero {
  padding: 0;
}

.archive-hero .cover-panel {
  height: 215px;
  min-height: 215px;
  max-height: 215px;
  margin: 0;
  background: linear-gradient(113.14deg, #00ffee 3.0244%, #d429b7 204.3%);
}

.archive-hero .cover-panel img {
  height: 215px;
}

.archive-hero .section-title {
  margin: 40px 0 0;
  padding-bottom: 24px;
  border-bottom: 1px solid #000;
}

.archive-hero .section-title h2 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 29px;
}

.archive-hero .page-lead {
  margin-top: 18px;
  color: #000;
  font-size: 16px;
}

.archive-grid {
  grid-template-columns: minmax(0, 948px) 272px;
  gap: 20px;
  align-items: start;
}

.archive-grid__cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 16px;
}

.archive-grid__cards .card {
  min-height: 304px;
  padding: 16px;
  border: 0;
  background: #f2f2f2;
}

.archive-grid__cards .card__thumb {
  height: 152px;
  aspect-ratio: auto;
}

.archive-grid__cards .card__label {
  margin: 12px 0 12px;
  padding: 2px 9px;
  background: #00ffee;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.archive-grid__cards .card h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.archive-grid__cards .card p,
.archive-grid__cards .card__cta {
  display: none;
}

.archive-grid__offer {
  min-height: 515px;
  padding: 24px;
  border: 0;
  background: #f2f2f2;
}

.archive-grid__offer h3 {
  margin: 8px 0;
  color: #000;
  font-size: 22px;
  line-height: 28px;
}

.article-hero {
  padding: 0;
}

.article-top {
  grid-template-columns: 741px 452px;
  gap: 42px;
}

.article-hero__media {
  height: 341px;
  min-height: 341px;
  max-height: 341px;
  border-radius: 0;
}

.article-hero__media img {
  height: 341px;
}

.article-top > div > .pill-row {
  margin-top: 36px;
}

.article-top .pill {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 14px;
}

.article-title {
  max-width: 833px;
  margin-top: 14px;
  color: #000;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 34px;
}

.article-lead {
  max-width: 833px;
  margin-top: 18px;
  color: #000;
  font-size: 16px;
  line-height: 24px;
}

.article-sidebar .newsletter-card,
.article-sidebar .article-sidebar__card {
  min-height: 335px;
  padding: 24px;
  border: 0;
  background: #f2f2f2;
}

.article-sidebar .kicker {
  color: #000;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
}

.article-sidebar .newsletter-card h3 {
  display: none;
}

.article-sidebar .newsletter-card p {
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

.article-sidebar .btn--primary {
  background: #00ffee;
  color: #000;
  box-shadow: none;
}

.article-content-wrap {
  grid-template-columns: 704px 332px;
  justify-content: space-between;
  gap: 0;
  margin-top: 36px;
}

.social-rail {
  position: absolute;
  top: 495px;
  left: calc(50% + 560px);
  z-index: 1;
  gap: 32px;
  color: #000;
}

.article-body {
  grid-column: 1;
}

.article-body p,
.article-body li,
.page-body p,
.page-body li {
  color: #000;
  font-size: 16px;
  line-height: 26px;
}

.article-body h2 {
  color: #000;
  font-size: 24px;
  line-height: 29px;
}

.toc-card {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: 24px;
  min-height: 300px;
  padding: 0 20px;
  border: 0;
  background: #f2f2f2;
}

.toc-card h3 {
  margin: 0 0 28px;
  color: #000;
  font-size: 22px;
  line-height: 31px;
}

.toc-list { gap: 18px; }
.toc-list a { color: #000; font-size: 14px; line-height: 21px; }
.toc-list a.is-active { border-left: 2px solid #00ffee; padding-left: 8px; }

.article-inline-offer {
  margin: 28px 0;
  padding: 16px;
  background: #f2f2f2;
}

.author-strip {
  margin-top: 48px;
  background: #00ffee;
}

.author-strip--full .author-strip__bio {
  display: block;
  max-width: 1053px;
  margin-left: auto;
  padding: 28px 0;
  text-align: left;
}

.author-strip__bio .kicker {
  color: #000;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}

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

@media (max-width: 1100px) {
  .archive-grid,
  .article-top,
  .article-content-wrap { grid-template-columns: 1fr; }
  .article-top { gap: 24px; }
  .social-rail { position: static; grid-column: 1; grid-row: auto; flex-direction: row; }
  .toc-card { grid-column: 1; grid-row: auto; position: static; }
}

@media (max-width: 720px) {
  .archive-hero .cover-panel,
  .archive-hero .cover-panel img { height: 180px; min-height: 180px; }
  .archive-grid__cards { grid-template-columns: 1fr; gap: 16px; }
  .article-hero__media,
  .article-hero__media img { height: 220px; min-height: 220px; }
  .article-title { font-size: 24px; line-height: 30px; }
  .article-content-wrap { margin-top: 28px; }
}

/* Home — Figma frame 47:891 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell,
body {
  background: #fff;
  color: #000;
}

.wrap {
  width: min(1240px, calc(100% - 40px));
}

.site-header {
  position: relative;
  background: #fff;
  border-bottom: 0;
  backdrop-filter: none;
}

.site-header__inner {
  min-height: 91px;
  grid-template-columns: 184px 1fr auto;
  gap: 24px;
}

.brand__mark {
  width: 184px;
  height: 90px;
  border-radius: 0;
  background: #000;
  font-size: 0;
}

.brand__logo {
  width: 184px;
  height: 90px;
}

.brand__title,
.footer-brand__name {
  display: none;
}

.site-nav {
  gap: 36px;
  font-size: 14px;
}

.site-nav a,
.site-subnav__inner a {
  color: #000;
}

.site-cta {
  padding: 10px 20px;
  background: #00ffee;
  color: #000;
  font-weight: 500;
  font-size: 14px;
}

.site-subnav {
  height: 53px;
  border-top: 1px solid #e9e9e9;
  border-bottom: 0;
  background: #fff;
}

.site-subnav__inner {
  min-height: 53px;
  gap: 45px;
}

.site-subnav__inner a {
  font-size: 14px;
}

.home-cover {
  padding: 0;
}

.home-cover__media {
  position: relative;
  display: block;
  height: 215px;
  overflow: hidden;
  background: linear-gradient(128.42deg, #00ffee 3.0244%, #d429b7 204.3%);
}

.home-cover__media img,
.home-highlight__media img,
.home-post-card__media img,
.home-category-card img,
.home-editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-section {
  padding: 0;
  margin-top: 65px;
}

.home-section--feature {
  margin-top: 40px;
}

.home-section__title {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 600;
  line-height: 29px;
}

.home-highlight,
.home-editorial {
  display: grid;
  grid-template-columns: 610px minmax(0, 1fr);
  gap: 20px;
}

.home-highlight {
  min-height: 241px;
}

.home-highlight__media,
.home-editorial__media {
  position: relative;
  display: block;
  min-height: 241px;
  overflow: hidden;
  background: linear-gradient(109.19deg, #00ffee 3.0244%, #d429b7 204.3%);
}

.home-cover__media img,
.home-highlight__media img,
.home-post-card__media img,
.home-editorial__media img,
.home-category-card img {
  position: absolute;
  inset: 0;
  opacity: 1;
}

.home-placeholder {
  display: none;
}

.home-highlight__content,
.home-editorial__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.home-label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  color: #0049b6;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.home-post-card .home-label {
  background: #00ffee;
  color: #000;
  font-size: 14px;
  font-weight: 400;
}

.home-highlight h3,
.home-editorial h3 {
  margin: 17px 0 0;
  color: #000;
  font-size: 22px;
  font-weight: 600;
  line-height: 29px;
}

.home-highlight p,
.home-editorial p {
  max-width: 610px;
  margin: 12px 0 0;
  color: #000;
  font-size: 18px;
  line-height: 24px;
}

.home-text-link {
  margin-top: auto;
  color: #0049b6;
  font-size: 18px;
  font-weight: 500;
  line-height: 28.272px;
  text-decoration: underline;
}

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

.home-post-card {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 16px;
  background: #f2f2f2;
}

.home-post-card__media {
  position: relative;
  display: block;
  height: 175px;
  overflow: hidden;
  background: linear-gradient(106.24deg, #00ffee 3.0244%, #d429b7 204.3%);
}

.home-post-card__meta {
  display: flex;
  min-height: 24px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.home-post-card .home-text-link {
  margin: 0;
  justify-self: end;
  padding: 0 10px;
  font-size: 18px;
}

.home-section--categories {
  overflow: hidden;
}

.home-categories__heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.home-carousel__controls {
  display: flex;
  gap: 14px;
}

.home-carousel__controls button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #00ffee;
  color: #0049b6;
  font-size: 25px;
  font-weight: 400;
  line-height: 23px;
  cursor: pointer;
}

.home-carousel {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.home-carousel::-webkit-scrollbar { display: none; }

.home-carousel__track {
  display: flex;
  width: max-content;
  gap: 16px;
}

.home-category-card {
  position: relative;
  display: grid;
  width: 597px;
  height: 192px;
  overflow: hidden;
  place-items: center;
  background: linear-gradient(113.14deg, #00ffee 3.0244%, #d429b7 204.3%);
  scroll-snap-align: start;
}

.home-category-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 24px;
  color: #000;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
}

.home-section--editorial {
  margin-top: 65px;
}

.home-editorial--reverse {
  grid-template-columns: minmax(0, 1fr) 610px;
}

.home-editorial--reverse .home-editorial__media { order: -1; }

.home-editorial__content {
  min-height: 241px;
}

.site-footer {
  margin-top: 40px;
  background: #f2f2f2;
  border: 0;
}

.site-footer__top {
  grid-template-columns: 184px repeat(3, minmax(0, 1fr));
  gap: 50px;
  min-height: 330px;
  padding: 42px 0;
}

.site-footer__mark {
  width: 184px;
  height: 90px;
  border-radius: 0;
  background: #000;
  font-size: 0;
}

.footer-column { padding: 0; }
.footer-column h3 { margin: 0 0 7px; color: #000; font-size: 20px; line-height: 28px; }
.footer-links { gap: 5px; }
.footer-column, .footer-links a, .site-footer__bottom { color: #000; font-size: 14px; }
.footer-links a { font-weight: 400; }
.site-footer__bottom { padding: 22px 0 34px; }

@media (max-width: 1100px) {
  .site-header__inner { grid-template-columns: 184px 1fr auto; }
  .site-nav.open { top: 74px; }
  .home-highlight, .home-editorial, .home-editorial--reverse { grid-template-columns: 1fr 1fr; }
  .home-highlight__media, .home-editorial__media { min-height: 230px; }
  .home-category-card { width: min(70vw, 597px); }
  .site-footer__top { grid-template-columns: 184px repeat(3, minmax(0, 1fr)); gap: 24px; }
}

@media (max-width: 720px) {
  .wrap { width: min(100% - 32px, 100%); }
  .site-header__inner { min-height: 70px; grid-template-columns: 88px 1fr auto; }
  .brand__mark { width: 88px; height: 70px; }
  .site-subnav { height: auto; overflow-x: auto; }
  .site-subnav__inner { width: max-content; min-height: 45px; grid-template-columns: repeat(4, max-content); padding: 0; gap: 24px; }
  .site-nav.open { top: 60px; }
  .home-cover__media { height: 160px; }
  .home-section, .home-section--feature, .home-section--editorial { margin-top: 40px; }
  .home-section__title { margin-bottom: 18px; }
  .home-highlight, .home-editorial, .home-editorial--reverse { grid-template-columns: 1fr; gap: 16px; }
  .home-highlight__media, .home-editorial__media { min-height: 190px; }
  .home-highlight__content, .home-editorial__content { min-height: auto; }
  .home-highlight h3, .home-editorial h3 { margin-top: 10px; font-size: 18px; line-height: 25px; }
  .home-highlight p, .home-editorial p { font-size: 14px; }
  .home-text-link { margin-top: 18px; }
  .home-post-grid { grid-template-columns: 1fr; }
  .home-post-card__media { height: auto; aspect-ratio: 370 / 175; }
  .home-category-card { width: calc(100vw - 48px); height: 160px; }
  .home-carousel__controls { display: none; }
  .site-footer__top { grid-template-columns: 1fr; gap: 28px; min-height: 0; padding: 32px 0; }
  .site-footer__mark { width: 88px; height: 70px; }
  .footer-column h3 { font-size: 18px; }
}

/* Tablet: as categorias ocupam duas linhas; deixa a barra acompanhar a altura
   do conteúdo para que a segunda linha não avance sobre o banner. */
 (min-width: 721px) and (max-width: 1100px) {
  .site-subnav {
    height: auto;
  }

  .site-subnav__inner {
    grid-template-columns: repeat(2, minmax(0, max-content));
    column-gap: 45px;
    row-gap: 8px;
    padding: 12px 0;
  }
}
