/* ============================================================
   IO Sound Studio — Via, Veritas, Et Vita Album Page
   album.css
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  background: var(--night);
  color: var(--on-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

ul,
ol {
  list-style: none;
}

[hidden] {
  display: none !important;
}

/* ── CSS VARIABLES — sampled from the album-art sunrise ───── */
:root {
  --night: #1c1224;
  --night-2: #2a1a33;
  --plum: #4a2a4f;
  --mauve: #a8739f;
  --pink: #ee86a9;
  --rose: #f7b2c0;
  --coral: #ff8a5c;
  --amber: #ffb562;
  --gold: #ffd89a;
  --cream: #fff4ea;
  --cream-2: #ffe9dc;
  --ink: #2a1a2e;
  --ink-muted: rgba(42, 26, 46, 0.7);
  --on-dark: #fbeee6;
  --on-dark-muted: rgba(251, 238, 230, 0.72);
  --border-dark: rgba(255, 216, 180, 0.16);
  --border-light: rgba(42, 26, 46, 0.1);
  --sunrise: linear-gradient(100deg, #ffb562 0%, #ff8a5c 38%, #ee86a9 72%, #b884c4 100%);
  --sunrise-text: linear-gradient(95deg, #ffc57a 0%, #ff9466 40%, #f290b2 100%);
  --container: 1160px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --blackletter: 'UnifrakturMaguntia', 'Cormorant Garamond', Georgia, serif;
}

/* ── UTILITY ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}

.eyebrow-dark {
  color: #c4573a;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  background: var(--sunrise-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-underline {
  width: 60px;
  height: 3px;
  background: var(--sunrise);
  margin: 0 auto 56px;
  border-radius: 2px;
}

.btn-sunrise {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 999px;
  background: var(--sunrise);
  color: var(--night);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 30px -10px rgba(255, 138, 92, 0.6);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-sunrise:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px rgba(238, 134, 169, 0.7);
}

.btn-sm {
  padding: 11px 24px;
  font-size: 13px;
}

.btn-ghost {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 216, 180, 0.45);
  color: var(--on-dark);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  background: rgba(255, 216, 180, 0.1);
  border-color: var(--gold);
}

/* ── EVENT BANNER ─────────────────────────────────────────── */
.event-banner {
  position: relative;
  z-index: 101;
  background: var(--sunrise);
  color: var(--night);
}

.event-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 11px 56px 11px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 1.45;
}

.event-banner strong {
  font-weight: 700;
}

.event-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--night);
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.8); }
}

.event-banner-link {
  font-weight: 700;
  border-bottom: 1.5px solid currentColor;
  white-space: nowrap;
}

.event-banner-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: rgba(28, 18, 36, 0.12);
  color: var(--night);
  cursor: pointer;
  transition: background 0.2s;
}

.event-banner-close:hover {
  background: rgba(28, 18, 36, 0.22);
}

/* ── NAV ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(28, 18, 36, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
}

.nav-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--on-dark);
}

.nav-logo span {
  background: var(--sunrise-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--on-dark-muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--on-dark);
}

.nav-cta {
  padding: 9px 22px;
  border-radius: 999px;
  background: var(--sunrise);
  color: var(--night) !important;
  font-weight: 700 !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--on-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(28, 18, 36, 0.97);
  border-bottom: 1px solid var(--border-dark);
  padding: 24px 32px;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  font-size: 16px;
  color: var(--on-dark);
}

.mobile-menu .nav-cta {
  align-self: flex-start;
}

.mobile-menu.open {
  display: flex;
}

/* ── SKY GLOW (shared background) ─────────────────────────── */
.sky-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 55% at 18% 18%, rgba(255, 181, 98, 0.32) 0%, transparent 70%),
    radial-gradient(50% 45% at 85% 8%, rgba(238, 134, 169, 0.28) 0%, transparent 70%),
    radial-gradient(70% 50% at 50% 60%, rgba(168, 115, 159, 0.18) 0%, transparent 75%);
}

.sky-glow-low {
  background:
    radial-gradient(60% 50% at 50% 100%, rgba(255, 138, 92, 0.25) 0%, transparent 70%),
    radial-gradient(40% 40% at 10% 90%, rgba(238, 134, 169, 0.2) 0%, transparent 70%);
}

/* ── DONATE SECTION ───────────────────────────────────────── */
.donate-section {
  position: relative;
  padding: 80px 0 110px;
  background: linear-gradient(180deg, var(--night) 0%, var(--night-2) 55%, var(--night) 100%);
  overflow: hidden;
}

.donate-section > .container {
  position: relative;
}

.donate-hero {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 110px;
}

.cover-wrap {
  position: relative;
}

.cover-wrap::before {
  content: '';
  position: absolute;
  inset: -8%;
  background: var(--sunrise);
  filter: blur(60px);
  opacity: 0.45;
  border-radius: 50%;
  z-index: 0;
}

.cover-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

.album-title {
  font-family: var(--blackletter);
  font-weight: 400;
  font-size: clamp(46px, 6.4vw, 84px);
  line-height: 1.05;
  color: var(--cream);
  text-shadow: 0 0 40px rgba(255, 181, 98, 0.35);
  margin-bottom: 18px;
}

.album-verse {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--rose);
  margin-bottom: 22px;
}

.album-verse span {
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  margin-left: 8px;
  white-space: nowrap;
}

.donate-lede {
  font-size: 18px;
  color: var(--on-dark-muted);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.help-head {
  text-align: center;
}

.help-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 28px;
  align-items: start;
}

.help-card {
  position: relative;
  background: rgba(255, 244, 234, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  padding: 40px 36px;
}

.help-card > p {
  color: var(--on-dark-muted);
  margin-bottom: 26px;
}

.help-card strong {
  color: var(--on-dark);
  font-weight: 600;
}

.help-num {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 6px;
}

.help-card h3 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--cream);
}

.prayer-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.prayer-list li {
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255, 244, 234, 0.05);
  border-left: 3px solid var(--pink);
  color: var(--on-dark-muted);
  font-size: 15px;
}

.prayer-list li:nth-child(2) { border-left-color: var(--coral); }
.prayer-list li:nth-child(3) { border-left-color: var(--amber); }

.prayer-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 2px;
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.pay-tile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255, 244, 234, 0.07);
  border: 1px solid var(--border-dark);
  transition: border-color 0.2s, background 0.2s;
}

.pay-tile:hover {
  border-color: rgba(255, 181, 98, 0.5);
  background: rgba(255, 244, 234, 0.1);
}

.pay-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}

.pay-handle {
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  word-break: break-all;
}

.pay-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.pay-open,
.pay-copy {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.pay-open {
  background: var(--cream);
  color: var(--night);
}

.pay-open:hover {
  background: var(--gold);
}

.pay-copy {
  background: transparent;
  border: 1px solid rgba(255, 216, 180, 0.4);
  color: var(--on-dark);
}

.pay-copy:hover {
  border-color: var(--gold);
}

.pay-copy.copied {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--night);
}

.pay-tile-feature {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(120deg, rgba(255, 181, 98, 0.16), rgba(238, 134, 169, 0.16));
  border-color: rgba(255, 181, 98, 0.35);
}

.pay-feature-text p {
  color: var(--on-dark);
  font-weight: 600;
  margin: 4px 0 6px;
}

.pay-feature-text ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pay-feature-text li {
  font-size: 14px;
  color: var(--on-dark-muted);
  padding-left: 18px;
  position: relative;
}

.pay-feature-text li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 11px;
  top: 3px;
}

.pay-tile-feature .btn-sunrise {
  flex-shrink: 0;
}

.give-notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 216, 180, 0.3);
  font-size: 13px;
  color: var(--on-dark-muted);
}

/* ── ABOUT THE ALBUM ──────────────────────────────────────── */
.album-section {
  position: relative;
  padding: 120px 0 110px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  color: var(--ink);
  overflow: hidden;
}

.album-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 90px;
}

.album-text > p {
  color: var(--ink-muted);
  font-size: 17px;
  margin-bottom: 22px;
}

.album-text em {
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
}

.album-heading {
  font-family: var(--serif);
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}

.album-text > .album-pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.35;
  color: #b0506a;
  margin-bottom: 30px;
}

.event-card {
  padding: 24px 26px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px -24px rgba(176, 80, 106, 0.35);
  margin-bottom: 28px;
}

.event-card p {
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}

.event-meta span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c4573a;
}

.event-card-link {
  font-size: 14px;
  font-weight: 700;
  color: #c4573a;
  border-bottom: 1.5px solid currentColor;
}

/* Portrait — the white studio backdrop melts into the cream section
   via multiply, and a sunrise halo glows behind his upturned face. */
.portrait-wrap {
  position: relative;
  isolation: isolate;
}

.portrait-halo {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(38% 34% at 36% 30%, rgba(255, 181, 98, 0.75) 0%, rgba(255, 138, 92, 0.35) 45%, transparent 75%),
    radial-gradient(45% 40% at 60% 22%, rgba(238, 134, 169, 0.45) 0%, transparent 70%);
  filter: blur(8px);
}

.portrait-wrap img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 50% 52% at 50% 46%, #000 62%, transparent 100%);
  mask-image: radial-gradient(ellipse 50% 52% at 50% 46%, #000 62%, transparent 100%);
}

.portrait-wrap figcaption {
  position: absolute;
  right: 0;
  bottom: 6%;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-muted);
}

.story-arc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
  position: relative;
}

.story-arc::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, #7fae6a 0%, #c4573a 50%, var(--amber) 100%);
  opacity: 0.5;
}

.arc-step {
  position: relative;
  text-align: center;
  padding: 0 12px;
}

.arc-num {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--coral);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: #c4573a;
  position: relative;
}

.arc-step:nth-child(1) .arc-num { border-color: #7fae6a; color: #4e7a3c; }
.arc-step:nth-child(3) .arc-num { border-color: var(--amber); color: #b3701f; }

.arc-step h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.arc-step p {
  font-size: 15px;
  color: var(--ink-muted);
}

.process-note {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 36px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border-light);
  text-align: center;
}

.process-note h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-note p {
  color: var(--ink-muted);
}

.process-note a {
  color: #c4573a;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

/* ── MORE FROM I/O ────────────────────────────────────────── */
.more-section {
  position: relative;
  padding: 110px 0;
  background: var(--night);
  overflow: hidden;
}

.more-section > .container {
  position: relative;
}

.more-sub {
  text-align: center;
  color: var(--on-dark-muted);
  font-size: 17px;
  margin: -32px 0 40px;
}

.spotify-embed {
  max-width: 860px;
  margin: 0 auto 32px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.6);
}

.spotify-embed iframe {
  display: block;
  border: 0;
}

.stream-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 72px;
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 216, 180, 0.35);
  font-size: 14px;
  font-weight: 600;
  color: var(--on-dark);
  transition: background 0.2s, border-color 0.2s;
}

.stream-btn:hover {
  background: rgba(255, 216, 180, 0.1);
  border-color: var(--gold);
}

.studio-plug {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 18px;
  border: 1px solid var(--border-dark);
  background: rgba(255, 244, 234, 0.04);
}

.studio-plug p {
  color: var(--on-dark-muted);
}

.studio-plug strong {
  color: var(--on-dark);
  font-weight: 600;
}

.studio-plug .btn-ghost {
  flex-shrink: 0;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border-dark);
  padding: 48px 0;
  background: var(--night);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-logo span {
  background: var(--sunrise-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}

.footer-links a {
  font-size: 13px;
  color: var(--on-dark-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--on-dark);
}

.footer-copy {
  font-size: 12px;
  color: rgba(251, 238, 230, 0.45);
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .event-banner-dot { animation: none; }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .donate-hero {
    gap: 44px;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .album-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .nav {
    padding: 0 16px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    padding: 24px 16px;
  }

  .event-banner-inner {
    padding: 10px 52px 10px 16px;
    font-size: 13px;
    justify-content: flex-start;
    text-align: left;
  }

  .event-banner-dot {
    display: none;
  }

  .donate-section {
    padding: 48px 0 80px;
  }

  .donate-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }

  .cover-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .help-card {
    padding: 30px 20px;
  }

  .help-card h3 {
    font-size: 38px;
  }

  .pay-grid {
    grid-template-columns: 1fr;
  }

  .pay-tile-feature {
    flex-direction: column;
    align-items: flex-start;
  }

  .album-section {
    padding: 80px 0;
  }

  .album-inner {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
  }

  .portrait-wrap {
    max-width: 440px;
    margin: 0 auto;
    order: -1;
  }

  .story-arc {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-arc::before {
    display: none;
  }

  .process-note {
    padding: 28px 20px;
  }

  .more-section {
    padding: 80px 0;
  }

  .studio-plug {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }
}
