/* ============================================================
   pacode — base stylesheet
   ============================================================ */

:root {
  /* brand */
  --pc-red: #E63946;
  --pc-yellow: #E8B739;
  --pc-blue: #1E40AF;
  --pc-blue-strong: #1738A0;

  /* surface */
  --pc-bg: #FAFAF7;
  --pc-bg-soft: #F1F0EB;
  --pc-bg-card: #FFFFFF;
  --pc-ink: #0B0F1A;
  --pc-ink-soft: #2A3142;
  --pc-muted: #6A6F7E;
  --pc-rule: #E5E3DC;
  --pc-rule-strong: #C9C6BC;

  /* type */
  --pc-sans: "Geist", system-ui, -apple-system, sans-serif;
  --pc-mono: "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* layout */
  --pc-gutter: clamp(20px, 3vw, 48px);
  --pc-max: 1600px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--pc-bg);
  color: var(--pc-ink);
  font-family: var(--pc-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body[data-theme="dark"] {
  --pc-bg: #0B0F1A;
  --pc-bg-soft: #131826;
  --pc-bg-card: #161B2A;
  --pc-ink: #FAFAF7;
  --pc-ink-soft: #C9C6BC;
  --pc-muted: #8A8F9E;
  --pc-rule: #232A3D;
  --pc-rule-strong: #323A50;
}

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

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

/* ---------- top chrome ---------- */

.pc-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--pc-bg);
  border-bottom: 1px solid var(--pc-rule);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 var(--pc-gutter);
  height: 72px;
}
.pc-topbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pc-topbar__brand img { height: 36px; width: auto; }
.pc-topbar__brand-mark {
  font-family: var(--pc-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--pc-muted);
  text-transform: uppercase;
  border-left: 1px solid var(--pc-rule);
  padding-left: 12px;
  line-height: 1.2;
}
.pc-topbar__brand-mark b { color: var(--pc-ink); font-weight: 500; display: block; }

.pc-topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pc-lang {
  font-family: var(--pc-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1px solid var(--pc-rule);
  padding: 6px 10px;
  background: transparent;
  color: var(--pc-ink);
  cursor: pointer;
  text-transform: uppercase;
}
.pc-lang:hover { background: var(--pc-ink); color: var(--pc-bg); }

/* ---------- sub-nav ---------- */

.pc-subnav {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid var(--pc-rule);
  background: var(--pc-bg);
}
.pc-subnav a {
  padding: 22px var(--pc-gutter);
  font-size: 15px;
  font-weight: 500;
  border-right: 1px solid var(--pc-rule);
  transition: background 180ms ease, color 180ms ease;
  position: relative;
}
.pc-subnav a:last-child { border-right: none; }
.pc-subnav a:hover { background: var(--pc-bg-soft); }
.pc-subnav a.is-cta {
  background: var(--pc-blue);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.pc-subnav a.is-cta:hover { background: var(--pc-blue-strong); }
.pc-subnav a.is-cta .pc-cta-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: var(--pc-blue-strong);
}

/* ---------- marquee ---------- */

.pc-marquee {
  background: var(--pc-yellow);
  color: var(--pc-ink);
  padding: 12px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--pc-ink);
  border-top: 1px solid var(--pc-ink);
}
.pc-marquee__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: pcMarquee 40s linear infinite;
  font-family: var(--pc-mono);
  font-size: 14px;
  letter-spacing: 0.03em;
  font-weight: 500;
}
.pc-marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.pc-marquee__track span::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--pc-ink);
  border-radius: 50%;
  margin-left: 56px;
}
@keyframes pcMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- hero ---------- */

.pc-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 640px;
  border-bottom: 1px solid var(--pc-rule);
  position: relative;
}
.pc-hero__left {
  padding: 56px var(--pc-gutter) 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pc-hero__eyebrow {
  font-family: var(--pc-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pc-ink);
  margin: 0 0 28px;
}
.pc-hero__title {
  font-family: var(--pc-sans);
  font-weight: 800;
  font-size: clamp(48px, 6.2vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
}
.pc-hero__title em {
  font-style: normal;
  color: var(--pc-blue);
}
.pc-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--pc-ink);
}
.pc-hero__meta dt {
  font-family: var(--pc-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--pc-muted);
  text-transform: uppercase;
  margin: 0 0 4px;
}
.pc-hero__meta dd {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.pc-hero__right {
  position: relative;
  border-left: 1px solid var(--pc-rule);
  overflow: hidden;
  background: var(--pc-bg);
}

/* hero logos */
.pc-hero__logos {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(32px, 5vw, 64px);
}
.pc-hero__logo {
  display: block;
  height: auto;
  width: auto;
  max-width: 42%;
  max-height: 60%;
  object-fit: contain;
}
.pc-hero__logo--pacode { max-width: 50%; max-height: 72%; }
.pc-hero__logo--ufpb { max-width: 28%; max-height: 70%; }

/* hero collage */
.pc-collage {
  position: absolute;
  inset: 0;
}
.pc-collage svg.pc-grid-pattern {
  position: absolute;
  top: 10%;
  left: 4%;
  width: 60%;
  height: 70%;
  opacity: 0.35;
}
.pc-collage__placeholder {
  position: absolute;
  right: 6%;
  top: 8%;
  width: 62%;
  height: 78%;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.04), rgba(0,0,0,0)),
    repeating-linear-gradient(
      135deg,
      var(--pc-bg-soft) 0 14px,
      #E8E5DA 14px 28px
    );
  border: 1px solid var(--pc-rule-strong);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  font-family: var(--pc-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--pc-muted);
  text-transform: uppercase;
}

.pc-collage__chip {
  position: absolute;
  background: var(--pc-bg-card);
  border: 1px solid var(--pc-rule-strong);
  padding: 10px 14px;
  font-family: var(--pc-mono);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 0 var(--pc-ink);
}
.pc-collage__chip .dot { width: 8px; height: 8px; border-radius: 50%; }

.pc-balloon {
  position: absolute;
  pointer-events: none;
}

/* small confetti-style tile pattern bottom right */
.pc-collage__tiles {
  position: absolute;
  bottom: 6%;
  right: 4%;
  width: 220px;
  height: 84px;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3px;
}
.pc-collage__tiles span {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---------- section header ---------- */

.pc-section {
  border-bottom: 1px solid var(--pc-rule);
  padding: 80px var(--pc-gutter) 96px;
  position: relative;
}
.pc-section--soft { background: var(--pc-bg-soft); }
.pc-section--ink { background: var(--pc-ink); color: var(--pc-bg); }
.pc-section--ink .pc-eyebrow { color: var(--pc-yellow); }

.pc-eyebrow {
  font-family: var(--pc-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pc-blue);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
}
.pc-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

.pc-section__title {
  font-family: var(--pc-sans);
  font-weight: 800;
  font-size: clamp(40px, 4.8vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  margin: 0 0 28px;
  max-width: 22ch;
}

.pc-section__lead {
  max-width: 64ch;
  font-size: 18px;
  line-height: 1.5;
  color: var(--pc-ink-soft);
  margin: 0;
}

.pc-section__header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.pc-section__header .pc-tag {
  justify-self: end;
  align-self: end;
}
.pc-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--pc-rule-strong);
  padding: 8px 12px 8px 14px;
  background: var(--pc-bg-card);
  font-family: var(--pc-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.pc-tag .tag-icon {
  width: 22px;
  height: 22px;
  background: var(--pc-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
}

/* ---------- generic card ---------- */

.pc-card {
  background: var(--pc-bg-card);
  border: 1px solid var(--pc-rule);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  position: relative;
}
.pc-card:hover {
  transform: translateY(-4px);
  border-color: var(--pc-ink);
  box-shadow: 6px 6px 0 var(--pc-ink);
}
.pc-card__media {
  aspect-ratio: 16 / 10;
  background:
    repeating-linear-gradient(135deg, var(--pc-bg-soft) 0 14px, #E8E5DA 14px 28px);
  border: 1px solid var(--pc-rule);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.pc-card__media .placeholder-label {
  font-family: var(--pc-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pc-muted);
}
.pc-card__media.has-image {
  background: var(--pc-ink);
  padding: 0;
}
.pc-card__media.has-image .placeholder-label {
  display: none;
}
.pc-card__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pc-card h3 {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.pc-card p {
  margin: 0;
  color: var(--pc-ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.pc-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pc-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pc-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ---------- key numbers grid ---------- */

.pc-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 0;
  border-top: 1px solid var(--pc-rule);
  border-left: 1px solid var(--pc-rule);
}
.pc-numbers__cell {
  border-right: 1px solid var(--pc-rule);
  border-bottom: 1px solid var(--pc-rule);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--pc-bg-card);
  overflow: hidden;
}
.pc-numbers__cell.is-photo {
  padding: 0;
  background:
    repeating-linear-gradient(135deg, #E8E5DA 0 14px, var(--pc-bg-soft) 14px 28px);
  align-items: flex-end;
}
.pc-numbers__cell.is-photo .placeholder-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--pc-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pc-muted);
}
.pc-numbers__cell.is-photo.has-image {
  background: var(--pc-ink);
}
.pc-numbers__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pc-numbers__label {
  font-family: var(--pc-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pc-ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-numbers__label::before {
  content: "○";
  font-size: 12px;
  color: var(--pc-ink);
}
.pc-numbers__value {
  font-weight: 700;
  font-size: clamp(56px, 5vw, 92px);
  letter-spacing: -0.03em;
  line-height: 1;
  font-family: var(--pc-sans);
  color: var(--pc-blue);
}
.pc-numbers__hint {
  font-size: 13px;
  color: var(--pc-muted);
  font-family: var(--pc-mono);
  letter-spacing: 0.04em;
}

/* ---------- member card ---------- */

.pc-member {
  background: var(--pc-bg-card);
  border: 1px solid var(--pc-rule);
  transition: transform 220ms ease, box-shadow 220ms ease;
  display: flex;
  flex-direction: column;
}
.pc-member:hover { transform: translateY(-4px); box-shadow: 6px 6px 0 var(--pc-ink); }
.pc-member__avatar {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 35%, #D9D5C8, #E8E5DA 60%, #BFBBAE);
  border-bottom: 1px solid var(--pc-rule);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-member__avatar .initial {
  font-size: 64px;
  font-weight: 800;
  color: rgba(11,15,26,0.18);
  letter-spacing: -0.02em;
  font-family: var(--pc-sans);
}
.pc-member__avatar.has-image {
  background: var(--pc-ink);
}
.pc-member__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pc-member__avatar .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--pc-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--pc-bg-card);
  border: 1px solid var(--pc-rule);
  padding: 4px 8px;
  color: var(--pc-ink);
}
.pc-member__body {
  padding: 18px 20px 22px;
}
.pc-member__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 2px;
}
.pc-member__role {
  font-family: var(--pc-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pc-muted);
  margin: 0 0 8px;
}
.pc-member__meta {
  font-size: 13px;
  color: var(--pc-ink-soft);
  display: flex;
  gap: 12px;
}
.pc-member__meta span { display: inline-flex; gap: 6px; }
.pc-member__meta b { font-weight: 600; color: var(--pc-ink); }

/* ---------- hall of fame ---------- */

.pc-hof {
  border-top: 1px solid var(--pc-rule-strong);
}
.pc-hof__row {
  display: grid;
  grid-template-columns: 100px 1.4fr 1fr 1fr 1fr 80px;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--pc-rule);
  transition: background 200ms ease, padding 200ms ease;
}
.pc-hof__row:hover {
  background: var(--pc-bg-soft);
  padding-left: 12px;
  padding-right: 12px;
}
.pc-hof__row.is-head {
  font-family: var(--pc-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pc-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--pc-rule-strong);
}
.pc-hof__row.is-head:hover {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}
.pc-hof__year {
  font-family: var(--pc-mono);
  font-weight: 500;
  font-size: 14px;
  color: var(--pc-blue);
}
.pc-hof__name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.pc-hof__role, .pc-hof__where, .pc-hof__highlight {
  font-size: 14px;
  color: var(--pc-ink-soft);
}
.pc-hof__cta {
  justify-self: end;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pc-rule);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.pc-hof__row:hover .pc-hof__cta {
  background: var(--pc-ink);
  color: var(--pc-bg);
  border-color: var(--pc-ink);
}

/* ---------- news ---------- */

.pc-news {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--pc-rule);
  border-left: 1px solid var(--pc-rule);
}
.pc-news__item {
  border-right: 1px solid var(--pc-rule);
  border-bottom: 1px solid var(--pc-rule);
  background: var(--pc-bg-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 220ms ease;
}
.pc-news__item:hover { background: var(--pc-bg-soft); }
.pc-news__item.is-feature {
  grid-row: span 2;
  grid-column: 1;
}
.pc-news__media {
  aspect-ratio: 16 / 10;
  background:
    repeating-linear-gradient(135deg, var(--pc-bg-soft) 0 14px, #E8E5DA 14px 28px);
  border: 1px solid var(--pc-rule);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.pc-news__item.is-feature .pc-news__media { aspect-ratio: 16 / 11; }
.pc-news__media .placeholder-label {
  font-family: var(--pc-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pc-muted);
}
.pc-news__media.has-image {
  background: var(--pc-ink);
  padding: 0;
}
.pc-news__media.has-image .placeholder-label {
  display: none;
}
.pc-news__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pc-news__meta {
  display: flex;
  gap: 14px;
  font-family: var(--pc-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pc-muted);
}
.pc-news__meta .pc-news__cat { color: var(--pc-blue); font-weight: 600; }
.pc-news__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}
.pc-news__item.is-feature .pc-news__title { font-size: 32px; }
.pc-news__excerpt {
  font-size: 15px;
  color: var(--pc-ink-soft);
  margin: 0;
}

/* ---------- contact / footer ---------- */

.pc-footer {
  background: var(--pc-ink);
  color: var(--pc-bg);
  padding: 80px var(--pc-gutter) 40px;
}
.pc-footer__big {
  font-family: var(--pc-sans);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 64px;
}
.pc-footer__big em { font-style: normal; color: var(--pc-yellow); }
.pc-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid #222C42;
}
.pc-footer__col h4 {
  font-family: var(--pc-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pc-yellow);
  margin: 0 0 16px;
  font-weight: 500;
}
.pc-footer__col p, .pc-footer__col a {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--pc-bg-soft);
  display: block;
}
.pc-footer__col a:hover { color: var(--pc-yellow); }
.pc-footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid #222C42;
  font-family: var(--pc-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8A8F9E;
}
.pc-footer__social {
  display: flex;
  gap: 12px;
}
.pc-footer__social a {
  width: 32px;
  height: 32px;
  border: 1px solid #2C3650;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.pc-footer__social a:hover {
  background: var(--pc-yellow);
  color: var(--pc-ink);
  border-color: var(--pc-yellow);
}

/* ---------- scroll-reveal ---------- */

.pc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(.2,.6,.2,1), transform 800ms cubic-bezier(.2,.6,.2,1);
}
.pc-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */

@media (max-width: 1100px) {
  .pc-subnav { grid-template-columns: repeat(4, 1fr); }
  .pc-subnav a:nth-child(4) { border-right: none; }
  .pc-hero { grid-template-columns: 1fr; }
  .pc-hero__right { min-height: 420px; border-left: none; border-top: 1px solid var(--pc-rule); }
  .pc-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pc-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pc-numbers { grid-template-columns: repeat(2, 1fr); }
  .pc-news { grid-template-columns: 1fr 1fr; }
  .pc-news__item.is-feature { grid-row: auto; grid-column: auto; }
  .pc-hof__row { grid-template-columns: 70px 1.4fr 1fr 60px; gap: 12px; }
  .pc-hof__where, .pc-hof__highlight { display: none; }
  .pc-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .pc-subnav { grid-template-columns: repeat(2, 1fr); }
  .pc-subnav a:nth-child(2) { border-right: none; }
  .pc-grid-4, .pc-grid-3, .pc-grid-2 { grid-template-columns: 1fr; }
  .pc-numbers { grid-template-columns: 1fr; }
  .pc-news { grid-template-columns: 1fr; }
  .pc-section { padding: 56px var(--pc-gutter) 64px; }
  .pc-section__header { grid-template-columns: 1fr; gap: 16px; }
  .pc-section__header .pc-tag { justify-self: start; }
  .pc-footer__grid { grid-template-columns: 1fr; }
  .pc-footer__base { flex-direction: column; gap: 16px; align-items: flex-start; }
}
