:root {
  --pop-deep: #022c1f;
  --pop-green: #0B6B4B;
  --pop-green-mid: #064E3B;
  --pop-gold: #D4AF37;
  --pop-gold-btn: #E8C84A;
  --pop-ink: #121f19;
  --pop-muted: #5d6d65;
  --pop-line: #e5ebe7;
  --pop-bg: #f3f6f4;
  --pop-white: #fff;
  --pop-max: 1180px;
  --pop-pad: clamp(1rem, 3vw, 1.5rem);
  --pop-font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --pop-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html:has(.pop-body),
.pop-body {
  overflow-x: clip;
  max-width: 100%;
}
.pop-body {
  margin: 0;
  font-family: var(--pop-font);
  color: var(--pop-ink);
  background: var(--pop-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.pop-body a { color: inherit; text-decoration: none; }
.pop-body img { max-width: 100%; display: block; }
.pop-main {
  overflow-x: clip;
  max-width: 100%;
}
.pop-wrap {
  width: 100%;
  max-width: var(--pop-max);
  margin-inline: auto;
  padding-left: var(--pop-pad);
  padding-right: var(--pop-pad);
}

/* Top bar */
.pop-topbar {
  background: var(--pop-deep);
  color: rgba(255,255,255,0.92);
  font-size: 0.78rem;
  font-weight: 600;
}
.pop-topbar-inner {
  min-height: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}
.pop-topbar p { margin: 0; }
.pop-topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
}
.pop-topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.92);
}
.pop-topbar-links a:hover { color: var(--pop-gold); }
.pop-topbar-login { font-weight: 800; }

/* Header */
.pop-header {
  background: var(--pop-white);
  border-bottom: 1px solid var(--pop-line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.pop-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.pop-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.pop-brand-crests {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}
.pop-brand-crests img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--pop-line);
  object-fit: contain;
}
.pop-brand-text { display: grid; gap: 0.12rem; min-width: 0; }
.pop-brand-text strong {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #0a1611;
  line-height: 1.15;
}
.pop-brand-text small {
  color: var(--pop-muted);
  font-size: 0.74rem;
  font-weight: 600;
}
.pop-brand--footer .pop-brand-text strong,
.pop-brand--footer .pop-brand-text small { color: #fff; }
.pop-brand--footer .pop-brand-text small { opacity: 0.8; }
.pop-nav {
  display: none;
  align-items: center;
  gap: 0.15rem 1rem;
  flex-wrap: wrap;
}
.pop-nav a {
  font-size: 0.86rem;
  font-weight: 700;
  color: #1a2a22;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}
.pop-nav a:hover,
.pop-nav a.is-active {
  color: var(--pop-green);
  border-bottom-color: var(--pop-green);
}
.pop-nav-toggle {
  display: inline-grid;
  gap: 5px;
  border: 0;
  background: transparent;
  padding: 0.4rem;
  cursor: pointer;
}
.pop-nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--pop-deep);
  display: block;
}
@media (min-width: 1040px) {
  .pop-nav { display: flex; }
  .pop-nav-toggle { display: none; }
}
@media (max-width: 1039px) {
  .pop-body.pop-nav-open .pop-nav {
    display: grid;
    position: absolute;
    left: 0; right: 0;
    top: calc(38px + 78px);
    background: #fff;
    border-bottom: 1px solid var(--pop-line);
    padding: 0.85rem var(--pop-pad) 1.1rem;
    gap: 0.4rem;
    box-shadow: 0 12px 24px rgba(3,53,40,0.08);
  }
}

/* Hero — contained to the same max-width as page content */
.pop-hero-band {
  background: var(--pop-bg);
  padding: 0 0 0.25rem;
  overflow: hidden;
}
.pop-hero-band > .pop-wrap {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.pop-hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: clamp(420px, 62vh, 540px);
  background: var(--pop-deep);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  border-radius: 14px;
  contain: paint;
}
@media (min-width: 960px) {
  .pop-hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}
.pop-hero-panel {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.pop-hero-panel--copy {
  background: linear-gradient(160deg, #022c1f 0%, #064E3B 55%, #0a5c42 100%);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pop-hero-copy {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.25rem, 3vw, 2.25rem);
  box-sizing: border-box;
}
.pop-kicker {
  margin: 0 0 0.75rem;
  color: var(--pop-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pop-hero h1 {
  margin: 0 0 0.55rem;
  font-family: var(--pop-serif);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  max-width: 14ch;
}
.pop-hero-sub {
  margin: 0 0 0.85rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: rgba(255,255,255,0.94);
}
.pop-hero-lead {
  margin: 0 0 1.35rem;
  max-width: 36rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.98rem;
}
.pop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.pop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
}
.pop-btn--gold {
  background: var(--pop-gold-btn);
  color: #122018;
  border-color: var(--pop-gold-btn);
}
.pop-btn--gold:hover { filter: brightness(1.04); }
.pop-btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.78);
  color: #fff;
}
.pop-btn--outline:hover { background: rgba(255,255,255,0.08); }
.pop-btn--green {
  background: var(--pop-green);
  color: #fff;
  border-color: var(--pop-green);
}
.pop-btn--green:hover { filter: brightness(1.05); }
.pop-btn--ghost {
  background: #fff;
  color: var(--pop-ink);
  border-color: #cfd8d3;
}
.pop-btn--ghost:hover { border-color: var(--pop-green); color: var(--pop-green); }

.pop-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
@media (min-width: 700px) {
  .pop-trust { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.pop-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.pop-trust i {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.55);
  background: rgba(212,175,55,0.12);
  color: var(--pop-gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pop-hero-panel--media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  isolation: isolate;
  background-color: #022c1f;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pop-hero-panel--media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(2,26,18,0.12), rgba(2,26,18,0.42));
  pointer-events: none;
}
.pop-hero-float {
  position: absolute;
  z-index: 2;
  inset: auto 0.85rem 0.85rem auto;
  display: grid;
  gap: 0.65rem;
  width: min(260px, calc(100% - 1.7rem));
  max-width: calc(100% - 1.7rem);
  box-sizing: border-box;
  overflow: hidden;
}
@media (min-width: 960px) {
  .pop-hero-panel--media { min-height: 100%; }
  .pop-hero-float {
    inset: auto 1.25rem 1.25rem auto;
    width: min(260px, calc(100% - 2.5rem));
    max-width: calc(100% - 2.5rem);
  }
}
.pop-float-card {
  background: rgba(2, 34, 24, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
  max-width: 100%;
}
.pop-float-card--title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.pop-float-card--title img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  flex-shrink: 0;
}
.pop-float-card--title span {
  display: block;
  color: var(--pop-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pop-float-card--status strong {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  background: rgba(34,197,94,0.18);
  color: #86efac;
  border: 1px solid rgba(134,239,172,0.4);
}
.pop-float-card--status dl {
  margin: 0;
  display: grid;
  gap: 0.45rem;
}
.pop-float-card--status div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.84rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 0.4rem;
}
.pop-float-card--status dt { color: rgba(255,255,255,0.7); font-weight: 600; }
.pop-float-card--status dd { margin: 0; font-weight: 800; color: var(--pop-gold); }

/* Sections */
.pop-section { padding: 2.75rem 0; }
.pop-section--white { background: #fff; }
.pop-section--muted { background: #eef2f0; }
.pop-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}
.pop-section-head--center { justify-content: center; text-align: center; }
.pop-section-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  color: var(--pop-deep);
}
.pop-section-link {
  color: var(--pop-green);
  font-weight: 800;
  font-size: 0.9rem;
}
.pop-eyebrow {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--pop-green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pop-empty { color: var(--pop-muted); }

.pop-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.pop-tabs a {
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--pop-line);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--pop-muted);
}
.pop-tabs a.is-active,
.pop-tabs a:hover {
  background: var(--pop-green);
  border-color: var(--pop-green);
  color: #fff;
}

/* Cards */
.pop-cards {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .pop-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1080px) {
  .pop-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.pop-card {
  background: #fff;
  border: 1px solid var(--pop-line);
  border-radius: 14px;
  padding: 1.15rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  box-shadow: 0 8px 22px rgba(3,53,40,0.05);
  min-height: 100%;
}
.pop-card-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(11,107,75,0.14), rgba(212,175,55,0.16));
  border: 1px solid rgba(11,107,75,0.22);
  color: var(--pop-green);
  margin-bottom: 0.15rem;
}
.pop-card-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke-width: 2;
}
.pop-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}
.pop-badge {
  display: inline-block;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.pop-badge--open { background: #dcfce7; color: #166534; }
.pop-badge--upcoming { background: #fef3c7; color: #92400e; }
.pop-badge--coming_soon { background: #dbeafe; color: #1d4ed8; }
.pop-badge--closed { background: #f3f4f6; color: #4b5563; }
.pop-cat {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pop-muted);
}
.pop-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.3;
  color: var(--pop-deep);
}
.pop-card h3 a:hover { color: var(--pop-green); }
.pop-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--pop-muted);
  flex: 1;
}
.pop-card-date {
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: var(--pop-ink) !important;
}
.pop-card .pop-btn { width: 100%; margin-top: 0.2rem; }

/* Categories */
.pop-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
@media (min-width: 800px) {
  .pop-cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1080px) {
  .pop-cat-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
.pop-cat-tile {
  background: #fff;
  border: 1px solid var(--pop-line);
  border-radius: 14px;
  padding: 1.25rem 0.9rem 1.15rem;
  text-align: center;
  transition: 0.2s ease;
  min-height: 150px;
}
.pop-cat-tile:hover {
  border-color: rgba(11,107,75,0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(3,53,40,0.08);
}
.pop-cat-ico {
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 auto 0.8rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #064E3B, #0B6B4B);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(6,78,59,0.22);
  border: 1px solid rgba(212,175,55,0.35);
}
.pop-cat-ico svg {
  width: 1.55rem;
  height: 1.55rem;
}
.pop-cat-tile strong {
  display: block;
  font-size: 0.92rem;
  color: var(--pop-deep);
  margin-bottom: 0.25rem;
}
.pop-cat-tile span:last-child {
  display: block;
  font-size: 0.75rem;
  color: var(--pop-muted);
  font-weight: 600;
  line-height: 1.35;
}

/* Process */
.pop-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 980px) {
  .pop-process {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0.35rem;
  }
}
.pop-process li {
  position: relative;
  background: #fff;
  border: 1px solid var(--pop-line);
  border-radius: 12px;
  padding: 1rem 0.55rem 0.9rem;
  text-align: center;
  display: grid;
  gap: 0.4rem;
  justify-items: center;
}
.pop-process-ico {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(11,107,75,0.1);
  border: 1px solid rgba(11,107,75,0.25);
  color: var(--pop-green);
  display: grid;
  place-items: center;
}
.pop-process-ico svg {
  width: 1.2rem;
  height: 1.2rem;
}
.pop-process-num {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--pop-green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.pop-process strong {
  font-size: 0.74rem;
  color: var(--pop-deep);
  line-height: 1.25;
}
.pop-process-arrow {
  display: none;
  position: absolute;
  right: -0.45rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pop-green);
  font-style: normal;
  font-weight: 800;
  z-index: 1;
}
@media (min-width: 980px) {
  .pop-process-arrow { display: block; }
}

/* Utils */
.pop-utils {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .pop-utils { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.pop-util {
  background: #fff;
  border: 1px solid var(--pop-line);
  border-radius: 14px;
  padding: 1.2rem;
}
.pop-util--accent { background: #f8fbf9; }
.pop-util-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.pop-util-ico {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #064E3B, #0B6B4B);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 8px 16px rgba(6,78,59,0.18);
}
.pop-util-ico svg {
  width: 1.2rem;
  height: 1.2rem;
}
.pop-util h3 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--pop-deep);
}
.pop-dl-ico {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 8px;
  background: rgba(11,107,75,0.1);
  color: var(--pop-green);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.pop-dl-ico svg {
  width: 0.9rem;
  height: 0.9rem;
}
.pop-downloads a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.pop-util ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.pop-util li a {
  color: var(--pop-green);
  font-weight: 700;
  font-size: 0.9rem;
}
.pop-util li a:hover { text-decoration: underline; }
.pop-util p {
  margin: 0 0 0.9rem;
  color: var(--pop-muted);
  font-size: 0.9rem;
}

/* Results */
.pop-results {
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 800px) {
  .pop-results { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.pop-result-tile {
  background: linear-gradient(160deg, var(--pop-deep), var(--pop-green-mid));
  color: #fff;
  border-radius: 14px;
  padding: 1.2rem;
}
.pop-result-tile strong { display: block; margin-bottom: 0.35rem; }
.pop-result-tile p { margin: 0 0 0.9rem; opacity: 0.85; font-size: 0.86rem; }

/* Detail page */
.pop-detail {
  background: #fff;
  border: 1px solid var(--pop-line);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 820px;
}
.pop-detail h1 { margin: 0.35rem 0 0.75rem; color: var(--pop-deep); font-size: 1.6rem; }
.pop-detail-meta {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.25rem;
}
@media (min-width: 640px) {
  .pop-detail-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.pop-detail-meta div {
  border: 1px solid var(--pop-line);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  background: var(--pop-bg);
}
.pop-detail-meta span {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pop-muted);
  margin-bottom: 0.2rem;
}
.pop-detail-meta strong { font-size: 0.95rem; }
.pop-detail .body { white-space: pre-line; color: var(--pop-ink); }

/* Footer */
.pop-footer {
  background: var(--pop-deep);
  color: rgba(244,250,247,0.88);
  padding-top: 2.75rem;
}
.pop-footer-grid {
  display: grid;
  gap: 1.75rem;
  padding-bottom: 2rem;
}
@media (min-width: 800px) {
  .pop-footer-grid { grid-template-columns: 1.45fr 1fr 1fr 1.1fr; }
}
.pop-footer h4 {
  margin: 0 0 0.8rem;
  color: var(--pop-gold);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pop-footer ul { list-style: none; margin: 0; padding: 0; }
.pop-footer li { margin-bottom: 0.42rem; }
.pop-footer a { color: rgba(244,250,247,0.78); font-size: 0.9rem; }
.pop-footer a:hover { color: #fff; }
.pop-footer-brand p {
  margin: 0.85rem 0;
  font-size: 0.88rem;
  color: rgba(244,250,247,0.72);
  max-width: 28rem;
}
.pop-social { display: flex; gap: 0.45rem; }
.pop-social a {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
}
.pop-secure-badge {
  margin-top: 1rem;
  display: grid;
  gap: 0.25rem;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(212,175,55,0.45);
  width: fit-content;
}
.pop-secure-badge span {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
}
.pop-secure-badge strong {
  color: var(--pop-gold);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pop-footer-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.95rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.18);
}
.pop-footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}
