/* ===== Taman Bermain Anak — style "Storybook Slides" (eksekusi slide presentasi full-layar) ===== */

:root {
  --ink: #24163f;
  --ink-muted: #6a5c85;
  --surface: #ffffff;
  --hairline: rgba(36, 22, 63, 0.12);
  --primary: #ff3d81;
  --primary-dark: #d81f66;
  --secondary: #00cfc1;
  --accent: #ffcb3d;
  --grass: #5fd068;
  --violet: #6c3fc5;
  --dark: #170f2e;
  --success: #2fb380;
  --danger: #ef4d67;
  --radius: 22px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --shadow: 0 16px 36px rgba(36, 22, 63, 0.14);
  --shadow-lg: 0 30px 64px rgba(36, 22, 63, 0.22);
  --ease: 260ms cubic-bezier(.22, .61, .36, 1);
  --build-ease: 620ms cubic-bezier(.2, .7, .2, 1);
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--accent));
}

/* Palet per-slide (light theme) */
.slide[data-bg="pink"]       { --slide-bg-a: #ffe0ee; --slide-bg-b: #ffd0e6; --slide-ink: #3a1230; }
.slide[data-bg="turquoise"]  { --slide-bg-a: #dffbf8; --slide-bg-b: #c8f3ee; --slide-ink: #0b3934; }
.slide[data-bg="yellow"]     { --slide-bg-a: #fff6d9; --slide-bg-b: #ffedb0; --slide-ink: #4a3a05; }
.slide[data-bg="green"]      { --slide-bg-a: #e6fbea; --slide-bg-b: #d3f6da; --slide-ink: #123a1a; }
.slide[data-bg="purple"]     { --slide-bg-a: #6c3fc5; --slide-bg-b: #4b2a8f; --slide-ink: #ffffff; }

[data-theme="dark"] .slide[data-bg="pink"]      { --slide-bg-a: #4a1030; --slide-bg-b: #33081f; --slide-ink: #ffe3f0; }
[data-theme="dark"] .slide[data-bg="turquoise"] { --slide-bg-a: #063f3a; --slide-bg-b: #042a27; --slide-ink: #d8fffb; }
[data-theme="dark"] .slide[data-bg="yellow"]    { --slide-bg-a: #4a3a05; --slide-bg-b: #332801; --slide-ink: #fff3cf; }
[data-theme="dark"] .slide[data-bg="green"]     { --slide-bg-a: #123a1a; --slide-bg-b: #0b2811; --slide-ink: #dcffe4; }
[data-theme="dark"] .slide[data-bg="purple"]    { --slide-bg-a: #3a2170; --slide-bg-b: #241249; --slide-ink: #f4ecff; }

[data-theme="dark"] {
  --ink: #f4ecff;
  --ink-muted: #c3b5e0;
  --surface: #241a3d;
  --hairline: rgba(255, 255, 255, 0.12);
  --dark: #0d0819;
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

html, body { height: 100%; margin: 0; overflow: hidden; }
body {
  font-family: "Quicksand", system-ui, sans-serif;
  color: var(--ink);
  background: var(--dark);
}
h1, h2, h3, .brand, .pkg-tier { font-family: "Fredoka", "Quicksand", sans-serif; margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.text-pop { background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.chip-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.6);
  padding: 8px 16px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.82rem;
  color: var(--primary-dark); margin-bottom: 16px; box-shadow: var(--shadow);
}
.chip-eyebrow.light-on-dark { background: rgba(255,255,255,0.16); color: #fff; }
[data-theme="dark"] .chip-eyebrow { background: rgba(0,0,0,0.28); color: var(--accent); }

/* ===== Buttons ===== */
.btn-solid, .btn-outline {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.94rem; cursor: pointer; border: none; font-family: inherit;
  transition: transform var(--ease), box-shadow var(--ease); white-space: nowrap;
}
.btn-solid { background: var(--gradient-primary); color: #2b1620; box-shadow: 0 10px 0 var(--primary-dark), 0 16px 30px rgba(255,61,129,0.3); }
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 13px 0 var(--primary-dark), 0 20px 34px rgba(255,61,129,0.4); }
.btn-solid:active { transform: translateY(4px); box-shadow: 0 6px 0 var(--primary-dark); }
.btn-outline { background: rgba(255,255,255,0.7); color: var(--ink); border: 2px solid var(--hairline); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }
.btn-lg { padding: 17px 32px; font-size: 1rem; }

/* ===== Chrome (persistent overlay UI) ===== */
.progress-bar { position: fixed; top: 0; left: 0; height: 4px; background: var(--gradient-primary); z-index: 80; transition: width 0.4s ease; width: 10%; }
.chrome-bar { position: fixed; top: 18px; left: 24px; right: 24px; z-index: 70; display: flex; justify-content: space-between; align-items: center; pointer-events: none; }
.chrome-bar > * { pointer-events: auto; }
.brand { font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; gap: 8px; color: var(--primary); background: rgba(255,255,255,0.75); padding: 8px 16px; border-radius: var(--radius-pill); box-shadow: var(--shadow); }
[data-theme="dark"] .brand { background: rgba(20,14,36,0.7); color: var(--accent); }
.chrome-actions { display: flex; align-items: center; gap: 10px; }
.chrome-cta { padding: 10px 20px; font-size: 0.84rem; box-shadow: 0 6px 0 var(--primary-dark); }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; border: none; background: rgba(255,255,255,0.75); color: var(--ink); display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow); transition: transform var(--ease); }
[data-theme="dark"] .icon-btn { background: rgba(20,14,36,0.7); color: var(--ink); }
.icon-btn:hover { transform: scale(1.08) rotate(-6deg); }

/* ===== Slide dot navigation ===== */
.slide-dots { position: fixed; right: 22px; top: 50%; transform: translateY(-50%); z-index: 70; display: flex; flex-direction: column; gap: 12px; }
.dot { position: relative; width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.8); background: transparent; cursor: pointer; padding: 0; transition: all var(--ease); box-shadow: 0 0 0 2px rgba(0,0,0,0.06); }
.dot.active { background: var(--primary); border-color: var(--primary); height: 28px; border-radius: var(--radius-pill); }
.dot-tooltip { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); white-space: nowrap; background: var(--surface); color: var(--ink); font-size: 0.76rem; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-sm); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity var(--ease); }
.dot:hover .dot-tooltip { opacity: 1; }

.slide-counter { position: fixed; left: 24px; bottom: 22px; z-index: 70; font-weight: 700; font-family: "Fredoka", sans-serif; font-size: 0.9rem; background: rgba(255,255,255,0.75); padding: 8px 16px; border-radius: var(--radius-pill); box-shadow: var(--shadow); }
[data-theme="dark"] .slide-counter { background: rgba(20,14,36,0.7); }

.slide-arrow { position: fixed; right: 24px; z-index: 70; width: 46px; height: 46px; border-radius: 50%; border: none; background: var(--surface); color: var(--primary); cursor: pointer; box-shadow: var(--shadow-lg); display: grid; place-items: center; transition: transform var(--ease), opacity var(--ease); }
.slide-arrow:hover { transform: scale(1.1); }
.slide-arrow:disabled { opacity: 0.35; cursor: default; transform: none; }
.arrow-up { bottom: 148px; }
.arrow-down { bottom: 96px; }

@media (max-width: 860px) {
  .slide-dots { right: 10px; gap: 8px; }
  .dot { width: 9px; height: 9px; }
  .dot.active { height: 20px; }
  .dot-tooltip { display: none; }
  .chrome-cta span, .chrome-cta { font-size: 0.78rem; padding: 9px 14px; }
  .slide-arrow { display: none; }
  .slide-counter { display: none; }
}

/* ===== Slides wrapper (scroll-snap engine) ===== */
.slides-wrapper { height: 100%; overflow-y: scroll; scroll-snap-type: y mandatory; scroll-behavior: smooth; }
.slide {
  min-height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex; align-items: center; justify-content: center;
  padding: 110px 24px 60px;
  background: linear-gradient(160deg, var(--slide-bg-a), var(--slide-bg-b));
  color: var(--slide-ink);
  position: relative;
  overflow-y: auto;
}
.slide-inner { max-width: 1080px; width: 100%; margin: 0 auto; }

/* ===== Build-in stagger animation ===== */
.build-in {
  opacity: 0;
  transform: translateY(34px) scale(0.94);
  transition: opacity var(--build-ease), transform var(--build-ease);
  transition-delay: calc((var(--stagger, 1) - 1) * 100ms);
}
.slide.slide-active .build-in { opacity: 1; transform: translateY(0) scale(1); }
.stagger-1 { --stagger: 1; } .stagger-2 { --stagger: 2; } .stagger-3 { --stagger: 3; }
.stagger-4 { --stagger: 4; } .stagger-5 { --stagger: 5; } .stagger-6 { --stagger: 6; }

/* ===== Hero slide ===== */
.hero-slide { text-align: center; position: relative; }
.hero-slide h1 { font-size: clamp(2.1rem, 5.6vw, 3.6rem); line-height: 1.14; margin: 0 0 18px; }
.hero-slide p { max-width: 560px; margin: 0 auto 28px; font-size: 1.08rem; color: var(--ink-muted); line-height: 1.6; }
.hero-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-shapes { margin-top: 40px; max-width: 320px; margin-left: auto; margin-right: auto; }
.hero-shapes img { animation: bob 3.4s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-16px) rotate(1.5deg); } }

/* ===== About slide ===== */
.about-slide { text-align: center; }
.about-slide h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.about-slide p { max-width: 620px; margin: 0 auto 26px; color: var(--ink-muted); line-height: 1.65; }
.about-points { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.about-points div { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.7); padding: 12px 18px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.9rem; box-shadow: var(--shadow); }
[data-theme="dark"] .about-points div { background: rgba(0,0,0,0.25); }
.about-points i { color: var(--secondary); }
.about-mascot { max-width: 200px; margin: 0 auto; animation: bob 4s ease-in-out infinite; }

/* ===== Zone slide ===== */
.zone-slide { text-align: center; }
.zone-slide h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 30px; }
.zone-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.zone-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 26px 14px; border: none; cursor: pointer;
  border-radius: var(--radius); font-family: inherit; box-shadow: var(--shadow); transition: transform var(--ease), box-shadow var(--ease);
}
.zone-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lg); }
.zone-card i { font-size: 1.7rem; }
.zone-card-name { font-weight: 800; font-size: 0.98rem; }
.zone-card-age { font-size: 0.78rem; opacity: 0.75; }
.zc-pink { background: #ffd0e6; color: #3a1230; }
.zc-turquoise { background: #c8f3ee; color: #0b3934; }
.zc-yellow { background: #ffedb0; color: #4a3a05; }
.zc-green { background: #d3f6da; color: #123a1a; }
.zc-purple { background: #d8c8f7; color: #2c1a55; }
@media (max-width: 760px) { .zone-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Stat slide ===== */
.stat-slide { text-align: center; color: #fff; }
.stat-slide h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 30px; color: #fff; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card { background: rgba(255,255,255,0.12); border-radius: var(--radius); padding: 28px 14px; }
.stat-num { display: block; font-size: 2.1rem; font-weight: 700; font-family: "Fredoka", sans-serif; color: var(--accent); }
.stat-label { font-size: 0.84rem; opacity: 0.9; }
@media (max-width: 760px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Package slide ===== */
.package-slide { text-align: center; }
.package-slide h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 30px; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pkg-card { position: relative; background: rgba(255,255,255,0.85); border-radius: var(--radius); padding: 26px 20px; box-shadow: var(--shadow); text-align: left; }
[data-theme="dark"] .pkg-card { background: rgba(0,0,0,0.3); }
.pkg-card.highlight { background: #fff; box-shadow: var(--shadow-lg); transform: translateY(-8px); }
[data-theme="dark"] .pkg-card.highlight { background: rgba(0,0,0,0.45); }
.pkg-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gradient-primary); color: #2b1620; font-size: 0.7rem; font-weight: 800; padding: 5px 14px; border-radius: var(--radius-pill); box-shadow: var(--shadow); }
.pkg-tier { display: block; font-weight: 700; color: var(--primary); font-size: 1.1rem; margin-bottom: 8px; }
.pkg-price { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; }
.pkg-price small { display: block; font-size: 0.72rem; font-weight: 600; opacity: 0.7; }
.pkg-includes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.pkg-includes li { display: flex; gap: 8px; font-size: 0.82rem; }
.pkg-includes i { color: var(--success); margin-top: 2px; }
.pkg-cta { width: 100%; justify-content: center; padding: 12px; font-size: 0.86rem; }
@media (max-width: 860px) { .package-grid { grid-template-columns: 1fr; } .pkg-card.highlight { transform: none; } }

/* ===== Gallery slide ===== */
.gallery-slide { text-align: center; }
.gallery-slide h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 26px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption { position: absolute; inset: auto 0 0 0; padding: 10px; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); color: #fff; font-size: 0.76rem; font-weight: 700; opacity: 0; transition: opacity var(--ease); }
.gallery-item:hover .gallery-caption { opacity: 1; }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Testimoni slide ===== */
.testi-slide { text-align: center; }
.testi-slide h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 26px; }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.testi-card { background: rgba(255,255,255,0.8); border-radius: var(--radius); padding: 22px; text-align: left; box-shadow: var(--shadow); }
[data-theme="dark"] .testi-card { background: rgba(0,0,0,0.28); }
.testi-quote { font-size: 0.92rem; line-height: 1.55; margin-bottom: 14px; }
.testi-person { display: flex; align-items: center; gap: 10px; }
.testi-person img { width: 38px; height: 38px; border-radius: 50%; }
.testi-person strong { display: block; font-size: 0.86rem; }
.testi-person span { font-size: 0.74rem; opacity: 0.7; }
@media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; } }

/* ===== Article slide ===== */
.article-slide { text-align: center; }
.article-slide h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 26px; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.article-card { background: rgba(255,255,255,0.85); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); cursor: pointer; text-align: left; transition: transform var(--ease); }
[data-theme="dark"] .article-card { background: rgba(0,0,0,0.3); }
.article-card:hover { transform: translateY(-5px); }
.article-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.article-body { padding: 16px; }
.article-date { font-size: 0.72rem; opacity: 0.7; font-weight: 700; }
.article-body h3 { font-size: 0.96rem; margin: 8px 0; line-height: 1.35; }
.article-body p { font-size: 0.82rem; opacity: 0.85; line-height: 1.5; margin: 0; }
@media (max-width: 860px) { .article-grid { grid-template-columns: 1fr; } }

/* ===== FAQ slide ===== */
.faq-slide { max-width: 720px; }
.faq-slide h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 24px; text-align: center; }
.faq-item { background: rgba(255,255,255,0.9); border-radius: var(--radius-sm); margin-bottom: 10px; box-shadow: var(--shadow); overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 16px 20px; background: none; border: none; font-weight: 700; font-size: 0.92rem; color: #2c1a55; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; }
.faq-question i { color: var(--primary); transition: transform var(--ease); }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--ease); }
.faq-answer p { padding: 0 20px 18px; color: #4a3d70; line-height: 1.6; margin: 0; font-size: 0.86rem; }

/* ===== Contact slide ===== */
.contact-slide { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.contact-info h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 14px; }
.contact-detail-list { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.contact-detail-list a, .contact-detail-list span { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.9rem; }
.contact-detail-list i { width: 18px; color: var(--primary); }
.contact-form { background: rgba(255,255,255,0.9); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 12px; }
[data-theme="dark"] .contact-form { background: rgba(0,0,0,0.35); }
.contact-form input, .contact-form textarea { padding: 12px 14px; border-radius: var(--radius-sm); border: 2px solid rgba(0,0,0,0.1); background: #fff; color: #24163f; font-family: inherit; font-size: 0.9rem; resize: vertical; }
[data-theme="dark"] .contact-form input, [data-theme="dark"] .contact-form textarea { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.14); }
.slide-footer { grid-column: 1 / -1; text-align: center; font-size: 0.78rem; opacity: 0.85; margin-top: 10px; }
.slide-footer a { font-weight: 700; color: var(--accent); }
@media (max-width: 800px) { .contact-slide { grid-template-columns: 1fr; } }

/* ===== Floating WA ===== */
.wa-float { position: fixed; bottom: 22px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; font-size: 1.4rem; box-shadow: var(--shadow-lg); z-index: 65; animation: pulseWa 2.4s infinite; }
@media (max-width: 860px) { .wa-float { bottom: 16px; right: 16px; width: 50px; height: 50px; } }
@keyframes pulseWa { 0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } }

/* ===== Toast ===== */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--surface); color: var(--ink); padding: 14px 20px; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 0.88rem; animation: toastIn 0.25s ease; }
.toast i { color: var(--success); }
.toast.leaving { animation: toastOut 0.22s ease forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { to { opacity: 0; transform: translateX(30px); } }

/* ===== Overlay / modal chrome ===== */
.overlay-backdrop { position: fixed; inset: 0; background: rgba(20,14,36,0.6); backdrop-filter: blur(3px); z-index: 90; opacity: 0; transition: opacity var(--ease); }
.overlay-backdrop.show { opacity: 1; }
.modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -46%); width: min(520px, 92vw);
  max-height: 86vh; overflow-y: auto; background: var(--surface); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-lg); z-index: 100; opacity: 0; transition: opacity var(--ease), transform var(--ease); color: var(--ink);
}
.modal.show { opacity: 1; transform: translate(-50%, -50%); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: none; background: rgba(0,0,0,0.08); color: var(--ink); cursor: pointer; }
[data-theme="dark"] .modal-close { background: rgba(255,255,255,0.1); }

.zone-detail-icon { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 14px; }
.zone-detail-modal p { color: var(--ink-muted); line-height: 1.65; margin: 14px 0 22px; }

.lightbox-modal img { border-radius: var(--radius-sm); margin-bottom: 14px; }
.lightbox-modal p { text-align: center; color: var(--ink-muted); font-weight: 700; }
.lightbox-nav { display: flex; justify-content: space-between; margin-top: 14px; }
.lightbox-nav button { width: 42px; height: 42px; border-radius: 50%; border: none; background: rgba(0,0,0,0.08); color: var(--ink); cursor: pointer; }
[data-theme="dark"] .lightbox-nav button { background: rgba(255,255,255,0.1); }

.article-modal-img { width: 100%; border-radius: var(--radius-sm); margin-bottom: 16px; aspect-ratio: 16/9; object-fit: cover; }
.article-modal p { color: var(--ink-muted); line-height: 1.7; margin-top: 12px; }
