:root {
  --ink: #050505;
  --ink-soft: #1a0f06;
  --paper: #2b1708;
  --paper-strong: #fff4bd;
  --muted: #705d36;
  --line: rgba(235, 187, 55, 0.32);
  --green: #d39916;
  --green-dark: #8a4e05;
  --green-soft: #f2c53d;
  --gold: #f6ce4d;
  --red: #97400d;
  --radius: 22px;
  --shadow: 0 18px 55px rgba(7, 17, 31, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: #fff1b5;
  background:
    radial-gradient(circle at 8% 0%, rgba(246, 206, 77, 0.14), transparent 24rem),
    var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 1;
  background-image:
    radial-gradient(circle at 40px 40px, transparent 0 22px, rgba(246, 206, 77, 0.045) 23px 26px, transparent 27px),
    radial-gradient(circle at 0 0, transparent 0 31px, rgba(246, 206, 77, 0.04) 32px 35px, transparent 36px);
  background-size: 80px 80px;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  border-bottom: 2px solid #ba830f;
  background: rgba(2, 2, 2, 0.96);
  backdrop-filter: blur(16px);
}

.community-slot {
  position: relative;
  z-index: 20;
  padding-block: 0.85rem;
  border-bottom: 1px solid rgba(246, 206, 77, 0.28);
  background:
    linear-gradient(90deg, rgba(45, 23, 7, 0.96), rgba(8, 6, 3, 0.98), rgba(45, 23, 7, 0.96));
}

.community-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(246, 206, 77, 0.5);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.community-panel__title {
  display: grid;
  line-height: 1.2;
}

.community-panel__title span {
  color: #d7b449;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.community-panel__title strong {
  margin-top: 0.2rem;
  color: #fff1aa;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.community-panel__links {
  display: flex;
  gap: 0.65rem;
}

.community-link {
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.62rem 0.72rem;
  color: #fff4b8;
  border: 1px solid rgba(246, 206, 77, 0.42);
  border-radius: 12px;
  background: linear-gradient(180deg, #241506, #090704);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.community-panel--quick .community-link {
  min-width: 155px;
}

.community-link:hover,
.community-link:focus-visible {
  border-color: #f6ce4d;
  transform: translateY(-1px);
}

.community-link img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.community-link__symbol {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: #140d03;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffe77a, #c9880d);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 900;
}

.community-link span {
  display: grid;
  line-height: 1.1;
}

.community-link small {
  color: #cdbb83;
  font-size: 0.65rem;
}

.community-link strong {
  margin-top: 0.18rem;
  color: #fff4b8;
  font-size: 0.84rem;
}

.community-link b {
  margin-left: auto;
  color: #f6ce4d;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: var(--red);
  box-shadow: inset -7px 0 0 rgba(0, 0, 0, 0.14);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  top: -3px;
  left: 17px;
  width: 2px;
  height: 44px;
  content: "";
  background: #f6d6ae;
  transform: rotate(-18deg);
}

.brand-mark::after {
  left: 21px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: #f7d459;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 0.32rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.desktop-nav a {
  padding: 0.55rem 0.72rem;
  color: rgba(255, 255, 255, 0.74);
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current="page"] {
  color: #050505;
  background: linear-gradient(180deg, #fff9bd 0%, #e6bd3e 100%);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: transparent;
  font-size: 1.25rem;
}

.mobile-nav {
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav a {
  display: block;
  padding: 0.85rem;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
}

.reading-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.hero {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: start;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(8, 5, 2, 0.83) 48%, rgba(8, 5, 2, 0.16) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 48%),
    url("../images/pgkn-hero.webp") center / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  padding-block: 2.75rem 3.25rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero .eyebrow,
.article-hero .eyebrow {
  color: #f6d35f;
}

.hero h1 {
  max-width: 740px;
  margin: 1rem 0 1.35rem;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  text-wrap: balance;
  color: #fff6c6;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}

.hero p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: none;
}

.button--primary {
  color: #080604;
  border-color: #ffe878;
  background: linear-gradient(180deg, #fff5a8 0%, #e0aa18 100%);
}

.button--primary:hover {
  background: linear-gradient(180deg, #fffac4 0%, #efc231 100%);
}

.button--ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.button--dark {
  color: white;
  background: var(--ink);
}

.home-stats {
  position: relative;
  z-index: 3;
  margin-top: -2.35rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  color: white;
  border-color: #b77d0b;
  background: #050505;
  box-shadow: var(--shadow);
}

.stat {
  padding: 1.25rem 1.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: #ffd75c;
  font-size: 1.7rem;
  line-height: 1;
}

.stat span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.section {
  padding-block: 2.5rem;
}

.section--tight {
  padding-block: 1.9rem;
}

.section--dark {
  color: white;
  background: var(--ink);
}

.section--green {
  background: var(--green-soft);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.15rem;
}

.section-heading h2 {
  max-width: 680px;
  margin: 0.55rem 0 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-heading p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
}

.section--dark .section-heading p {
  color: rgba(255, 255, 255, 0.63);
}

.text-link {
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.article-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 10px 35px rgba(7, 17, 31, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.article-card__image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-soft);
}

.article-card__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 300ms ease;
}

.article-card:hover .article-card__image img {
  transform: scale(1.03);
}

.article-card__body {
  padding: 1.25rem 1.3rem 1.4rem;
}

.article-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 0.72rem 0 0.55rem;
  font-size: 1.28rem;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.article-card h3 a {
  text-decoration: none;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.category-card {
  position: relative;
  min-height: 245px;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.045);
}

.category-card::after {
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 170px;
  height: 170px;
  content: "";
  border: 26px solid rgba(240, 197, 92, 0.12);
  border-radius: 50%;
}

.category-card:hover {
  border-color: rgba(240, 197, 92, 0.45);
  background: rgba(255, 255, 255, 0.07);
}

.category-card span {
  color: #f0c55c;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-card h3 {
  max-width: 240px;
  margin: 1.5rem 0 0.7rem;
  font-size: 1.55rem;
  line-height: 1.04;
}

.category-card p {
  max-width: 275px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.format-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.format {
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.format:last-child {
  border-right: 0;
}

.format__number {
  color: var(--green);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.format h3 {
  margin: 1rem 0 0.45rem;
}

.format p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.72rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-strong);
}

.faq-list summary {
  position: relative;
  padding: 1.15rem 3.2rem 1.15rem 1.2rem;
  cursor: pointer;
  list-style: none;
  font-weight: 760;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.2rem;
  content: "+";
  color: var(--green);
  font-size: 1.35rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius);
  color: white;
  background:
    radial-gradient(circle at 90% 20%, rgba(240, 197, 92, 0.22), transparent 20rem),
    var(--green-dark);
}

.newsletter h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.04;
}

.newsletter p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.article-hero {
  position: relative;
  padding-block: 3rem 2.5rem;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 88% 18%, rgba(8, 127, 91, 0.38), transparent 25rem),
    var(--ink);
}

.article-hero::after {
  position: absolute;
  top: 35px;
  right: -80px;
  width: 360px;
  height: 360px;
  content: "";
  border: 48px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.breadcrumbs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.breadcrumbs a {
  text-decoration: none;
}

.article-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 1rem 0 1.25rem;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.article-hero__dek {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.article-byline {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  align-items: center;
  margin-top: 1.7rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.article-byline strong {
  color: white;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 3.4rem;
  align-items: start;
  padding-block: 2rem 3.25rem;
}

.article-shell--single {
  grid-template-columns: minmax(0, 960px);
  justify-content: center;
}

.article-body {
  min-width: 0;
  color: #243248;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
}

.article-body > p:first-of-type {
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.72;
}

.article-body h2,
.article-body h3 {
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.article-body h2 {
  margin: 2.4rem 0 0.85rem;
  padding-top: 0.5rem;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
}

.article-body h3 {
  margin: 1.6rem 0 0.6rem;
  font-size: 1.3rem;
}

.article-body a {
  color: var(--green-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body ul,
.article-body ol {
  padding-left: 1.4rem;
}

.article-body li {
  margin-block: 0.55rem;
}

.article-figure {
  margin: 1.5rem 0;
}

.article-figure img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--ink-soft);
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.09);
}

.article-figure figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.75rem;
  line-height: 1.45;
}

.fact-box {
  margin: 1.5rem 0;
  padding: 1.5rem;
  border-left: 5px solid var(--gold);
  border-radius: 0 16px 16px 0;
  background: #fff8df;
}

.fact-box strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.quick-table {
  width: 100%;
  margin: 1.5rem 0;
  overflow: hidden;
  border-collapse: separate;
  border: 1px solid var(--line);
  border-spacing: 0;
  border-radius: 14px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.86rem;
}

.quick-table th,
.quick-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.quick-table tr:last-child th,
.quick-table tr:last-child td {
  border-bottom: 0;
}

.quick-table th {
  width: 36%;
  color: var(--green-dark);
  background: rgba(8, 127, 91, 0.06);
}

.article-sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 1rem;
}

.sidebar-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper-strong);
}

.sidebar-card h2 {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
}

.sidebar-card ol {
  display: grid;
  gap: 0.62rem;
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.sidebar-card a {
  color: var(--ink);
  text-decoration: none;
}

.sidebar-card a:hover {
  color: var(--green);
}

.share-row {
  display: flex;
  gap: 0.55rem;
}

.share-row button,
.share-row a {
  flex: 1;
  padding: 0.65rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.sources {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.82rem;
}

.sources h2 {
  margin-top: 0;
  font-size: 1.3rem;
}

.sources p {
  color: var(--muted);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.page-hero {
  padding-block: 2.75rem 2.25rem;
  color: white;
  background:
    radial-gradient(circle at 80% 30%, rgba(8, 127, 91, 0.4), transparent 25rem),
    var(--ink);
}

.page-hero h1 {
  max-width: 830px;
  margin: 0.8rem 0 1rem;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.07rem;
}

.action-dock {
  position: fixed;
  z-index: 110;
  top: 50%;
  right: 0;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 0;
  border-radius: 16px 0 0 16px;
  box-shadow: 0 14px 44px rgba(7, 17, 31, 0.24);
  transform: translateY(-50%);
}

.action-dock__link {
  min-width: 132px;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.82rem 0.9rem;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--green-dark);
  font-size: 0.77rem;
  font-weight: 780;
  text-decoration: none;
}

.action-dock__link:nth-child(2) {
  background: #a97816;
}

.action-dock__link:nth-child(3) {
  border-bottom: 0;
  background: var(--red);
}

.action-dock__link:hover {
  filter: brightness(1.1);
}

.action-dock__icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.action-dock__icon img {
  width: 18px;
  height: 18px;
}

.action-dock__short {
  display: none;
}

.site-footer {
  padding-block: 2.5rem 3.25rem;
  color: rgba(255, 255, 255, 0.64);
  background: #050c16;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 2.2rem;
}

.footer-intro p {
  max-width: 360px;
  font-size: 0.86rem;
}

.footer-column h2 {
  margin: 0.2rem 0 1rem;
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-block: 0.48rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
}

.disclaimer {
  max-width: 720px;
}

/* Black, brown and gold visual system based on the supplied reference. */
.section-heading h2,
.page-hero h1 {
  color: #f8d866;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
}

.section-heading p {
  color: #d9c68f;
}

.section--dark {
  border-block: 1px solid rgba(246, 206, 77, 0.22);
  background:
    radial-gradient(circle at 85% 20%, rgba(210, 146, 18, 0.16), transparent 26rem),
    #060402;
}

.section--green {
  color: #100b03;
  border-block: 1px solid #e3b22e;
  background:
    linear-gradient(115deg, rgba(255, 250, 191, 0.82), rgba(225, 165, 25, 0.93)),
    #e6b12a;
}

.section--green .section-heading h2,
.section--green .eyebrow {
  color: #2a1604;
  text-shadow: none;
}

.section--green .section-heading p {
  color: #5b3a0b;
}

.eyebrow,
.text-link {
  color: #f3ca4d;
}

.article-card {
  border-color: #c78c12;
  background: linear-gradient(180deg, #fff8c9 0%, #f1d473 100%);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.36);
}

.article-card__image {
  border-bottom: 2px solid #c88c12;
}

.article-card__body,
.article-card__body h3,
.article-card__body h3 a {
  color: #120b03;
}

.article-card__body p,
.article-card__meta {
  color: #654818;
}

.category-card {
  border-color: rgba(246, 206, 77, 0.42);
  background:
    linear-gradient(145deg, rgba(129, 69, 7, 0.45), rgba(0, 0, 0, 0.9)),
    #0b0703;
  box-shadow: inset 0 0 0 1px rgba(255, 244, 171, 0.05);
}

.category-card:hover {
  border-color: #f6ce4d;
  background:
    linear-gradient(145deg, rgba(169, 97, 11, 0.58), rgba(0, 0, 0, 0.9)),
    #0b0703;
}

.category-card span {
  color: #ffd85c;
}

.format-rail {
  border-color: #c88d14;
  background: #fff3b2;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.format {
  color: #150d03;
  border-color: rgba(107, 66, 8, 0.25);
}

.format__number {
  color: #a66305;
}

.format p {
  color: #6d552b;
}

.format .text-link {
  color: #7d4805;
}

.faq-list details {
  color: #160d03;
  border-color: #c78d16;
  background: linear-gradient(180deg, #fff9d0 0%, #f3dc83 100%);
}

.faq-list details p {
  color: #654d22;
}

.faq-list summary::after {
  color: #8f5305;
}

.newsletter {
  color: #0d0803;
  border: 2px solid #ffe875;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 249, 184, 0.44), transparent 20rem),
    linear-gradient(115deg, #a85d08 0%, #f1c436 55%, #b66c0a 100%);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
}

.newsletter p {
  color: #442a08;
}

.article-hero,
.page-hero {
  border-bottom: 2px solid #bd8410;
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 151, 20, 0.26), transparent 25rem),
    linear-gradient(135deg, #020202 0%, #170d05 66%, #432407 100%);
}

.article-body {
  padding: clamp(1.25rem, 4vw, 3rem);
  color: #34240f;
  border: 1px solid #d1a32c;
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdf0 0%, #fff1ad 100%);
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.3);
}

.article-body h2,
.article-body h3,
.article-body > p:first-of-type {
  color: #130c03;
}

.article-body a {
  color: #7b4505;
}

.article-figure img {
  border-color: #b77b0b;
  box-shadow: 0 16px 36px rgba(55, 28, 3, 0.2);
}

.fact-box {
  border-left-color: #bd7908;
  background: #ffe582;
}

.quick-table {
  border-color: #c69722;
  background: #fffbed;
}

.quick-table th {
  color: #6f3d04;
  background: #f4d56e;
}

.sidebar-card {
  color: #170e03;
  border-color: #c79018;
  background: linear-gradient(180deg, #fff8ca, #eecf68);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.sidebar-card a,
.share-row button,
.share-row a {
  color: #1b1003;
}

.share-row button,
.share-row a {
  border-color: rgba(125, 72, 5, 0.36);
  background: #fff8c9;
}

.action-dock {
  border-color: #e3b32c;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.46);
}

.action-dock__link {
  color: #100a03;
  background: linear-gradient(180deg, #fff2a2, #d89916);
}

.action-dock__link:nth-child(2) {
  background: linear-gradient(180deg, #ffd864, #a65d08);
}

.action-dock__link:nth-child(3) {
  background: linear-gradient(180deg, #e5aa2a, #703805);
}

.action-dock__link:nth-child(4) {
  color: #ffe779;
  background: #050505;
}

.action-dock__link:nth-child(4) .action-dock__icon {
  font-size: 1rem;
}

.action-dock__link:nth-child(5),
.action-dock__link:nth-child(6) {
  color: #ffe779;
  background: #050505;
}

.action-dock__link:nth-child(3),
.action-dock__link:nth-child(4),
.action-dock__link:nth-child(5) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.action-dock__link:nth-child(6) {
  border-bottom: 0;
}

.site-footer {
  border-top: 2px solid #b57b0c;
  background:
    radial-gradient(circle at 80% 0%, rgba(214, 153, 24, 0.13), transparent 24rem),
    #030201;
}

.footer-visitor {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(246, 206, 77, 0.28);
  border-radius: 12px;
  color: #f6d45e;
  background: rgba(246, 206, 77, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visitor-counter {
  min-width: 100px;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
}

.visitor-counter img {
  width: auto;
  height: 20px;
}

.whatsapp-button {
  width: fit-content;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
  sans-serif;
}

@media (min-width: 721px) {
  .header-inner {
    min-height: 64px;
  }

  .community-slot {
    padding-block: 0.55rem;
  }

  .community-panel {
    padding: 0.58rem 0.85rem;
  }

  .community-link {
    padding: 0.48rem 0.62rem;
  }
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    min-height: 0;
  }

  .card-grid,
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

  .footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: 118px;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .header-inner {
    min-height: 64px;
  }

  .community-panel {
    display: block;
  }

  .community-panel__title {
    margin-bottom: 0.7rem;
  }

  .community-panel__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .community-link {
    min-width: 0;
    padding: 0.65rem;
  }

  .community-panel--quick .community-link {
    width: 100%;
    min-width: 0;
  }

  .community-link b {
    display: none;
  }

  .community-link strong {
    font-size: 0.75rem;
  }

  .community-link--quick {
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
  }

  .community-link--quick span {
    text-align: center;
  }

  .community-link--quick small {
    display: none;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 0;
    align-items: start;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(4, 10, 18, 0.98) 3%, rgba(4, 10, 18, 0.5) 100%),
      url("../images/pgkn-hero.webp") 60% bottom / auto 115% no-repeat;
  }

  .hero-inner {
    padding-block: 1.85rem 2.5rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 4.8rem);
  }

  .home-stats {
    margin-top: -1.2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .section {
    padding-block: 1.75rem;
  }

  .section--tight {
    padding-block: 1.5rem;
  }

  .page-hero {
    padding-block: 1.75rem;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 0.8rem;
  }

  .card-grid,
  .category-grid,
  .related-grid,
  .format-rail,
  .newsletter,
  .article-sidebar,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .format {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .format:last-child {
    border-bottom: 0;
  }

  .newsletter {
    gap: 1.3rem;
  }

  .article-hero {
    padding-block: 2.2rem 1.8rem;
  }

  .article-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .article-shell {
    gap: 1.25rem;
    padding-block: 1.25rem 2.5rem;
  }

  .article-body {
    font-size: 1rem;
  }

  .article-body > p:first-of-type {
    font-size: 1.1rem;
  }

  .quick-table {
    font-size: 0.78rem;
  }

  .quick-table th,
  .quick-table td {
    padding: 0.72rem;
  }

  .action-dock {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    grid-template-columns: repeat(3, 1fr);
    border: 0;
    border-radius: 0;
    transform: none;
  }

  .action-dock__link {
    min-width: 0;
    justify-content: center;
    padding: 0.7rem 0.35rem 0.62rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
    font-size: 0.68rem;
    text-align: center;
  }

  .action-dock__label {
    display: none;
  }

  .action-dock__short {
    display: inline;
  }

  .action-dock__icon {
    width: 20px;
    height: 20px;
  }

  .site-footer {
    padding-block: 2.25rem 2.75rem;
  }

  .footer-grid {
    gap: 1.2rem;
  }

  .footer-bottom {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
