@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Source+Serif+4:wght@600;700&display=optional");

:root {
  --cga-ink: #101c24;
  --cga-ink-soft: #253746;
  --cga-panel: #17262f;
  --cga-panel-2: #223948;
  --cga-olive: #2f463c;
  --cga-paper: #f6f1e8;
  --cga-paper-2: #e9ddcf;
  --cga-line: rgba(11, 23, 32, 0.12);
  --cga-accent: #9d5e39;
  --cga-accent-2: #d8a46b;
  --cga-text: #253645;
  --cga-text-soft: #637282;
  --cga-radius: 28px;
  --cga-shell: min(1240px, calc(100vw - 40px));
  --cga-shadow: 0 24px 80px rgba(7, 15, 20, 0.10);
  --cga-header-height: 84px;
}

body.cga-brand {
  background:
    radial-gradient(circle at top left, rgba(157, 94, 57, 0.14), transparent 22%),
    radial-gradient(circle at top right, rgba(47, 70, 60, 0.10), transparent 24%),
    linear-gradient(180deg, #f7f3ee 0%, #f3efe8 42%, #ece4d8 100%);
  color: var(--cga-text);
  font-family: "IBM Plex Sans", sans-serif;
}

body.cga-brand h1,
body.cga-brand h2,
body.cga-brand h3,
body.cga-brand h4,
body.cga-brand .entry-title {
  font-family: "Source Serif 4", serif;
  letter-spacing: 0;
}

body.cga-brand .cga-home-hero h1,
body.cga-brand .entry-hero h1,
body.cga-brand .entry-title {
  color: var(--cga-ink);
}

body.single-post.gd-premium-ui .entry-hero.post-hero-section .entry-meta,
body.single-post.gd-premium-ui .entry-hero.post-hero-section .entry-meta a,
body.single-post.gd-premium-ui .entry-hero.post-hero-section .entry-meta .meta-label,
body.single-post.gd-premium-ui .entry-hero.post-hero-section .entry-meta .posted-by,
body.single-post.gd-premium-ui .entry-hero.post-hero-section .entry-meta .posted-on,
body.single-post.gd-premium-ui .entry-hero.post-hero-section .entry-meta .entry-date {
  color: var(--cga-ink);
  text-shadow: none;
}

.cga-shell {
  width: var(--cga-shell);
  margin-inline: auto;
}

.cga-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(247, 243, 238, 0.88);
  border-bottom: 1px solid rgba(11, 23, 32, 0.08);
}

.cga-site-header__inner {
  min-height: var(--cga-header-height);
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.cga-brandmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cga-ink);
}

.cga-brandmark__icon,
.cga-site-footer__logo {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(11, 23, 32, 0.08);
}

.cga-brandmark__icon svg,
.cga-site-footer__logo svg {
  width: 46px;
  height: 46px;
}

.cga-brandmark__copy {
  display: grid;
  gap: 2px;
}

.cga-brandmark__title {
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.05;
  max-width: 10ch;
  text-wrap: balance;
}

.cga-brandmark__meta {
  font-size: 0.72rem;
  color: var(--cga-text-soft);
  white-space: nowrap;
}

.cga-logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--cga-paper);
  font-family: "Source Serif 4", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.cga-site-nav__list,
.cga-mobile-nav__list,
.cga-site-nav__sublist,
.cga-mobile-nav__sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cga-site-nav__list {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.cga-site-nav__item {
  position: relative;
}

.cga-site-nav__item > a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 11px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--cga-ink);
  font-size: 0.83rem;
  font-weight: 600;
}

.cga-site-nav__item.is-current > a,
.cga-site-nav__item > a:hover {
  background: rgba(17, 33, 45, 0.07);
}

.cga-site-nav__sublist {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 190px;
  padding: 10px;
  border: 1px solid rgba(11, 23, 32, 0.08);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.98);
  box-shadow: var(--cga-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cga-site-nav__item:hover .cga-site-nav__sublist {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cga-site-nav__item:focus-within .cga-site-nav__sublist {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cga-site-nav__sublist a {
  display: block;
  padding: 9px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--cga-text);
}

.cga-site-nav__item.has-children > a {
  padding-right: 8px;
}

.cga-site-nav__item.has-children > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.7;
}

.cga-site-nav__item.has-children:hover > a::after,
.cga-site-nav__item.has-children:focus-within > a::after {
  transform: translateY(0) rotate(225deg);
}

.cga-site-nav__sublist a:hover {
  background: rgba(187, 134, 81, 0.11);
}

.cga-site-header__tools {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.cga-site-search input {
  width: 168px;
  height: 40px;
  border: 1px solid rgba(11, 23, 32, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  padding: 0 15px;
  color: var(--cga-ink);
  font-size: 0.82rem;
}

.cga-site-header__cta,
.cga-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.cga-site-header__cta,
.cga-button--solid {
  background: var(--cga-ink);
  color: #fff;
}

.cga-site-header__cta {
  font-size: 0.82rem;
}

.cga-button--ghost {
  border: 1px solid rgba(11, 23, 32, 0.15);
  color: var(--cga-ink);
}

.cga-mobile-nav {
  display: none;
}

.cga-homepage {
  padding-bottom: 72px;
}

.cga-home-hero {
  padding: 44px 0 28px;
}

.cga-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: stretch;
}

.cga-home-hero__intro,
.cga-home-hero__feature .cga-card,
.cga-home-taxonomy__inner,
.cga-home-world,
.cga-home-radar,
.cga-home-section,
.cga-site-footer {
  position: relative;
}

.cga-home-hero__intro {
  padding: 42px;
  border: 1px solid rgba(11, 23, 32, 0.08);
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(255,255,255,0.76), rgba(255,255,255,0.54));
  box-shadow: var(--cga-shadow);
}

.cga-home-hero__eyebrow,
.cga-home-radar__eyebrow,
.cga-home-taxonomy__lead p,
.cga-home-section__eyebrow,
.cga-home-world__eyebrow,
.cga-site-footer__eyebrow {
  margin: 0 0 14px;
  color: var(--cga-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cga-home-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 0.94;
  color: var(--cga-ink);
}

.cga-home-hero__lede,
.cga-home-radar__head p,
.cga-home-world__head p,
.cga-home-section__head p,
.cga-site-footer__text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--cga-text);
}

.cga-home-hero__bio {
  margin-top: 26px;
  display: grid;
  gap: 12px;
  color: var(--cga-text-soft);
}

.cga-home-hero__actions,
.cga-home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cga-home-hero__actions {
  margin-top: 28px;
}

.cga-home-hero__stats {
  margin-top: 34px;
}

.cga-home-hero--cover {
  padding: 18px 0 0;
}

.cga-home-hero--cover .cga-home-hero__frame {
  position: relative;
  min-height: 620px;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 23, 32, 0.16) 0%, rgba(11, 23, 32, 0.38) 36%, rgba(11, 23, 32, 0.76) 100%),
    var(--cga-home-hero-image, linear-gradient(135deg, #13222d, #0b1720)) center center / cover no-repeat;
  box-shadow: none;
}

.cga-home-hero--cover .cga-home-hero__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(11, 23, 32, 0.08) 40%, rgba(11, 23, 32, 0.48) 100%);
  pointer-events: none;
}

.cga-home-hero--cover .cga-home-hero__frame::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -1px;
  height: 120px;
  background: linear-gradient(180deg, rgba(11, 23, 32, 0) 0%, rgba(11, 23, 32, 0) 18%, var(--cga-paper) 19%);
  border-top-left-radius: 52% 100%;
  border-top-right-radius: 52% 100%;
  pointer-events: none;
}

.cga-home-hero--cover .cga-home-hero__panel {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 28px));
  margin: 148px auto 0;
  padding: 26px 28px 28px;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.cga-home-hero--cover .cga-home-hero__eyebrow,
.cga-home-hero--cover .cga-home-hero__feature-kicker {
  color: rgba(255, 255, 255, 0.86);
}

.cga-home-hero--cover .cga-home-hero__lede,
.cga-home-hero--cover .cga-home-hero__bio {
  color: rgba(255, 255, 255, 0.88);
}

.cga-home-hero--cover .cga-home-hero__bio strong,
.cga-home-hero--cover .cga-home-hero h1 {
  color: #fff;
}

.cga-home-hero--cover .cga-home-hero h1 {
  text-align: center;
  max-width: 10ch;
  margin-inline: auto;
}

.cga-home-hero--cover .cga-home-hero__lede {
  max-width: 720px;
  margin: 18px auto 0;
  text-align: center;
}

.cga-home-hero--cover .cga-home-hero__stats {
  margin-top: 22px;
}

.cga-home-hero--cover .cga-home-hero__bio {
  margin-top: 18px;
  text-align: center;
}

.cga-home-hero--cover .cga-home-hero__sectors {
  justify-content: center;
}

.cga-home-hero--cover .cga-home-hero__sectors span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.cga-home-hero--cover .cga-home-hero__actions .cga-button--ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.cga-home-hero__feature-kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cga-stat {
  min-width: 150px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(11, 23, 32, 0.04);
  border: 1px solid rgba(11, 23, 32, 0.06);
}

.cga-stat strong {
  display: block;
  color: var(--cga-ink);
  font-size: 1.3rem;
}

.cga-stat span {
  font-size: 0.84rem;
  color: var(--cga-text-soft);
}

.cga-card {
  display: grid;
  gap: 0;
  border-radius: var(--cga-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(11, 23, 32, 0.08);
  box-shadow: var(--cga-shadow);
}

.cga-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cga-panel), var(--cga-panel-2));
}

.cga-card--hero .cga-card__media,
.cga-card--feature .cga-card__media {
  aspect-ratio: 4 / 3;
}

.cga-card__media img,
.cga-card__fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cga-card__fallback {
  background: linear-gradient(160deg, rgba(11, 23, 32, 0.92), rgba(34, 54, 70, 0.7));
}

.cga-card__body {
  padding: 22px 22px 24px;
}

.cga-card__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  text-decoration: none;
  color: var(--cga-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cga-card__title {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.12;
}

.cga-card__title a {
  color: var(--cga-ink);
  text-decoration: none;
}

.cga-card__meta,
.cga-card__excerpt,
.cga-world-card span,
.cga-site-footer__bottom p,
.cga-site-footer__menu-group a {
  color: var(--cga-text-soft);
}

.cga-card__meta {
  margin: 12px 0 0;
  font-size: 0.84rem;
}

.cga-card__excerpt {
  margin: 14px 0 0;
  line-height: 1.7;
}

.cga-card--compact {
  grid-template-columns: 160px 1fr;
}

.cga-card--compact .cga-card__media {
  aspect-ratio: auto;
  min-height: 100%;
}

.cga-card--compact .cga-card__body {
  padding: 18px 18px 20px;
}

.cga-card--compact .cga-card__title {
  font-size: 1.1rem;
}

.cga-card--hero {
  height: 100%;
}

.cga-card--hero .cga-card__body {
  display: grid;
  gap: 0;
  padding: 28px;
}

.cga-card--hero .cga-card__title {
  font-size: clamp(1.85rem, 2.5vw, 2.6rem);
}

.cga-home-radar,
.cga-home-world {
  padding: 24px 0 0;
}

.cga-home-radar__head,
.cga-home-world__head,
.cga-home-section__head {
  display: grid;
  grid-template-columns: minmax(0, 320px) 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.cga-home-radar__head h2,
.cga-home-world__head h2,
.cga-home-section__head h2,
.cga-home-taxonomy__lead h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--cga-ink);
}

.cga-home-radar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.cga-home-taxonomy {
  padding: 26px 0 8px;
}

.cga-home-taxonomy__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

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

.cga-home-taxonomy__chip,
.cga-world-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(11, 23, 32, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  box-shadow: var(--cga-shadow);
}

.cga-home-taxonomy__chip strong,
.cga-world-card strong {
  color: var(--cga-ink);
  font-size: 1.08rem;
}

.cga-home-taxonomy__chip span {
  color: var(--cga-text-soft);
  line-height: 1.6;
}

.cga-home-sections {
  display: grid;
  gap: 34px;
  padding-top: 34px;
}

.cga-home-section {
  padding: 32px;
  border: 1px solid rgba(11, 23, 32, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--cga-shadow);
}

.cga-home-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 20px;
}

.cga-home-section__stack {
  display: grid;
  gap: 16px;
}

.cga-home-section__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(11, 23, 32, 0.12);
  border-radius: 18px;
  color: var(--cga-ink);
  text-decoration: none;
  font-weight: 600;
}

.cga-home-world__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cga-world-card__count {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cga-accent);
}

.cga-site-footer {
  margin-top: 48px;
  padding: 30px 0 20px;
  background:
    linear-gradient(180deg, rgba(14, 24, 32, 0.98), rgba(20, 33, 41, 0.98)),
    linear-gradient(180deg, rgba(187, 134, 81, 0.12), rgba(187, 134, 81, 0));
  color: rgba(255, 255, 255, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cga-site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 24px;
}

body.cga-brand .cga-site-footer__eyebrow {
  color: #d9a16f;
}

body.cga-brand .cga-site-footer__title {
  margin: 10px 0 6px;
  font-size: 1.1rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.88);
}

body.cga-brand .cga-site-footer__text {
  color: rgba(255, 255, 255, 0.68);
}

.cga-site-footer__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.cga-site-footer__stats div {
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.cga-site-footer__stats strong {
  display: block;
  color: #fff;
}

.cga-site-footer__stats span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.58);
}

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

body.cga-brand .cga-site-footer__menu-group h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.92rem;
}

.cga-site-footer__menu-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

body.cga-brand .cga-site-footer__menu-group a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

body.cga-brand .cga-site-footer__menu-group a:hover {
  color: #fff;
}

.cga-site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

body.cga-brand .cga-site-footer__bottom p {
  color: rgba(255, 255, 255, 0.56);
}

body.cga-brand .entry-content-wrap,
body.cga-brand .post-navigation-wrap,
body.cga-brand .comments-area {
  border-radius: 26px;
  border-color: rgba(11, 23, 32, 0.08);
  box-shadow: 0 18px 60px rgba(7, 15, 20, 0.08);
}

@media (max-width: 1180px) {
  .cga-site-header__inner,
  .cga-home-hero__grid,
  .cga-home-section__grid,
  .cga-site-footer__grid,
  .cga-home-taxonomy__inner,
  .cga-home-radar__head,
  .cga-home-world__head,
  .cga-home-section__head {
    grid-template-columns: 1fr;
  }

  .cga-site-nav,
  .cga-site-header__tools {
    display: none;
  }

  .cga-mobile-nav {
    display: block;
    justify-self: end;
  }

  .cga-mobile-nav > summary {
    display: grid;
    gap: 4px;
    width: 48px;
    cursor: pointer;
    list-style: none;
  }

  .cga-mobile-nav > summary::-webkit-details-marker {
    display: none;
  }

  .cga-mobile-nav > summary span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: var(--cga-ink);
  }

  .cga-mobile-nav__panel {
    position: absolute;
    right: 20px;
    top: calc(100% + 10px);
    width: min(360px, calc(100vw - 40px));
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 251, 246, 0.98);
    box-shadow: var(--cga-shadow);
    border: 1px solid rgba(11, 23, 32, 0.08);
  }

  .cga-mobile-nav__lead {
    margin-bottom: 14px;
  }

  .cga-mobile-nav__eyebrow {
    margin: 0 0 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cga-accent);
  }

  .cga-mobile-nav__title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cga-ink);
  }

  .cga-mobile-nav__list,
  .cga-mobile-nav__sublist {
    display: grid;
    gap: 8px;
  }

  .cga-mobile-nav__item > a,
  .cga-mobile-nav__sublist a,
  .cga-mobile-nav__cta {
    display: block;
    padding: 12px 14px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--cga-ink);
    background: rgba(11, 23, 32, 0.04);
  }

  .cga-mobile-nav__sublist {
    margin-top: 8px;
    padding-left: 14px;
  }

  .cga-mobile-nav__cta {
    margin-top: 12px;
    background: var(--cga-ink);
    color: #fff;
    text-align: center;
  }

  .cga-home-radar__grid,
  .cga-home-taxonomy__chips,
  .cga-home-world__grid,
  .cga-site-footer__menus,
  .cga-site-footer__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1320px) {
  .cga-brandmark__meta {
    display: none;
  }

  .cga-site-search input {
    width: 146px;
  }
}

@media (max-width: 767px) {
  :root {
    --cga-shell: calc(100vw - 24px);
    --cga-header-height: 82px;
  }

  .cga-site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .cga-brandmark__icon {
    width: 40px;
    height: 40px;
  }

  .cga-brandmark__icon svg {
    width: 40px;
    height: 40px;
  }

  .cga-brandmark__title {
    font-size: 0.82rem;
  }

  .cga-home-hero,
  .cga-home-radar,
  .cga-home-world {
    padding-top: 20px;
  }

  .cga-home-hero__intro,
  .cga-home-section {
    padding: 24px;
    border-radius: 24px;
  }

  .cga-home-hero h1,
  .cga-home-radar__head h2,
  .cga-home-world__head h2,
  .cga-home-section__head h2,
  .cga-home-taxonomy__lead h2,
  .cga-site-footer__title {
    font-size: 2.2rem;
  }

  .cga-card--compact {
    grid-template-columns: 1fr;
  }

  .cga-home-radar__grid,
  .cga-home-taxonomy__chips,
  .cga-home-world__grid,
  .cga-site-footer__menus,
  .cga-site-footer__stats {
    grid-template-columns: 1fr;
  }

  .cga-site-footer__bottom {
    flex-direction: column;
  }
}

.cga-homepage {
  padding-bottom: 84px;
}

.cga-home-hero {
  padding: 18px 0 14px;
}

.cga-home-hero__grid {
  display: grid;
  gap: 18px;
}

.cga-home-hero__intro,
.cga-home-hero__feature,
.cga-home-about,
.cga-home-featured,
.cga-home-destinations,
.cga-home-latest {
  position: relative;
}

.cga-home-hero__intro {
  display: grid;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(11, 23, 32, 0.09);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 243, 235, 0.82)),
    linear-gradient(135deg, rgba(187, 134, 81, 0.08), rgba(11, 23, 32, 0));
  box-shadow: 0 24px 72px rgba(7, 15, 20, 0.10);
}

.cga-home-hero__identity {
  display: grid;
  gap: 18px;
}

.cga-home-hero__portrait {
  width: min(100%, 168px);
  aspect-ratio: 1 / 1.08;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(11, 23, 32, 0.08);
  box-shadow: 0 18px 46px rgba(7, 15, 20, 0.14);
  background: linear-gradient(160deg, #13222d, #0c1820);
}

.cga-home-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cga-home-hero__identity-copy {
  display: grid;
  gap: 10px;
}

.cga-home-hero__feature {
  display: grid;
  gap: 14px;
}

.cga-home-hero__feature-head {
  display: grid;
  gap: 6px;
}

.cga-home-hero__feature-head h2 {
  margin: 0;
  color: var(--cga-ink);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.06;
  text-wrap: balance;
}

.cga-home-hero__trail {
  display: grid;
  gap: 12px;
}

.cga-home-hero__eyebrow {
  margin: 0;
  color: var(--cga-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cga-home-hero h1 {
  margin: 0;
  color: var(--cga-ink);
  font-size: clamp(2.6rem, 8.8vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.cga-home-hero__lede {
  margin: 0;
  color: var(--cga-text);
  font-size: 1rem;
  line-height: 1.82;
  max-width: 64ch;
}

.cga-home-hero__bio {
  display: grid;
  gap: 14px;
  color: var(--cga-text);
  line-height: 1.78;
}

.cga-home-hero__bio p {
  margin: 0;
}

.cga-home-hero__sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cga-home-hero__sectors span,
.cga-home-about__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 23, 32, 0.10);
  background: rgba(255, 255, 255, 0.62);
  color: var(--cga-ink);
  font-size: 0.8rem;
  font-weight: 600;
}

.cga-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.cga-home-featured,
.cga-home-quicklinks,
.cga-home-destinations,
.cga-home-about,
.cga-home-latest {
  padding-top: 20px;
}

.cga-home-section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.cga-home-section__head--tight {
  max-width: 980px;
}

.cga-home-section__eyebrow {
  margin: 0;
  color: var(--cga-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cga-home-section__head h2,
.cga-home-about h2 {
  margin: 0;
  color: var(--cga-ink);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.02;
  text-wrap: balance;
}

.cga-home-section__head p,
.cga-home-about p {
  margin: 0;
  color: var(--cga-text);
  line-height: 1.78;
}

.cga-home-featured__grid,
.cga-home-latest__grid {
  display: grid;
  gap: 14px;
}

.cga-home-quicklinks__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cga-home-quicklinks__item {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(11, 23, 32, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--cga-ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.cga-home-quicklinks__item:hover {
  background: rgba(255, 255, 255, 0.96);
}

.cga-home-destination-grid {
  display: grid;
  gap: 14px;
}

.cga-destination-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(11, 23, 32, 0.09);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 24px 72px rgba(7, 15, 20, 0.10);
  overflow: hidden;
  min-height: 220px;
  align-content: end;
}

.cga-destination-card strong {
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 0.96;
}

.cga-destination-card__eyebrow {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cga-destination-card__lede,
.cga-destination-card__latest {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  max-width: 28ch;
}

.cga-destination-card__latest {
  padding-top: 8px;
  font-weight: 700;
}

.cga-destination-card--turkiye {
  background:
    linear-gradient(160deg, rgba(13, 34, 46, 0.84), rgba(13, 34, 46, 0.60)),
    url('https://cokgezenadam.com/wp-content/uploads/2017/05/Goynuk-Zafer-Kulesi.jpg') center/cover no-repeat;
}

.cga-destination-card--dunya {
  background:
    linear-gradient(160deg, rgba(27, 48, 68, 0.84), rgba(27, 48, 68, 0.60)),
    url('https://cokgezenadam.com/wp-content/uploads/2014/04/Google-TR-18-e1482520137960.jpg') center/cover no-repeat;
}

.cga-home-about__grid {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(11, 23, 32, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 24px 72px rgba(7, 15, 20, 0.10);
}

.cga-home-about__photo {
  aspect-ratio: 1 / 1.08;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(160deg, #13222d, #0c1820);
}

.cga-home-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cga-home-about__content {
  display: grid;
  gap: 14px;
}

.cga-home-about__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cga-home-about__chips span {
  background: rgba(19, 34, 45, 0.06);
}

@media (min-width: 768px) {
  .cga-home-hero__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cga-home-featured__grid,
  .cga-home-latest__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cga-home-destination-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cga-home-about__grid {
    grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1.15fr);
    align-items: stretch;
  }
}

@media (min-width: 1024px) {
  .cga-home-hero {
    padding: 26px 0 18px;
  }

  .cga-home-hero--cover .cga-home-hero__frame {
    min-height: 640px;
  }

  .cga-home-featured__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cga-home-latest__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cga-destination-card {
    min-height: 260px;
  }
}

@media (max-width: 1023px) {
  .cga-home-hero--cover .cga-home-hero__frame {
    min-height: 520px;
  }

  .cga-home-hero--cover .cga-home-hero__panel {
    margin-top: 116px;
    min-height: 430px;
  }
}

@media (max-width: 767px) {
  .cga-home-hero--cover {
    padding-top: 14px;
  }

  .cga-home-hero--cover .cga-home-hero__frame {
    min-height: 460px;
    border-radius: 24px;
  }

  .cga-home-hero--cover .cga-home-hero__panel {
    width: calc(100% - 20px);
    margin-top: 96px;
    padding: 18px;
    min-height: 390px;
    border-radius: 22px;
  }

  .cga-home-hero--cover .cga-home-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cga-home-hero--editorial {
  padding: 22px 0 18px;
}

.cga-home-hero--editorial .cga-home-hero__frame {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(11, 23, 32, 0.08);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 239, 228, 0.94)),
    radial-gradient(circle at top right, rgba(157, 94, 57, 0.10), transparent 32%),
    radial-gradient(circle at bottom left, rgba(47, 70, 60, 0.10), transparent 26%);
  box-shadow: 0 26px 84px rgba(7, 15, 20, 0.12);
}

.cga-home-hero--editorial .cga-home-hero__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0) 18%),
    linear-gradient(180deg, rgba(16, 28, 36, 0.03), rgba(16, 28, 36, 0) 28%);
  pointer-events: none;
}

.cga-home-hero--editorial .cga-home-hero__intro,
.cga-home-hero--editorial .cga-home-hero__rail {
  position: relative;
  z-index: 1;
}

.cga-home-hero--editorial .cga-home-hero__intro {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(11, 23, 32, 0.07);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.cga-home-hero--editorial .cga-home-hero__eyebrow,
.cga-home-hero--editorial .cga-home-hero__feature-kicker {
  color: var(--cga-accent);
}

.cga-home-hero--editorial .cga-home-hero__lede,
.cga-home-hero--editorial .cga-home-hero__bio {
  color: var(--cga-text);
}

.cga-home-hero--editorial .cga-home-hero h1 {
  max-width: 9ch;
}

.cga-home-hero--editorial .cga-home-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cga-home-stat {
  display: grid;
  gap: 4px;
  min-height: 98px;
  padding: 16px;
  border: 1px solid rgba(11, 23, 32, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 236, 226, 0.92));
}

.cga-home-stat strong {
  color: var(--cga-ink);
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  line-height: 1;
}

.cga-home-stat span {
  color: var(--cga-text-soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

.cga-home-hero--editorial .cga-home-hero__bio {
  margin-top: 0;
}

.cga-home-hero--editorial .cga-home-hero__sectors span {
  background: rgba(16, 28, 36, 0.05);
}

.cga-home-hero--editorial .cga-home-hero__actions .cga-button--solid {
  background: var(--cga-ink);
  color: #fff;
}

.cga-home-hero--editorial .cga-home-hero__actions .cga-button--ghost {
  border-color: rgba(11, 23, 32, 0.12);
  background: rgba(255, 255, 255, 0.58);
}

.cga-home-hero__rail {
  display: grid;
  gap: 12px;
  align-content: start;
}

.cga-home-hero__rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 6px;
  color: var(--cga-text-soft);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cga-home-hero__rail-list {
  display: grid;
  gap: 12px;
}

.cga-home-hero--editorial .cga-card--compact {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  border: 1px solid rgba(11, 23, 32, 0.07);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.cga-home-hero--editorial .cga-card--compact .cga-card__body {
  padding: 14px;
}

.cga-home-hero--editorial .cga-card--compact .cga-card__media {
  aspect-ratio: 16 / 9;
  min-height: 168px;
}

.cga-home-hero--editorial .cga-card__title a {
  color: var(--cga-ink);
}

.cga-home-hero--editorial .cga-card__title {
  font-size: 1.02rem;
  line-height: 1.18;
}

.cga-home-hero--editorial .cga-card__meta,
.cga-home-hero--editorial .cga-card__eyebrow {
  color: var(--cga-text-soft);
}

.cga-home-destination-grid .cga-destination-card--turkiye {
  background:
    linear-gradient(160deg, rgba(20, 34, 42, 0.78), rgba(20, 34, 42, 0.56)),
    url('https://cokgezenadam.com/wp-content/uploads/2017/05/Goynuk-Zafer-Kulesi.jpg') center/cover no-repeat;
}

.cga-home-destination-grid .cga-destination-card--dunya {
  background:
    linear-gradient(160deg, rgba(47, 70, 60, 0.82), rgba(47, 70, 60, 0.58)),
    url('https://cokgezenadam.com/wp-content/uploads/2014/04/Google-TR-18-e1482520137960.jpg') center/cover no-repeat;
}

@media (min-width: 768px) {
  .cga-home-hero--editorial .cga-home-hero__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .cga-home-hero--editorial .cga-home-hero__frame {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 18px;
    padding: 22px;
    min-height: 0;
    align-items: start;
  }

  .cga-home-hero--editorial .cga-home-hero__intro {
    padding: 28px;
  }

  .cga-home-hero--editorial .cga-home-hero__rail {
    align-self: start;
    padding-top: 4px;
  }
}

@media (max-width: 1023px) {
  .cga-home-hero--editorial .cga-home-hero__frame {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .cga-home-hero--editorial {
    padding-top: 14px;
  }

  .cga-home-hero--editorial .cga-home-hero__frame {
    padding: 14px;
    border-radius: 24px;
  }

  .cga-home-hero--editorial .cga-home-hero__intro {
    padding: 18px;
  }

  .cga-home-hero--editorial .cga-home-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
