/* ==========================================================================
   Parimatch DE — Satellite Site Styles
   Brand: black bg, neon-yellow accent, pill buttons, grotesque type.
   Prefix: .pm-   |   Mobile-first: 480 / 768 / 1024 / 1280
   ========================================================================== */

:root {
  /* Brand colors */
  --pm-bg:          #0a0a0a;
  --pm-surface:     #141414;
  --pm-surface-2:   #1c1c1c;
  --pm-border:      rgba(255, 255, 255, 0.08);
  --pm-border-2:    rgba(255, 255, 255, 0.14);
  --pm-accent:      #e3ff00;
  --pm-accent-2:    #eeff33;
  --pm-accent-dim:  rgba(227, 255, 0, 0.14);
  --pm-text:        #ffffff;
  --pm-body:        #c8c8c8;
  --pm-text-muted:  #9a9a9a;
  --pm-text-dim:    #6a6a6a;

  /* Shape */
  --pm-radius:      22px;
  --pm-radius-md:   16px;
  --pm-radius-sm:   10px;

  /* Layout */
  --pm-maxw:        1280px;
  --pm-header-h:    76px;
  --pm-gutter:      18px;

  /* Type */
  --pm-font-head: "Archivo", "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --pm-font-display: "Anton", "Archivo", "Manrope", system-ui, sans-serif;
  --pm-font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --pm-font-mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

/* -------------------------------------------------------------------------- */
/* Reset                                                                      */
/* -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(60% 45% at 100% 0%, rgba(227,255,0,0.08), transparent 60%),
    radial-gradient(50% 40% at 0% 30%, rgba(227,255,0,0.055), transparent 60%),
    radial-gradient(55% 45% at 100% 75%, rgba(227,255,0,0.05), transparent 60%),
    var(--pm-bg);
  background-attachment: fixed;
  color: var(--pm-text);
  font-family: var(--pm-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--pm-accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--pm-accent-2); }
h1, h2, h3, h4 { font-family: var(--pm-font-head); font-weight: 800; line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

.pm-container {
  width: 100%;
  max-width: var(--pm-maxw);
  margin: 0 auto;
  padding: 0 var(--pm-gutter);
}

/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */
.pm-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pm-border);
}
.pm-header__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: var(--pm-header-h);
  flex-wrap: wrap;
  row-gap: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 1024px) {
  .pm-header__inner { flex-wrap: nowrap; padding-top: 0; padding-bottom: 0; }
}
.pm-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.pm-logo img { height: 32px; width: auto; }
@media (min-width: 768px) { .pm-logo img { height: 40px; } }

/* Burger + checkbox toggle (controls the sidebar on mobile) */
.pm-nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.pm-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 11px;
  border: 1px solid var(--pm-border-2);
  border-radius: var(--pm-radius-sm);
  cursor: pointer;
  flex: 0 0 auto;
}
.pm-burger span { display: block; height: 2px; background: var(--pm-text); border-radius: 2px; transition: .25s ease; }

/* Actions (lang + buttons) pushed to the right */
.pm-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
/* On phones/tablets the action row drops to its own full-width line */
@media (max-width: 1023px) {
  .pm-burger { order: 1; }
  .pm-logo { order: 2; }
  .pm-actions {
    order: 3;
    flex-basis: 100%;
    margin-left: 0;
    justify-content: flex-end;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--pm-border);
  }
  .pm-actions .pm-btn { padding: 10px 18px; font-size: 13px; min-height: 42px; }
  .pm-lang { margin-right: auto; }
  .pm-lang__item { padding: 7px 9px; min-height: 36px; }
}
@media (max-width: 400px) {
  .pm-actions { flex-wrap: nowrap; }
  .pm-actions .pm-btn--primary { flex: 1 1 auto; }
}

/* Language switcher */
.pm-lang { display: inline-flex; align-items: center; gap: 2px; }
.pm-lang__item {
  font-family: var(--pm-font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--pm-text-muted);
  padding: 8px 10px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--pm-radius-sm);
  transition: color .2s ease, background .2s ease;
}
.pm-lang__item:hover { color: var(--pm-text); }
.pm-lang__item[aria-current="true"] {
  color: #0a0a0a;
  background: var(--pm-accent);
}
.pm-lang__globe { display: block; flex: 0 0 auto; border-radius: 50%; }

/* Hide the ghost Login button on very small screens to save room */
@media (max-width: 479px) {
  .pm-actions .pm-btn--ghost { display: none; }
}

/* Buttons */
.pm-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: var(--pm-radius);
  font-family: var(--pm-font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .25s ease;
}
/* Shine sweep overlay */
.pm-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -130%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left .55s ease;
}
.pm-btn:hover::before { left: 150%; }
.pm-btn:active { transform: scale(.96); }

.pm-btn--primary {
  background: var(--pm-accent);
  color: #0a0a0a;
}
.pm-btn--primary:hover {
  background: var(--pm-accent-2);
  color: #0a0a0a;
  box-shadow: 0 10px 30px -8px rgba(227, 255, 0, 0.6);
  transform: translateY(-2px) scale(1.03);
}
.pm-btn--ghost {
  background: transparent;
  color: var(--pm-text);
  border-color: var(--pm-border-2);
}
.pm-btn--ghost::before { background: linear-gradient(100deg, transparent, rgba(227,255,0,0.28), transparent); }
.pm-btn--ghost:hover {
  border-color: var(--pm-accent);
  color: var(--pm-accent);
  background: var(--pm-accent-dim);
  transform: translateY(-2px);
}
.pm-btn--lg { min-height: 52px; padding: 14px 30px; font-size: 16px; }

/* Hero CTA draws the eye with a soft idle pulse, lifts on hover */
.pm-hero__cta { animation: pmPulse 2.6s ease-in-out infinite; }
.pm-hero__cta:hover { animation-play-state: paused; }
@keyframes pmPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(227,255,0,0.45); }
  55%      { box-shadow: 0 0 0 14px rgba(227,255,0,0); }
}
@media (prefers-reduced-motion: reduce) {
  .pm-btn, .pm-btn::before, .pm-hero__cta { transition: none; animation: none; }
}

@media (min-width: 1024px) {
  .pm-burger { display: none; }
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */
.pm-hero {
  position: relative;
  border-bottom: 1px solid var(--pm-border);
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(227, 255, 0, 0.10), transparent 60%),
    var(--pm-bg);
  overflow: hidden;
}
.pm-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 44px var(--pm-gutter) 48px;
}
.pm-hero__eyebrow {
  font-family: var(--pm-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pm-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 22px;
}
.pm-hero__eyebrow b { color: var(--pm-accent); font-weight: 700; }
.pm-hero h1 {
  font-size: clamp(34px, 8vw, 62px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.pm-hero__sub {
  font-size: clamp(16px, 2.4vw, 19px);
  color: var(--pm-body);
  max-width: 46ch;
  margin-bottom: 28px;
}
.pm-hero__cta { align-self: flex-start; }
.pm-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero media placeholder card — enlarged */
.pm-hero__media { min-height: 340px; position: relative; }
.pm-media:has(img) { border: none; background: none; padding: 0; overflow: hidden; }
.pm-media img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--pm-radius-md); transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.pm-hero__media img { min-height: inherit; }

/* Hero image: entrance, then a slow living zoom */
.pm-hero__media img {
  animation: pmHeroIn 1s cubic-bezier(.2,.7,.2,1) both, pmKenBurns 16s ease-in-out 1s infinite alternate;
  will-change: transform, opacity;
}
/* Recurring light sweep across the hero image */
.pm-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--pm-radius-md);
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.16) 48%, rgba(227,255,0,0.10) 52%, transparent 70%);
  transform: translateX(-120%);
  animation: pmHeroSweep 6.5s ease-in-out 1.4s infinite;
  pointer-events: none;
  z-index: 2;
}
/* Content images: reveal on scroll into view + hover zoom */
.pm-media img:hover { transform: scale(1.04); }
@supports (animation-timeline: view()) {
  .pm-main .pm-media {
    animation: pmMediaReveal both linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
}
@media (min-width: 1024px) {
  .pm-hero__media { min-height: 480px; height: 100%; }
}

/* Key facts */
.pm-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--pm-border);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-md);
  overflow: hidden;
  margin-top: 34px;
}
.pm-fact { background: var(--pm-surface); padding: 18px 18px 16px; }
.pm-fact__k {
  font-family: var(--pm-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pm-text-dim);
  margin-bottom: 6px;
}
.pm-fact__v { font-family: var(--pm-font-head); font-weight: 700; font-size: 17px; }
.pm-fact__v b { color: var(--pm-accent); }
@media (min-width: 560px) { .pm-facts { grid-template-columns: repeat(4, 1fr); } }

@media (min-width: 1024px) {
  .pm-hero__inner {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
    padding: 60px var(--pm-gutter) 64px;
  }
  .pm-hero__content { align-self: center; }
}

/* -------------------------------------------------------------------------- */
/* Media placeholders                                                         */
/* -------------------------------------------------------------------------- */
.pm-media {
  margin: 30px 0;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, rgba(227,255,0,0.04) 0 14px, transparent 14px 28px),
    var(--pm-surface);
  border: 1.5px dashed var(--pm-border-2);
  border-radius: var(--pm-radius-md);
  position: relative;
}
.pm-media__tag {
  font-family: var(--pm-font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--pm-accent);
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid var(--pm-border-2);
  padding: 8px 14px;
  border-radius: 999px;
}
.pm-hero__media.pm-media { margin: 0; }

/* -------------------------------------------------------------------------- */
/* Main content / prose + sticky sidebar                                      */
/* -------------------------------------------------------------------------- */
.pm-main { padding: 28px 0 24px; }
.pm-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}
.pm-prose { max-width: none; min-width: 0; }
.pm-prose > .pm-intro p:first-child { font-size: 18px; color: var(--pm-body); }

/* Stats strip */
.pm-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--pm-border);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-md);
  overflow: hidden;
  margin: 26px 0 8px;
}
.pm-stat {
  background: var(--pm-surface);
  padding: 24px 20px;
  transition: background .25s ease, transform .25s ease;
}
.pm-stat:hover { background: var(--pm-surface-2); }
.pm-stat__num {
  font-family: var(--pm-font-display);
  font-weight: 400;
  font-size: clamp(34px, 6vw, 46px);
  line-height: 1;
  color: var(--pm-accent);
  letter-spacing: 0.01em;
}
.pm-stat__num span {
  font-size: 0.42em;
  color: var(--pm-text);
  letter-spacing: 0.02em;
}
.pm-stat__label {
  margin-top: 10px;
  font-size: 13px;
  color: var(--pm-text-muted);
  line-height: 1.4;
}
@media (min-width: 720px) { .pm-stats { grid-template-columns: repeat(4, 1fr); } }

/* Sidebar (mobile: collapsible panel toggled by burger) */
.pm-sidebar { display: none; }
.pm-nav-toggle:checked ~ .pm-main .pm-sidebar { display: block; }
/* On mobile the sidebar otherwise renders in normal flow after the hero,
   far below the burger and out of view — show it as a fixed overlay instead. */
@media (max-width: 1023px) {
  .pm-nav-toggle:checked ~ .pm-main .pm-sidebar {
    position: fixed;
    inset: 0;
    z-index: 55;
    margin: 0;
    padding: 132px 20px 24px;
    background: var(--pm-bg);
    overflow-y: auto;
  }
}
.pm-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px;
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-md);
}
.pm-nav__heading {
  font-family: var(--pm-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pm-text-dim);
  padding: 4px 12px 10px;
}
.pm-nav__link {
  color: var(--pm-text);
  font-family: var(--pm-font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 11px 13px;
  border-radius: var(--pm-radius-sm);
  border-left: 3px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.pm-nav__link:hover {
  background: var(--pm-surface-2);
  color: var(--pm-accent);
}
.pm-nav__link[aria-current="page"] {
  background: var(--pm-accent-dim);
  color: var(--pm-accent);
  border-left-color: var(--pm-accent);
}

@media (min-width: 1024px) {
  .pm-burger { display: none; }
  .pm-layout {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 46px;
    align-items: start;
  }
  .pm-sidebar {
    display: block;
    position: sticky;
    top: calc(var(--pm-header-h) + 20px);
    align-self: start;
  }
}

.pm-section { padding: 34px 0 4px; scroll-margin-top: calc(var(--pm-header-h) + 20px); }
.pm-section + .pm-section { border-top: 1px solid var(--pm-border); padding-top: 38px; }
.pm-section__title {
  font-family: var(--pm-font-display);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.06;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 24px 26px;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(227,255,0,0.12), transparent 55%),
    var(--pm-surface);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-md);
}
.pm-section__title span, .pm-section__title em { font-style: normal; }
.pm-section h3 {
  font-family: var(--pm-font-display);
  font-weight: 400;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 26px 0 12px;
}
.pm-section p { color: var(--pm-body); }
.pm-section p strong, .pm-prose strong { color: var(--pm-text); font-weight: 700; }

/* Lists */
.pm-list { list-style: none; margin: 20px 0 8px; padding: 0; display: grid; gap: 10px; }
.pm-list li {
  position: relative;
  padding: 12px 16px 12px 40px;
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-sm);
  color: var(--pm-body);
}
.pm-list li::before {
  content: "";
  position: absolute;
  left: 16px; top: 50%;
  width: 8px; height: 8px;
  transform: translateY(-50%);
  background: var(--pm-accent);
  border-radius: 50%;
}

/* Tables */
.pm-table-wrap { margin: 22px 0 8px; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--pm-border); border-radius: var(--pm-radius-md); }
.pm-table { width: 100%; border-collapse: collapse; min-width: 420px; }
.pm-table th, .pm-table td { text-align: left; padding: 14px 16px; font-size: 14.5px; }
.pm-table thead th {
  font-family: var(--pm-font-head);
  font-weight: 700;
  color: #0a0a0a;
  background: var(--pm-accent);
  letter-spacing: 0.01em;
}
.pm-table tbody tr { border-top: 1px solid var(--pm-border); }
.pm-table tbody tr:nth-child(even) { background: var(--pm-surface); }
.pm-table td:first-child { font-weight: 600; color: var(--pm-text); }

/* -------------------------------------------------------------------------- */
/* FAQ — numbered accordion                                                   */
/* -------------------------------------------------------------------------- */
.pm-faq {
  padding: 40px 0 8px;
  border-top: 1px solid var(--pm-border);
  margin-top: 30px;
}
.pm-faq__head {
  margin-bottom: 26px;
  padding: 26px 24px;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(227,255,0,0.12), transparent 55%),
    var(--pm-surface);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-md);
}
.pm-faq__eyebrow {
  font-family: var(--pm-font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--pm-accent); margin-bottom: 10px;
}
.pm-faq__title {
  font-family: var(--pm-font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(28px, 5vw, 44px);
}
.pm-faq__list { display: grid; gap: 10px; counter-reset: pmfaq; }
.pm-faq__item {
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-md);
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease;
}
.pm-faq__item:hover { border-color: var(--pm-border-2); }
.pm-faq__item[open] {
  border-color: rgba(227,255,0,0.5);
  background: var(--pm-surface-2);
}
.pm-faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  counter-increment: pmfaq;
  padding: 18px 56px 18px 20px;
  font-family: var(--pm-font-head);
  font-weight: 700;
  font-size: 16px;
  position: relative;
}
.pm-faq__q::-webkit-details-marker { display: none; }
.pm-faq__q::before {
  content: counter(pmfaq, decimal-leading-zero);
  font-family: var(--pm-font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--pm-accent);
  background: rgba(227,255,0,0.10);
  border: 1px solid rgba(227,255,0,0.35);
  border-radius: 8px;
  padding: 6px 8px;
  line-height: 1;
  flex: 0 0 auto;
}
.pm-faq__q::after {
  content: "";
  position: absolute;
  right: 22px; top: 50%;
  width: 12px; height: 12px;
  transform: translateY(-50%);
  background:
    linear-gradient(var(--pm-accent), var(--pm-accent)) center/12px 2px no-repeat,
    linear-gradient(var(--pm-accent), var(--pm-accent)) center/2px 12px no-repeat;
  transition: transform .25s ease, opacity .2s ease;
}
.pm-faq__item[open] .pm-faq__q::after {
  transform: translateY(-50%) rotate(90deg);
  background:
    linear-gradient(var(--pm-accent), var(--pm-accent)) center/12px 2px no-repeat;
}
.pm-faq__a { padding: 0 22px 22px 66px; color: var(--pm-body); }
.pm-faq__a p { margin: 0; }
@media (max-width: 479px) { .pm-faq__a { padding-left: 22px; } }

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */
.pm-footer {
  background: #000;
  border-top: 1px solid var(--pm-border);
  margin-top: 50px;
  padding: 48px 0 30px;
}
.pm-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--pm-border);
}
.pm-footer__logo img { height: 32px; margin-bottom: 16px; }
.pm-footer__about { color: var(--pm-text-muted); font-size: 14px; max-width: 52ch; }
.pm-footer__nav { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 14px; min-width: 0; max-width: 100%; }
.pm-footer__nav a { color: var(--pm-text-muted); font-size: 14px; font-weight: 500; }
.pm-footer__nav a:hover { color: var(--pm-accent); }
@media (min-width: 768px) {
  .pm-footer__nav { display: flex; flex-wrap: nowrap; align-items: center; gap: 8px 22px; white-space: nowrap; }
  .pm-footer__nav a { flex: 0 0 auto; }
}
.pm-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  color: var(--pm-text-dim);
  font-size: 12.5px;
}
.pm-footer__age {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--pm-font-mono); letter-spacing: 0.06em;
}
.pm-footer__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--pm-accent); color: var(--pm-accent);
  font-family: var(--pm-font-head); font-weight: 800; font-size: 12px;
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  .pm-footer__top { grid-template-columns: 1.4fr minmax(0, 1fr); }
  .pm-footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (min-width: 1024px) {
  .pm-main { padding: 56px 0 30px; }
}

/* -------------------------------------------------------------------------- */
/* Image animations                                                           */
/* -------------------------------------------------------------------------- */
@keyframes pmHeroIn {
  from { opacity: 0; transform: scale(1.08) translateY(14px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes pmKenBurns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.06) translate(-1.5%, -1.5%); }
}
@keyframes pmHeroSweep {
  0%   { transform: translateX(-120%); }
  55%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
@keyframes pmMediaReveal {
  from { opacity: 0; transform: translateY(36px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .pm-hero__media img,
  .pm-hero__media::after,
  .pm-main .pm-media,
  .pm-media img { animation: none !important; transform: none !important; }
}
