/* Mazdi Shop — premium service & editorial pages (flat dark, typography-first, no motion effects) */

:root {
  --mzp-bg: #050508;
  --mzp-surface: #0c0c10;
  --mzp-surface-raised: #121218;
  --mzp-border: rgba(255, 255, 255, 0.08);
  --mzp-border-strong: rgba(200, 175, 110, 0.28);
  --mzp-gold: #c6a24d;
  --mzp-gold-hover: #d4ae58;
  --mzp-text: #e8ecf2;
  --mzp-muted: rgba(200, 210, 222, 0.72);
  --mzp-prose-max: 40rem;
  --mzp-shell: min(1120px, calc(100% - 2rem));
  /*
    Fixed header clearance (site.css .site-header: fixed; .site-header__bar min-height 128px, 88px ≤480px).
    Bar vertical padding ~0.35rem + 0.85rem. Gap below header before hero = premium breathing room.
  */
  --mzp-header-bar-min: 128px;
  --mzp-header-bar-pad-y: calc(0.35rem + 0.85rem);
  --mzp-header-gap: 1.35rem;
  --mzp-content-top-offset: calc(var(--mzp-header-bar-min) + var(--mzp-header-bar-pad-y) + var(--mzp-header-gap));
}

/* All premium service/editorial routes: push main content below fixed header (one system, all pages). */
body.mzp-premium-route .main-content-area {
  padding-top: calc(var(--mzp-content-top-offset) + env(safe-area-inset-top, 0px));
  box-sizing: border-box;
}

@media (max-width: 480px) {
  :root {
    --mzp-header-bar-min: 88px;
    --mzp-header-bar-pad-y: 1rem;
    --mzp-header-gap: 1.1rem;
  }
}

.mzp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mzp-page {
  position: relative;
  background: var(--mzp-bg);
  color: var(--mzp-text);
  padding: 0 0 4rem;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

.mzp-shell {
  width: var(--mzp-shell);
  margin: 0 auto;
}

/* ----- Hero ----- */
.mzp-hero {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--mzp-border);
}

/* After main-area offset, keep hero rhythm tight at the top so total space feels balanced, not stacked. */
body.mzp-premium-route .mzp-hero {
  padding-top: 1.35rem;
}

/* Blog posts use .seo-hero__inner — same premium route, same header clearance. */
body.mzp-premium-route .seo-page--blog-post .seo-hero__inner {
  padding-top: 1.5rem;
  padding-bottom: 1.75rem;
}

.mzp-hero__inner {
  width: var(--mzp-shell);
  margin: 0 auto;
}

.mzp-hero__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mzp-muted);
}

.mzp-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  max-width: 22ch;
  background: linear-gradient(105deg, #f5f2ec 0%, #e5d4a8 38%, #c9a55c 58%, #f2ebe0 78%, #c6a24d 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.mzp-hero__lead {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--mzp-muted);
  max-width: var(--mzp-prose-max);
}

.mzp-hero__lead a {
  color: var(--mzp-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mzp-hero__lead a:hover {
  color: var(--mzp-gold-hover);
}

.mzp-hero__note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(180, 192, 208, 0.65);
  max-width: var(--mzp-prose-max);
}

.mzp-hero__note a {
  color: var(--mzp-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mzp-hero__note a:hover {
  color: var(--mzp-gold-hover);
}

/* ----- Buttons ----- */
.mzp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.mzp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.15rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid var(--mzp-border);
  background: var(--mzp-surface-raised);
  color: var(--mzp-text);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.mzp-btn:hover {
  border-color: rgba(200, 175, 110, 0.4);
  background: #181820;
  color: #fff;
}

.mzp-btn:focus-visible {
  outline: 2px solid rgba(200, 175, 110, 0.5);
  outline-offset: 2px;
}

.mzp-btn--gold {
  background: var(--mzp-gold);
  border-color: #a8863a;
  color: #0e0e10;
}

.mzp-btn--gold:hover {
  background: var(--mzp-gold-hover);
  border-color: #b89245;
  color: #08080a;
}

.mzp-btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}

.mzp-btn--outline:hover {
  border-color: rgba(200, 175, 110, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

/* ----- Sections ----- */
.mzp-section {
  padding: 2.75rem 0;
}

.mzp-section--tight {
  padding: 2rem 0;
}

.mzp-section__title {
  margin: 0 0 1.1rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f4f6fa;
}

.mzp-section__subtitle {
  margin: -0.35rem 0 1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--mzp-muted);
  max-width: var(--mzp-prose-max);
}

.mzp-prose {
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(215, 222, 232, 0.88);
  max-width: var(--mzp-prose-max);
}

.mzp-prose p + p {
  margin-top: 1rem;
}

.mzp-prose strong {
  color: #f0f4f8;
  font-weight: 600;
}

.mzp-panel {
  background: var(--mzp-surface);
  border: 1px solid var(--mzp-border);
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
}

.mzp-panel--flush {
  padding: 0;
  overflow: hidden;
}

/* Coverage grid */
.mzp-coverage {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.mzp-coverage__card {
  padding: 1.15rem 1.2rem;
  background: var(--mzp-surface);
  border: 1px solid var(--mzp-border);
  border-radius: 12px;
}

.mzp-coverage__card h3 {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mzp-gold);
}

.mzp-coverage__card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--mzp-muted);
}

/* Timeline */
.mzp-timeline {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}

.mzp-timeline__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: var(--mzp-surface);
  border: 1px solid var(--mzp-border);
  border-radius: 12px;
}

.mzp-timeline__badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mzp-gold);
  white-space: nowrap;
}

.mzp-timeline__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: #f2f5f9;
}

.mzp-timeline__body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--mzp-muted);
}

/* Steps */
.mzp-steps {
  margin: 0;
  padding-left: 1.2rem;
  max-width: var(--mzp-prose-max);
  color: var(--mzp-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.mzp-steps li + li {
  margin-top: 0.65rem;
}

/* Gallery (grid — overrides carousel .takeover-premium-slide from site.css) */
.mzp-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1rem;
  align-items: start;
}

.mzp-gallery .takeover-premium-slide {
  /* Independent card: reset carousel fixed size + motion that caused overlap */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  margin: 0;
  padding: 0;
  flex-shrink: unset;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 14, 0.92);
  aspect-ratio: 16 / 10;
  cursor: pointer;
  outline: none;
  transform: none;
  backface-visibility: visible;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  z-index: auto;
}

.mzp-gallery .takeover-premium-slide:hover {
  transform: none;
  z-index: auto;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  border-color: rgba(200, 175, 110, 0.28);
}

.mzp-gallery .takeover-premium-slide:focus-visible {
  outline: 2px solid rgba(207, 178, 101, 0.55);
  outline-offset: 2px;
}

.mzp-gallery .takeover-premium-slide img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  display: block;
  box-shadow: none;
  border: none;
  box-sizing: border-box;
  pointer-events: none;
  transform: none;
  backface-visibility: visible;
}

.mzp-gallery .takeover-premium-slide__hover-icon {
  top: 10px;
  right: 10px;
  transform: none;
}

.mzp-gallery .takeover-premium-slide:hover .takeover-premium-slide__hover-icon {
  transform: none;
}

@media (max-width: 768px) {
  .mzp-gallery {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .mzp-gallery .takeover-premium-slide {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }
}

.mzp-hint {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(165, 178, 195, 0.7);
  margin: 0 0 0.75rem;
}

.mzp-code {
  font-size: 0.85em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  word-break: break-all;
}

/* Contact strip */
.mzp-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.mzp-contact-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: var(--mzp-surface);
  border: 1px solid var(--mzp-border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.mzp-contact-card:hover {
  border-color: rgba(200, 175, 110, 0.32);
  background: var(--mzp-surface-raised);
}

.mzp-contact-card i {
  font-size: 1.15rem;
  color: var(--mzp-gold);
  width: 1.5rem;
  text-align: center;
}

.mzp-contact-card__body span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}

.mzp-contact-card__body small {
  display: block;
  font-size: 0.75rem;
  color: var(--mzp-muted);
  margin-top: 0.15rem;
}

/* Internal nav */
.mzp-internal-nav {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--mzp-border);
}

.mzp-internal-nav__label {
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mzp-muted);
}

.mzp-internal-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.mzp-internal-nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(220, 228, 238, 0.85);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.mzp-internal-nav__links a:hover {
  color: var(--mzp-gold);
  border-bottom-color: rgba(200, 175, 110, 0.4);
}

/* FAQ */
.mzp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 44rem;
}

.mzp-faq-item {
  border: 1px solid var(--mzp-border);
  border-radius: 12px;
  background: var(--mzp-surface);
  overflow: hidden;
}

.mzp-faq-item summary {
  padding: 1rem 1.15rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f2f5f9;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.mzp-faq-item summary::after {
  content: "+";
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--mzp-muted);
  flex-shrink: 0;
}

.mzp-faq-item[open] summary::after {
  content: "−";
}

.mzp-faq-item__answer {
  padding: 0 1.15rem 1.1rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--mzp-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.85rem;
}

/* Guides hub */
.mzp-hub-featured {
  display: block;
  padding: 2rem 1.75rem;
  background: var(--mzp-surface);
  border: 1px solid var(--mzp-border-strong);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 2.5rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.mzp-hub-featured:hover {
  border-color: rgba(215, 190, 120, 0.42);
  background: #101016;
}

.mzp-hub-featured__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mzp-gold);
}

.mzp-hub-featured__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
}

.mzp-hub-featured:hover .mzp-hub-featured__title {
  color: #fff;
}

.mzp-hub-featured__excerpt {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--mzp-muted);
  max-width: 42rem;
}

.mzp-hub-featured__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(160, 175, 195, 0.55);
}

.mzp-hub-featured__cta {
  margin-left: auto;
  color: var(--mzp-gold);
  letter-spacing: 0.12em;
}

/* Guides hub: ordered topic clusters */
.mzp-hub-cluster {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mzp-hub-cluster:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.mzp-hub-cluster__heading {
  margin: 0 0 0.65rem;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f4f6fa;
}

.mzp-hub-cluster__blurb {
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
  line-height: 1.58;
  color: var(--mzp-muted);
  max-width: 44rem;
}

.mzp-guides-hub .mzp-hero__lead a {
  color: var(--mzp-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mzp-guides-hub .mzp-hero__lead a:hover {
  color: var(--mzp-gold-hover);
}

.mzp-guides-footer .mzp-internal-nav {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
}

.mzp-hub-group {
  margin-bottom: 2.25rem;
}

.mzp-hub-group__title {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(180, 192, 210, 0.55);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--mzp-border);
}

.mzp-hub-archive {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mzp-hub-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--mzp-border);
  text-decoration: none;
  color: inherit;
  transition: background 0.12s ease;
}

.mzp-hub-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.mzp-hub-row:last-child {
  border-bottom: none;
}

.mzp-hub-row__title {
  display: block;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #eef2f7;
}

.mzp-hub-row__meta {
  font-size: 0.75rem;
  color: var(--mzp-muted);
  white-space: nowrap;
}

.mzp-hub-row__excerpt {
  grid-column: 1 / -1;
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(175, 188, 205, 0.7);
}

/* Contact page two-column */
.mzp-contact-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .mzp-contact-layout {
    grid-template-columns: 1fr;
  }

  .mzp-hero__title {
    max-width: none;
  }
}

.mzp-trust-aside {
  padding: 1.25rem 1.2rem;
  background: var(--mzp-surface);
  border: 1px solid var(--mzp-border);
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--mzp-muted);
}

.mzp-trust-aside h3 {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mzp-gold);
}

.mzp-trust-aside p {
  margin: 0;
}

/* Flatten global atmosphere on premium routes (layout still renders .bg-atmosphere) */
body.mzp-premium-route .bg-atmosphere {
  opacity: 0.12;
}

/* ----- Policy / legal documents (editorial, narrow column, no CTAs) ----- */
.mzp-page--policy .mzp-hero {
  padding-bottom: 1.5rem;
}

.mzp-hero--policy-doc {
  padding-top: 1rem;
  padding-bottom: 1.2rem;
}

.mzp-page--policy .mzp-hero__title {
  max-width: 28ch;
}

.mzp-page--policy .mzp-hero--policy-doc .mzp-hero__title {
  max-width: none;
  background: none;
  -webkit-text-fill-color: #eef1f6;
  background-clip: unset;
  -webkit-background-clip: unset;
  color: #eef1f6;
}

.mzp-page--policy .mzp-hero__lead {
  margin-bottom: 0.85rem;
}

.mzp-hero__lead--tight {
  margin-top: -0.4rem;
  margin-bottom: 0.75rem;
}

.mzp-page--policy .mzp-hero--policy-doc .mzp-policy-softnote {
  margin-top: 0.25rem;
}

.mzp-policy-softnote {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(165, 178, 195, 0.62);
  max-width: var(--mzp-prose-max);
}

.mzp-policy-softnote a {
  color: rgba(198, 162, 77, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mzp-policy-softnote a:hover {
  color: var(--mzp-gold-hover);
}

.mzp-policy-softnote--footer {
  margin-top: 2.25rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--mzp-border);
}

.mzp-policy-article {
  margin: 0 auto;
  padding: 0 0 2.5rem;
  max-width: var(--mzp-prose-max);
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(215, 222, 232, 0.9);
}

.mzp-policy-article h2 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f2f5f9;
}

.mzp-policy-article h3 {
  margin: 1.35rem 0 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(198, 162, 77, 0.88);
}

.mzp-policy-article p {
  margin: 0 0 1rem;
}

.mzp-policy-article p:last-child {
  margin-bottom: 0;
}

.mzp-policy-article ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--mzp-muted);
}

.mzp-policy-article li + li {
  margin-top: 0.45rem;
}

.mzp-policy-article li::marker {
  color: rgba(198, 162, 77, 0.55);
}

.mzp-policy-article a {
  color: rgba(198, 162, 77, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mzp-policy-article a:hover {
  color: var(--mzp-gold-hover);
}

.mzp-policy-section {
  padding-top: 1.85rem;
  margin-top: 1.85rem;
  border-top: 1px solid var(--mzp-border);
}

.mzp-policy-section:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.mzp-policy-crosslinks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.3rem 0.5rem;
  margin: 0 auto 1.5rem;
  padding: 0.85rem 0 0;
  max-width: var(--mzp-prose-max);
  border-top: 1px solid var(--mzp-border);
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(155, 168, 190, 0.55);
}

.mzp-policy-crosslinks a {
  color: rgba(165, 178, 200, 0.62);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.mzp-policy-crosslinks a:hover {
  color: rgba(200, 188, 150, 0.88);
  border-bottom-color: rgba(198, 162, 77, 0.28);
}

.mzp-policy-crosslinks a.is-current {
  color: rgba(198, 175, 120, 0.85);
  border-bottom-color: rgba(198, 162, 77, 0.32);
  pointer-events: none;
}

.mzp-policy-crosslinks__sep {
  color: rgba(255, 255, 255, 0.18);
  user-select: none;
}

@media (max-width: 520px) {
  .mzp-policy-crosslinks__sep {
    display: none;
  }

  .mzp-policy-crosslinks a {
    display: inline-block;
    margin-right: 0.5rem;
  }
}
