@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --gold: #F5C842;
    --gold-dim: rgba(245, 200, 66, 0.15);
    --gold-border: rgba(245, 200, 66, 0.25);
    --bg: #080808;
    --bg2: #0f0f0f;
    --bg3: #171717;
    --bg4: #1f1f1f;
    --text: #f0f0f0;
    --text2: rgba(240, 240, 240, 0.6);
    --text3: rgba(240, 240, 240, 0.35);
    --border: rgba(255, 255, 255, 0.07);
    --loader-bg: #0a0804;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    transition: background 0.4s, color 0.4s;
}

.navbar {
    width: 100%;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5c842, #c9a200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
    font-weight: 700;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
}

.logo-icon-img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    border-radius: 6px;
}

.footer-logo-img{
  width: 40px;   /* sesuaikan dengan lebar/tinggi .footer-logo yang sudah ada */
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Desktop nav */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Right section */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Theme button */

.theme-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg3);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

/* Join button */

.join-btn {
    padding: 8px 20px;
    border-radius: 999px;
    background: var(--gold);
    color: #000;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.join-btn:hover {
    opacity: 0.85;
}

/* Hamburger */

.hamburger {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg3);
    cursor: pointer;
    font-size: 18px;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */

.mobile-menu {
    display: none;
}

.mobile-menu.open {
    display: block;
}

.serif {
    font-family: 'Cormorant Garamond', serif;
}

/* Loading */
/* ════════════════════════════════════════════════════════════
   LOADER — GBI Slawi
   ════════════════════════════════════════════════════════════ */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--loader-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    transition: opacity 0.6s ease;
    overflow: hidden;
}

/* ── Radial glow di tengah ── */
#loader::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 66, 0.09) 0%, transparent 70%);
    animation: loaderGlowPulse 2.5s ease-in-out infinite;
    pointer-events: none;
}

/* ── Partikel cahaya mengambang ── */
#loader .loader-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

#loader .loader-particles span {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--gold, #f5c842);
    opacity: 0;
    animation: loaderParticle var(--dur, 3s) ease-in-out var(--delay, 0s) infinite;
}

#loader .loader-particles span:nth-child(1) {
    left: 15%;
    top: 25%;
    --dur: 3.2s;
    --delay: 0s;
}

#loader .loader-particles span:nth-child(2) {
    left: 30%;
    top: 70%;
    --dur: 2.8s;
    --delay: 0.4s;
}

#loader .loader-particles span:nth-child(3) {
    left: 55%;
    top: 15%;
    --dur: 3.5s;
    --delay: 0.8s;
}

#loader .loader-particles span:nth-child(4) {
    left: 70%;
    top: 60%;
    --dur: 2.6s;
    --delay: 1.2s;
}

#loader .loader-particles span:nth-child(5) {
    left: 85%;
    top: 35%;
    --dur: 3.0s;
    --delay: 0.2s;
}

#loader .loader-particles span:nth-child(6) {
    left: 20%;
    top: 50%;
    --dur: 3.8s;
    --delay: 1.5s;
}

#loader .loader-particles span:nth-child(7) {
    left: 45%;
    top: 80%;
    --dur: 2.9s;
    --delay: 0.6s;
}

#loader .loader-particles span:nth-child(8) {
    left: 75%;
    top: 20%;
    --dur: 3.3s;
    --delay: 1.0s;
}

#loader .loader-particles span:nth-child(9) {
    left: 10%;
    top: 80%;
    --dur: 2.7s;
    --delay: 1.8s;
}

#loader .loader-particles span:nth-child(10) {
    left: 90%;
    top: 75%;
    --dur: 3.6s;
    --delay: 0.3s;
}

/* ── Konten utama loader ── */
#loader .loader-body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: loaderFadeUp 0.6s ease both;
}

/* ── Lingkaran cahaya di belakang salib ── */
#loader .loader-halo {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

#loader .loader-halo::before,
#loader .loader-halo::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(245, 200, 66, 0.18);
    animation: loaderRingExpand 2.4s ease-out infinite;
}

#loader .loader-halo::before {
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

#loader .loader-halo::after {
    width: 100px;
    height: 100px;
    animation-delay: 0.8s;
    border-color: rgba(245, 200, 66, 0.10);
}

/* ── Salib ── */
#loader .cross {
    font-size: 0;
    position: relative;
    width: 28px;
    height: 44px;
    animation: loaderCrossGlow 2s ease-in-out infinite;
    z-index: 1;
}

/* Batang vertikal */
#loader .cross::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(245, 200, 66, 0.4), #f5c842, rgba(245, 200, 66, 0.4));
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(245, 200, 66, 0.6), 0 0 28px rgba(245, 200, 66, 0.3);
}

/* Batang horizontal */
#loader .cross::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 28%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, rgba(245, 200, 66, 0.4), #f5c842, rgba(245, 200, 66, 0.4));
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(245, 200, 66, 0.6), 0 0 28px rgba(245, 200, 66, 0.3);
}

/* ── Teks GBI Slawi ── */
#loader .loader-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(245, 200, 66, 0.90);
    margin-bottom: 6px;
    text-shadow: 0 0 20px rgba(245, 200, 66, 0.3);
}

/* ── Tagline kecil ── */
#loader .loader-tagline {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245, 200, 66, 0.35);
    margin-bottom: 32px;
}

/* ── Progress bar ── */
#loader .bar {
    width: 160px;
    height: 1px;
    background: rgba(245, 200, 66, 0.12);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

#loader .bar-fill {
    height: 100%;
    background: linear-gradient(to right, transparent, #f5c842, transparent);
    animation: loaderBarSlide 1.6s ease forwards;
    box-shadow: 0 0 8px rgba(245, 200, 66, 0.6);
}

/* ── Animasi ── */
@keyframes loaderFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loaderGlowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

@keyframes loaderRingExpand {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes loaderCrossGlow {

    0%,
    100% {
        filter: brightness(0.85);
    }

    50% {
        filter: brightness(1.2) drop-shadow(0 0 8px rgba(245, 200, 66, 0.8));
    }
}

@keyframes loaderParticle {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    30% {
        opacity: 0.7;
    }

    70% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
        transform: translateY(-40px) scale(1.2);
    }
}

@keyframes loaderBarSlide {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes load {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.95)
    }

    50% {
        opacity: 1;
        transform: scale(1.05)
    }
}

/* Scroll to top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 500;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(245, 200, 66, 0.3);
}

#scroll-top.show {
    opacity: 1;
    transform: translateY(0);
}

#scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 200, 66, 0.4);
}

/* Nav */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s;
}

[data-theme="dark"] nav {
    background: rgba(8, 8, 8, 0.75);
}

.nav-link {
    color: var(--text2);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color 0.2s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    transform: scaleX(1);
}

.mobile-link.active {
    color: var(--gold);
    border-color: var(--gold-border);
    background: var(--gold-dim);
}

/* Hero */
.hero-bg {
    background:
        radial-gradient(ellipse 60% 50% at 20% 40%, rgba(245, 200, 66, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 60%, rgba(80, 60, 180, 0.05) 0%, transparent 70%),
        var(--bg);
}

/* Gold gradient text */
.gold-text {
    background: linear-gradient(135deg, #f5c842 0%, #e8a010 50%, #f5c842 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold divider */
.divider-gold {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Pill tag */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 999px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Cards */
.card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Pengumuman list: jangan naik saat hover agar tidak tumpang tindih */
.card.peng-item:hover {
    transform: none;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
}

.card-gold {
    background: linear-gradient(135deg, rgba(245, 200, 66, 0.1) 0%, var(--bg3) 100%);
    border-color: var(--gold-border);
}

/* Schedule filter tabs */
.tab-btn {
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
    cursor: pointer;
    background: transparent;
    color: var(--text2);
    transition: all 0.2s;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* Calendar */
.cal-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.cal-day:hover {
    background: var(--gold-dim);
}

.cal-day.today {
    background: var(--gold);
    color: #000;
    font-weight: 700;
}

.cal-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.cal-day.today::after {
    background: #000;
}

.cal-day.other-month {
    opacity: 0.3;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s;
}

.modal-overlay.open .modal {
    transform: translateY(0) scale(1);
}

/* Mobile menu */
#mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 65px;
    z-index: 90;
    background: var(--bg2);
    padding: 32px 24px;
    flex-direction: column;
    gap: 8px;
}

#mobile-menu.open {
    display: flex;
}

.mobile-link {
    display: block;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text2);
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.mobile-link:hover {
    color: var(--gold);
    border-color: var(--gold-border);
    background: var(--gold-dim);
}

/* Section transitions */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s, transform 0.6s;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating scroll indicator */
.scroll-hint {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

/* Map embed placeholder */
.map-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg4);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Toast */
#toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 600;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

#toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Org chart */
.org-node {
    background: var(--bg4);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 20px;
    text-align: center;
    transition: border-color 0.2s;
}

.org-node:hover {
    border-color: var(--gold-border);
}

.org-line {
    width: 1px;
    height: 32px;
    background: var(--border);
    margin: 0 auto;
}

.org-line-h {
    height: 1px;
    background: var(--border);
    flex: 1;
}

/* PDF download animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-4px)
    }
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--bg4);
    border-radius: 3px;
}

@media (max-width: 768px) {
    #desktop-nav {
        display: none !important;
    }

    #hamburger {
        display: flex !important;
    }

    [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns:2fr 1fr 1fr 1fr"] {
        grid-template-columns: 1fr 1fr !important;
    }

    [style*="grid-template-columns:repeat(4,1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .card[style*="display:flex;gap:20px"] {
        flex-direction: column !important;
    }
}

@media (max-width: 480px) {
    [style*="grid-template-columns:2fr 1fr 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns:repeat(2,1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

}

.footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 64px 24px 32px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5c842, #c9a200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #000;
    font-weight: 700;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
}

.footer-desc {
    color: var(--text3);
    font-size: 14px;
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg4);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icon:hover {
    border-color: var(--gold);
}

.social-icon--facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.social-icon--instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #dc2743;
    color: #fff;
}

.social-icon--youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
}

.footer-heading {
    font-weight: 600;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: var(--text2);
}

.footer-links a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-schedule {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: var(--gold);
}

.footer-schedule .muted {
    color: var(--text2);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: var(--text2);
}

.maps-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--text3);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 860px;
    position: relative;
}

.hero-pill {
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(44px, 8vw, 88px);
    line-height: 1.08;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-desc {
    color: var(--text2);
    font-size: clamp(16px, 2vw, 20px);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */

.btn-primary {
    padding: 14px 30px;
    border-radius: 999px;
    background: var(--gold);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(245, 200, 66, 0.3);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    padding: 14px 30px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Decorative Circles */

.hero-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.circle-left {
    top: 15%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 200, 66, 0.06), transparent 70%);
}

.circle-right {
    bottom: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(80, 60, 200, 0.05), transparent 70%);
}

/* Scroll hint */

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text3);
    font-size: 11px;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text3), transparent);
}

.loader-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--text3);
}

.stats-section {
    background: var(--bg2);
    padding: 48px 24px;
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stats-number {
    font-size: 42px;
    font-weight: 700;
}

.stats-label {
    color: var(--text3);
    font-size: 13px;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

#profil {
    padding: 100px 24px;
    background: var(--bg);
}

.container-profil {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .pill {
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text2);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =========================
   GRID 2 COLUMN
========================= */

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

/* =========================
   GEDUNG PLACEHOLDER
========================= */

.gedung-box {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.gedung-box .icon {
    font-size: 64px;
}

.gedung-box .text {
    color: var(--text3);
    font-size: 14px;
}

/* =========================
   SEJARAH
========================= */

.sejarah h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}

.sejarah p {
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* =========================
   VISI MISI
========================= */

.grid-visi-misi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 80px;
}

.card-padding-lg {
    padding: 36px;
}

.card-padding-lg h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-padding-lg p {
    color: var(--text2);
    line-height: 1.8;
    font-size: 16px;
}

.card-padding-lg ul {
    color: var(--text2);
    line-height: 1.9;
    font-size: 15px;
    list-style: none;
    padding: 0;
}

/* =========================
   NILAI INTI
========================= */

.nilai-section {
    margin-bottom: 80px;
}

.nilai-section h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
}

.nilai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.nilai-card {
    padding: 24px;
    text-align: center;
}

.nilai-card .icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.nilai-card .title {
    font-weight: 600;
    margin-bottom: 6px;
}

.nilai-card .desc {
    color: var(--text3);
    font-size: 13px;
}

/* =========================
   STRUKTUR ORGANISASI
========================= */

.org-section {
    margin-bottom: 80px;
}

.org-section h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
}

.org-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

/* =========================
   PROFIL PENDETA
========================= */

/* .grid-profil {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 80px;
} */

.grid-profil {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
    grid-column: 1 / -1;
    width: 100%;
}

.profile-card {
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.profile-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg4);
    border: 2px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.profile-card .pill {
    margin-bottom: 8px;
    font-size: 10px;
}

.profile-card .name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.profile-card .meta {
    color: var(--text3);
    font-size: 13px;
    margin-bottom: 10px;
}

.profile-card p {
    color: var(--text2);
    font-size: 14px;
    line-height: 1.7;
}

/* =========================
   JAM OPERASIONAL
========================= */

.grid-operasional {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.operasional-card {
    padding: 32px;
}

.operasional-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.operasional-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.operasional-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.operasional-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.operasional-time {
    color: var(--gold);
    font-weight: 600;
}

.operasional-note {
    color: var(--text2);
    font-size: 13px;
}

/* =========================
   MAP
========================= */

.map-card {
    padding: 32px;
}

.map-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.map-card p {
    color: var(--text2);
    font-size: 14px;
    margin-bottom: 16px;
}

.map-placeholder {
    text-align: center;
}

.map-placeholder a {
    margin-top: 8px;
    padding: 8px 20px;
    border-radius: 999px;
    background: var(--gold);
    color: #000;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.section-komunitas {
    padding: 100px 24px;
    max-width: 1280px;
    margin: 0 auto;
    background: var(--bg);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text2);
    max-width: 500px;
    margin: 0 auto;
}

.komunitas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.komunitas-card {
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.komunitas-card .icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.komunitas-card .title {
    font-weight: 600;
    margin-bottom: 4px;
}

.komunitas-card .desc {
    color: var(--text3);
    font-size: 12px;
}

/* Hover effect */
.komunitas-card:hover {
    transform: translateY(-5px);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.section-media {
    padding: 100px 0;
    background: var(--bg2);
}

.media {
    max-width: 1280px;
    margin: 0 auto;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.media-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.media-meta {
    color: var(--text3);
    font-size: 14px;
    margin-bottom: 8px;
}

.media-description {
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 24px;
}

.media-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--gold);
    color: #000;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s ease;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Video Card */
.media-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(30, 20, 80, 0.5),
            rgba(0, 0, 0, 0.7));
}

.play-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(245, 200, 66, 0.2);
    border: 1.5px solid rgba(245, 200, 66, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    position: relative;
    z-index: 1;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-icon {
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #F5C842;
}

.video-caption {
    position: absolute;
    bottom: 14px;
    left: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .media-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   RESPONSIVE — TABLET (max 992px)
========================= */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .grid-visi-misi {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid-profil {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid-operasional {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .section-komunitas {
        padding: 64px 20px;
    }

    #profil {
        padding-top: calc(65px + 48px);
    }
}

/* =========================
   RESPONSIVE — MOBILE (max 768px)
========================= */
@media (max-width: 768px) {

    /* Hero */
    .hero-section {
        padding: 100px 20px 60px;
        min-height: 100svh;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 56px);
        line-height: 1.12;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .circle-left,
    .circle-right {
        display: none;
    }

    /* Stats */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-number {
        font-size: 32px;
    }

    /* All 2-col grids → 1 col */
    .grid-2,
    .grid-visi-misi,
    .grid-profil,
    .grid-operasional,
    .media-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* Profile card */
    .profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
    }

    .card-padding-lg {
        padding: 24px 20px;
    }

    .card-padding-lg h3 {
        font-size: 22px;
    }

    /* Section spacing */
    .nilai-section,
    .org-section,
    .sejarah,
    .grid-2,
    .grid-profil,
    .grid-operasional {
        margin-bottom: 48px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Nilai grid */
    .nilai-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Komunitas grid */
    .komunitas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer {
        padding: 48px 20px 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Nav */
    .desktop-nav {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    /* Sections padding */
    .section-komunitas {
        padding: 56px 20px;
    }

    .section-media {
        padding: 64px 20px;
    }

    #profil {
        padding-top: calc(65px + 48px);
    }

    /* Modal */
    .modal {
        border-radius: 16px;
        max-height: 85vh;
    }

    /* Map */
    .map-placeholder {
        height: 220px;
    }

    .map-card {
        padding: 20px;
    }

    /* Operasional */
    .operasional-card {
        padding: 20px;
    }
}

/* =========================
   RESPONSIVE — SMALL MOBILE (max 480px)
========================= */
@media (max-width: 480px) {

    .hero-title {
        font-size: clamp(30px, 9vw, 44px);
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stats-number {
        font-size: 28px;
    }

    .nilai-grid {
        grid-template-columns: 1fr;
    }

    .komunitas-grid {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 0 16px;
    }

    .section-title {
        font-size: clamp(28px, 7vw, 40px);
    }

    .pill {
        font-size: 10px;
        padding: 4px 12px;
    }

    .tab-btn {
        padding: 7px 14px;
        font-size: 12px;
    }

    .media-heading {
        font-size: 24px;
    }

    .org-wrapper {
        max-width: 100%;
    }
}

/* ================================================
   EXTRACTED FROM BLADE TEMPLATES
   ================================================ */

/* ── SECTION WRAPPERS ── */
.section-jadwal {
    padding: 100px 24px;
    background: var(--bg2);
}

.section-profil {
    padding: 100px 24px;
    background: var(--bg);
}

.section-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 60px;
    position: relative;
    overflow: hidden;
}

/* ── CONTAINER ── */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* ── SECTION HEADER ── */
.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-head.mb-64 {
    margin-bottom: 64px;
}

.section-head .pill {
    margin-bottom: 16px;
}

.section-head h2 {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-head p {
    color: var(--text2);
    max-width: 500px;
    margin: 0 auto;
}

/* ── FILTER TABS ROW ── */
.filter-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* ── SCHEDULE GRID ── */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

/* ── SCHEDULE CARD ── */
.sched-card {
    padding: 28px;
    cursor: pointer;
}

.sched-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.sched-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.sched-icon-gold {
    background: rgba(245, 200, 66, 0.2);
}

.sched-badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--bg4);
    color: var(--text3);
}

.sched-badge-gold {
    background: var(--gold);
    color: #000;
    font-weight: 600;
}

.sched-badge-special {
    background: rgba(245, 200, 66, 0.15);
    color: var(--gold);
    font-weight: 600;
}

.sched-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.sched-title-gold {
    color: var(--gold);
}

.sched-time {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.sched-speaker {
    color: var(--text3);
    font-size: 13px;
    margin-bottom: 12px;
}

.sched-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ── SCHEDULE ACTION BUTTONS ── */
.sched-btn {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text2);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.sched-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.sched-btn.wa:hover {
    border-color: #25D366;
    color: #25D366;
}

/* ── CALENDAR CARD ── */
.calendar-card {
    padding: 36px;
    max-width: 700px;
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.calendar-title {
    font-size: 24px;
    font-weight: 600;
}

.calendar-nav {
    display: flex;
    gap: 8px;
}

.calendar-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg4);
    color: var(--text);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.calendar-nav-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
    text-align: center;
}

.calendar-day-name {
    font-size: 11px;
    color: var(--text3);
    font-weight: 600;
    padding: 8px 0;
}

#calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-legend {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text3);
}

.legend-dot {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-dot::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

/* ── HERO DECO CIRCLES ── */
.hero-deco-left {
    position: absolute;
    top: 15%;
    left: 5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 66, 0.06), transparent 70%);
    pointer-events: none;
}

.hero-deco-right {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80, 60, 200, 0.05), transparent 70%);
    pointer-events: none;
}

/* ── PROFILE SECTION ── */
.profile-header-text h2 {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 700;
    margin-bottom: 16px;
}

.profile-header-text p {
    color: var(--text2);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.gedung-placeholder {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.gedung-placeholder .icon {
    font-size: 64px;
}

.gedung-placeholder .label {
    color: var(--text3);
    font-size: 14px;
}

.sejarah-text h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}

.sejarah-text p {
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 14px;
    text-align: justify;
}

.visi-card {
    padding: 36px;
}

.visi-card .icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.visi-card h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gold);
}

.visi-card p {
    color: var(--text2);
    line-height: 1.8;
    font-size: 16px;
}

.misi-card {
    padding: 36px;
}

.misi-card .icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.misi-card h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
}

.misi-card ul {
    color: var(--text2);
    line-height: 1.9;
    list-style: none;
    font-size: 15px;
    padding: 0;
}

.nilai-inti-wrapper {
    margin-bottom: 80px;
}

.nilai-inti-wrapper h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
}

.nilai-inti-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.nilai-item {
    padding: 24px;
    text-align: center;
}

.nilai-item .icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.nilai-item .label {
    font-weight: 600;
    margin-bottom: 6px;
}

.nilai-item .desc {
    color: var(--text3);
    font-size: 13px;
}

/* ── ORG CHART ── */
.org-wrapper-inner {
    max-width: 700px;
    margin: 0 auto;
}

.org-top {
    display: flex;
    justify-content: center;
}

.org-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
}

.org-children {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.org-item {
    min-width: 140px;
    text-align: center;
}

.org-item .role {
    font-weight: 600;
    font-size: 14px;
}

.org-item .name {
    color: var(--text3);
    font-size: 12px;
}

.org-item .icon {
    font-size: 16px;
    margin-bottom: 2px;
}

.org-senior .role {
    font-weight: 700;
    font-size: 15px;
    color: var(--gold);
}

.org-senior .name {
    color: var(--text3);
    font-size: 12px;
}

.org-senior .icon {
    font-size: 20px;
    margin-bottom: 4px;
}

/* ── PASTOR PROFILE CARDS ── */
.pastor-card {
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.pastor-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg4);
    border: 2px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.pastor-info {
    flex: 1;
    min-width: 0;
}

.pastor-info .badge {
    margin-bottom: 8px;
    font-size: 10px;
}

.pastor-info .name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.pastor-info .meta {
    color: var(--text3);
    font-size: 13px;
    margin-bottom: 10px;
}

.pastor-info p {
    color: var(--text2);
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
}

/* ── OPERASIONAL CARD ── */
.operasional-card-inner {
    padding: 32px;
}

.operasional-card-inner h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.operasional-list-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.operasional-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.operasional-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.operasional-row .day {
    font-weight: 500;
}

.operasional-row .time {
    color: var(--gold);
    font-weight: 600;
}

.operasional-row .note {
    color: var(--text2);
    font-size: 13px;
}

/* ── MAP CARD ── */
.map-card-inner {
    padding: 32px;
}

.map-card-inner h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.map-card-inner .address {
    color: var(--text2);
    font-size: 14px;
    margin-bottom: 16px;
}

/* ── MEDIA SECTION ── */
.section-media-inner {
    padding: 100px 24px;
    background: var(--bg2);
}

.media-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* ── COMMUNITY SECTION ── */
.section-community {
    padding: 100px 24px;
    background: var(--bg);
}

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 768px) {

    .section-jadwal,
    .section-profil,
    .section-community,
    .section-media-inner {
        padding: 64px 20px;
        padding-top: calc(65px + 48px);
    }

    .calendar-card {
        padding: 24px 16px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .pastor-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .operasional-card-inner,
    .map-card-inner {
        padding: 24px 20px;
    }

    .visi-card,
    .misi-card {
        padding: 24px 20px;
    }

    .sched-actions {
        justify-content: center;
    }
}

/* ================================================
   BERITA & ARTIKEL
   ================================================ */

.section-berita {
    padding: 100px 24px 100px;
    background: var(--bg);
}

/* ── PAGE HEADER ── */
.news-page-header {
    text-align: center;
    margin-bottom: 56px;
}

.news-page-header h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin: 12px 0 10px;
    color: var(--text);
}

.news-page-header p {
    font-size: 15px;
    color: var(--text2);
    max-width: 480px;
    margin: 0 auto;
}

/* ── TOOLBAR ── */
.news-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 48px;
}

.news-toolbar-right {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

.news-search-wrap {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 320px;
}

.news-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    pointer-events: none;
    opacity: 0.5;
}

.news-search {
    width: 100%;
    padding: 9px 36px 9px 38px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text);
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.news-search:focus {
    border-color: var(--gold-border);
}

.news-search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text3);
    cursor: pointer;
    font-size: 12px;
    display: none;
}

.news-search-clear.visible {
    display: block;
}

.news-filter-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.news-archive-select {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 12px;
    font-family: inherit;
    cursor: pointer;
    outline: none;
}

.news-archive-select:focus {
    border-color: var(--gold-border);
}

/* ── SECTION DIVIDER ── */
.news-section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 56px 0 28px;
    color: var(--text3);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.news-section-divider::before,
.news-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.news-section-divider span {
    color: var(--text3);
    white-space: nowrap;
}

/* ── HERO (Featured + Side) ── */
.news-hero {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0;
}

/* ── FEATURED ── */
.news-featured {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--bg3);
    transition: background 0.2s;
}

.news-featured:hover {
    background: var(--bg4);
}

.news-featured-img {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--bg4);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-img-placeholder {
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--bg4);
    min-height: 80px;
}

.news-img-placeholder.sm {
    font-size: 24px;
    min-height: 56px;
}

.news-img-placeholder.xs {
    font-size: 18px;
    min-height: 40px;
    width: 40px;
    flex-shrink: 0;
}

.news-img-placeholder.large {
    font-size: 80px;
    min-height: 320px;
    border-radius: 16px;
}

.news-new-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: #000;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 3px 8px;
    border-radius: 4px;
}

.news-cat-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cat-ibadah {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
}

.cat-pelayanan {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.cat-komunitas {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.cat-pengumuman {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.news-featured-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-featured-title {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--text);
    margin: 0;
}

.news-featured:hover .news-featured-title {
    color: var(--gold);
}

.news-featured-desc {
    color: var(--text2);
    font-size: 15px;
    line-height: 1.7;
    flex: 1;
    margin: 0;
}

/* ── META ── */
.news-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    font-size: 13px;
    color: var(--text3);
}

.news-dot {
    color: var(--text3);
    opacity: 0.4;
}

.news-author {
    color: var(--text2);
    font-weight: 500;
}

.news-date,
.news-views,
.news-read-time {
    color: var(--text3);
    font-size: 13px;
}

.news-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text3);
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.news-likes {
    cursor: pointer;
    transition: transform 0.15s;
    user-select: none;
    font-size: 13px;
    color: var(--text3);
}

.news-likes:hover {
    transform: scale(1.2);
}

.news-likes.liked {
    color: var(--gold);
}

/* ── SIDE LIST ── */
.news-side-list {
    display: flex;
    flex-direction: column;
    background: var(--bg3);
}

.news-side-label {
    padding: 16px 18px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text3);
    margin: 0;
    border-bottom: 1px solid var(--border);
}

.news-side-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
    flex: 1;
}

.news-side-item:last-child {
    border-bottom: none;
}

.news-side-item:hover {
    background: var(--bg4);
}

.news-side-img {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.news-side-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.news-side-meta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.news-side-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-side-item:hover .news-side-title {
    color: var(--gold);
}

.news-side-foot {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 12px;
    color: var(--text3);
    margin-top: 2px;
}

/* ── POPULAR GRID ── */
.news-popular-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.news-popular-item {
    display: flex;
    gap: 16px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 16px 20px;
    background: var(--bg3);
    transition: background 0.15s;
}

.news-popular-item:hover {
    background: var(--bg4);
}

.news-popular-rank {
    font-size: 22px;
    font-weight: 900;
    color: var(--border);
    font-family: Georgia, serif;
    min-width: 36px;
    line-height: 1;
}

.news-popular-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.news-popular-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.news-popular-body h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text);
    margin: 0;
}

.news-popular-item:hover h4 {
    color: var(--gold);
}

/* ── NEWS GRID ── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.news-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--bg3);
    transition: background 0.15s;
}

.news-card:hover {
    background: var(--bg4);
}

.news-card-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.news-card-img .news-cat-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.news-card-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-card-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card:hover .news-card-title {
    color: var(--gold);
}

.news-card-desc {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.7;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* ── EMPTY STATE ── */
.news-empty {
    text-align: center;
    padding: 80px 24px;
    color: var(--text3);
}

.news-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.4;
}

.news-empty-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 6px;
}

.news-empty-sub {
    font-size: 13px;
}

/* ── PAGINATION ── */
.news-pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin: 48px 0 0;
}

.page-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.page-btn:hover,
.page-btn.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    font-weight: 700;
}

.page-next {
    width: auto;
    padding: 0 18px;
    border-radius: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .news-hero {
        grid-template-columns: 1fr;
    }

    .news-toolbar-right {
        justify-content: flex-start;
    }

    .news-search-wrap {
        max-width: 100%;
    }

    .news-popular-rank {
        display: none;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* ── DETAIL PAGE ── */
.news-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text3);
    margin-bottom: 40px;
}

.breadcrumb-link {
    color: var(--text2);
    text-decoration: none;
}

.breadcrumb-link:hover {
    color: var(--gold);
}

.breadcrumb-sep {
    color: var(--text3);
}

.breadcrumb-current {
    color: var(--text);
}

.news-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: flex-start;
}

.news-detail-header {
    margin-bottom: 28px;
}

.news-detail-title {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 700;
    line-height: 1.3;
    margin: 16px 0;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.news-detail-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg4);
    border: 2px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
}

.author-role {
    font-size: 12px;
    color: var(--text3);
}

.news-detail-info {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text3);
}

.news-detail-img {
    margin-bottom: 32px;
}

.news-img-caption {
    text-align: center;
    font-size: 12px;
    color: var(--text3);
    margin-top: 10px;
    font-style: italic;
}

.news-detail-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text2);
    margin-bottom: 40px;
}

.news-detail-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin: 32px 0 12px;
}

.news-detail-content p {
    margin-bottom: 16px;
}

.news-lead {
    font-size: 18px !important;
    font-weight: 500;
    color: var(--text) !important;
    line-height: 1.7 !important;
}

.news-quote {
    border-left: 3px solid var(--gold);
    padding: 16px 24px;
    margin: 28px 0;
    background: var(--gold-dim);
    border-radius: 0 12px 12px 0;
}

.news-quote p {
    color: var(--text);
    font-style: italic;
    font-size: 16px;
    margin: 0 0 8px;
}

.news-quote cite {
    font-size: 13px;
    color: var(--text3);
    font-style: normal;
}

/* ── DETAIL ACTIONS ── */
.news-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}

.news-action-btn {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.news-action-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.news-action-btn.liked {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold);
}

.news-share-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.news-share-label {
    font-size: 13px;
    color: var(--text3);
}

.news-share-btn {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    color: var(--text2);
}

.news-share-btn.wa:hover {
    border-color: #25D366;
    color: #25D366;
}

.news-share-btn.copy:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── KOMENTAR ── */
.news-comments {
    margin-bottom: 48px;
}

.news-comments-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.comment-form {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.comment-form-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.comment-form-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment-input,
.comment-textarea {
    width: 100%;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    resize: vertical;
}

.comment-input:focus,
.comment-textarea:focus {
    border-color: var(--gold-border);
}

.comment-submit {
    align-self: flex-end;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comment-item {
    display: flex;
    gap: 12px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.comment-body {
    flex: 1;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.comment-name {
    font-weight: 700;
    font-size: 13px;
    color: var(--text);
}

.comment-date {
    font-size: 11px;
    color: var(--text3);
}

.comment-text {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 10px;
}

.comment-actions {
    display: flex;
    gap: 10px;
}

.comment-like-btn,
.comment-reply-btn {
    background: none;
    border: none;
    font-size: 12px;
    color: var(--text3);
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 6px;
    transition: all 0.2s;
    font-family: inherit;
}

.comment-like-btn:hover {
    background: var(--gold-dim);
    color: var(--gold);
}

.comment-reply-btn:hover {
    background: var(--bg4);
    color: var(--text2);
}

/* ── SIDEBAR ── */
.news-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    padding: 24px;
}

.sidebar-widget-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.sidebar-news-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-news-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.sidebar-news-item:hover .sidebar-news-title {
    color: var(--gold);
}

.sidebar-news-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-news-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    transition: color 0.2s;
}

.sidebar-news-date {
    font-size: 11px;
    color: var(--text3);
}

.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text2);
    font-size: 13px;
    transition: all 0.2s;
}

.sidebar-cat-item:hover {
    background: var(--bg4);
    color: var(--text);
}

.sidebar-cat-count {
    background: var(--bg4);
    color: var(--text3);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
}

/* ── NAVIGASI BERITA ── */
.news-nav-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.news-nav-btn {
    padding: 20px 24px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.news-nav-btn:hover {
    border-color: var(--gold-border);
}

.news-nav-right {
    text-align: right;
}

.news-nav-dir {
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.news-nav-title {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.5;
}

/* ── RESPONSIVE BERITA ── */
@media (max-width: 1024px) {
    .news-detail-layout {
        grid-template-columns: 1fr;
    }

    .news-detail-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .section-berita {
        padding-top: calc(65px + 48px);
        padding-left: 16px;
        padding-right: 16px;
    }

    .news-highlight-grid {
        grid-template-columns: 1fr;
    }

    .news-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .news-filter-tabs {
        justify-content: center;
    }

    .news-popular-item {
        flex-wrap: wrap;
    }

    .news-popular-rank {
        font-size: 20px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-nav-btns {
        grid-template-columns: 1fr;
    }

    .news-nav-right {
        text-align: left;
    }

    .news-notif-bar {
        flex-direction: column;
        text-align: center;
    }

    .news-detail-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-detail-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-form {
        flex-direction: column;
    }

    .comment-form-avatar {
        display: none;
    }
}

/* ================================================
   KOMUNITAS DIGITAL
   ================================================ */

.section-komunitas-digital {
    padding: 100px 24px;
    background: var(--bg);
}

/* ── TABS ── */
.kom-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
}

.kom-tab {
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: var(--text2);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.2s;
    border-radius: 8px 8px 0 0;
}

.kom-tab:hover {
    color: var(--text);
    background: var(--bg3);
}

.kom-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
    background: var(--bg3);
}

.kom-tab-content {
    display: none;
}

.kom-tab-content.active {
    display: block;
}

/* ── FORM SHARED ── */
.kom-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.kom-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
}

.kom-optional {
    font-weight: 400;
    color: var(--text3);
}

.kom-input {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg4);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.kom-input:focus {
    border-color: var(--gold-border);
}

.kom-textarea {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg4);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
}

.kom-textarea:focus {
    border-color: var(--gold-border);
}

.kom-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.kom-radio {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text2);
    cursor: pointer;
}

.kom-radio input {
    accent-color: var(--gold);
}

.kom-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.kom-form-row {
    display: flex;
    gap: 10px;
}

.kom-submit-btn {
    width: 100%;
    margin-top: 8px;
}

/* ── UPLOAD ── */
.kom-upload-area {
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--bg4);
}

.kom-upload-area:hover {
    border-color: var(--gold-border);
    background: var(--gold-dim);
}

.kom-upload-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.kom-upload-text {
    font-size: 14px;
    color: var(--text2);
}

.kom-upload-sub {
    font-size: 12px;
    color: var(--text3);
    margin-top: 4px;
}

.kom-file-preview {
    padding: 10px 14px;
    background: var(--bg4);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text2);
    margin-top: 8px;
}

/* ── PESAN GRID ── */
.kom-pesan-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: flex-start;
}

.kom-form-card {
    padding: 28px;
}

.kom-tracking-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 88px;
    /* navbar height + sedikit jarak */
    max-height: calc(100vh - 108px);
}

.kom-tracking-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 0;
    /* penting agar flex child bisa shrink */
    overflow: hidden;
}

.kom-tracking-search {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-shrink: 0;
    /* search bar tidak ikut di-scroll */
}

.kom-track-btn {
    white-space: nowrap;
    background: var(--bg4);
}

.kom-tracking-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    max-height: 420px;
    padding-right: 4px;
    /* ruang scrollbar */
    /* Scrollbar tipis & sesuai tema */
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.kom-tracking-list::-webkit-scrollbar {
    width: 4px;
}

.kom-tracking-list::-webkit-scrollbar-track {
    background: transparent;
}

.kom-tracking-list::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 99px;
}

.kom-tracking-list::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.kom-tracking-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.kom-tracking-item:last-child {
    border-bottom: none;
}

.kom-tracking-jenis {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 2px;
    letter-spacing: 0.02em;
}

.kom-tracking-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.kom-tracking-meta {
    font-size: 11px;
    color: var(--text3);
    margin-top: 2px;
}

.kom-status-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    white-space: nowrap;
    margin-top: 1px;
    flex-shrink: 0;
}

.status-proses {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.status-selesai {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.status-menunggu {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
}

/* ── Animasi highlight saat status berubah (real-time polling) ── */
@keyframes statusChanged {
    0% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
        transform: scale(1);
    }

    40% {
        box-shadow: 0 0 0 6px rgba(251, 191, 36, 0);
        transform: scale(1.08);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
        transform: scale(1);
    }
}

@keyframes itemFlash {
    0% {
        background: transparent;
    }

    25% {
        background: rgba(251, 191, 36, 0.08);
    }

    75% {
        background: rgba(251, 191, 36, 0.05);
    }

    100% {
        background: transparent;
    }
}

.kom-status-badge.status-changed {
    animation: statusChanged 0.7s ease forwards;
}

.kom-tracking-item.item-status-changed {
    animation: itemFlash 1.2s ease forwards;
    border-radius: 8px;
}

/* ── NOTIFIKASI ── */
.kom-notif-card {
    padding: 24px;
}

.kom-notif-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
}

.kom-notif-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px;
    border-radius: 10px;
    transition: background 0.2s;
}

.kom-notif-item.unread {
    background: var(--gold-dim);
}

.kom-notif-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 5px;
}

.kom-notif-item:not(.unread) .kom-notif-dot {
    background: var(--border);
}

.kom-notif-body {
    flex: 1;
}

.kom-notif-text {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.5;
}

.kom-notif-time {
    font-size: 11px;
    color: var(--text3);
    margin-top: 4px;
}

.kom-notif-all {
    background: none;
    border: none;
    color: var(--text3);
    font-size: 12px;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.kom-notif-all:hover {
    color: var(--gold);
}

/* ── FORUM ── */
.kom-forum-toolbar {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.kom-post-form {
    padding: 24px;
    margin-bottom: 20px;
}

.kom-forum-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kom-forum-item {
    display: flex;
    gap: 14px;
    padding: 20px;
}

.kom-forum-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg4);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    overflow: hidden;
}

.kom-forum-avatar.has-photo {
    background: transparent;
    border-color: var(--border);
}

.kom-forum-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.kom-forum-body {
    flex: 1;
    min-width: 0;
}

.kom-forum-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.kom-forum-author {
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
}

.kom-forum-time {
    font-size: 12px;
    color: var(--text3);
}

.kom-forum-role-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
}

.role-jemaat {
    background: var(--gold-dim);
    color: var(--gold);
}

.role-admin {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
}

.kom-forum-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.4;
}

.kom-forum-preview {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 12px;
}

.kom-forum-footer {
    display: flex;
    gap: 10px;
}

.kom-forum-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--text2);
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.kom-forum-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.kom-forum-btn.liked {
    color: var(--gold);
    border-color: var(--gold);
}

.kom-reply-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.kom-reply-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.kom-reply-item {
    display: flex;
    gap: 10px;
}

.kom-reply-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg4);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.kom-reply-body {
    flex: 1;
    background: var(--bg4);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text2);
}

.kom-reply-body p {
    margin: 4px 0 0;
}

.kom-reply-input-wrap {
    display: flex;
    gap: 8px;
}

.kom-reply-send {
    white-space: nowrap;
}

/* ── PROFIL ── */
.kom-profil-layout {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 20px;
    align-items: flex-start;
}

.kom-profil-card {
    padding: 28px;
    text-align: center;
}

.kom-profil-avatar-wrap {
    position: relative;
    width: 80px;
    margin: 0 auto 16px;
}

.kom-profil-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg4);
    border: 3px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    overflow: hidden;
}

.kom-profil-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kom-avatar-upload-btn {
    position: absolute;
    bottom: 0;
    right: -4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kom-profil-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.kom-profil-role {
    margin-bottom: 20px;
}

.kom-profil-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.kom-profil-stat {
    text-align: center;
}

.stat-val {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
}

.stat-lbl {
    font-size: 11px;
    color: var(--text3);
}

.kom-profil-edit {
    padding: 28px;
}

.kom-riwayat-card {
    padding: 24px;
}

.kom-riwayat-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.kom-riwayat-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.kom-riwayat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.kom-riwayat-body {
    flex: 1;
}

.kom-riwayat-text {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.5;
}

.kom-riwayat-time {
    font-size: 11px;
    color: var(--text3);
    margin-top: 2px;
}

/* ── LEADERBOARD ── */
.kom-leaderboard-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kom-lb-header {
    text-align: center;
}

.kom-lb-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.kom-lb-header p {
    color: var(--text2);
    font-size: 14px;
}

.kom-podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
    padding: 32px 0;
}

.kom-podium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 120px;
}

.kom-podium-crown {
    font-size: 24px;
}

.kom-podium-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg4);
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.podium-1 .kom-podium-avatar {
    width: 80px;
    height: 80px;
    border-color: var(--gold);
    font-size: 36px;
}

.kom-podium-name {
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

.kom-podium-score {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
}

.kom-podium-rank {
    font-size: 20px;
}

.kom-lb-list {
    padding: 8px 16px;
}

.kom-lb-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 8px;
    border-bottom: 1px solid var(--border);
}

.kom-lb-item:last-child {
    border-bottom: none;
}

.kom-lb-no {
    font-size: 16px;
    font-weight: 900;
    color: var(--text3);
    min-width: 24px;
}

.kom-lb-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.kom-lb-info {
    flex: 1;
}

.kom-lb-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
}

.kom-lb-badges {
    font-size: 11px;
    color: var(--text3);
}

.kom-lb-score {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

.kom-badge-list {
    display: flex;
    gap: 4px;
}

.kom-badge {
    font-size: 16px;
}

.kom-badge-info {
    padding: 24px;
}

.kom-badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.kom-badge-item {
    text-align: center;
    padding: 16px 12px;
    background: var(--bg4);
    border-radius: 12px;
}

.kom-badge-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.kom-badge-name {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 4px;
}

.kom-badge-desc {
    font-size: 11px;
    color: var(--text3);
}

/* ── PENGUMUMAN ── */
.kom-pengumuman-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#peng-list-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kom-pengumuman-item {
    padding: 28px 28px 22px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.kom-pengumuman-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.kom-pengumuman-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
}

.badge-penting {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.badge-info {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
}

/* .badge-umum {
    background: var(--bg4);
    color: var(--text3);
} */

.badge-umum {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.kom-pengumuman-date {
    font-size: 12px;
    color: var(--text3);
}

.kom-pengumuman-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.kom-pengumuman-body {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 16px;
}

.kom-pengumuman-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kom-pengumuman-author {
    font-size: 12px;
    color: var(--text3);
}

/* ── ULANG TAHUN ── */
.kom-ultah-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kom-ultah-header {
    text-align: center;
}

.kom-ultah-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.kom-ultah-header p {
    color: var(--text2);
    font-size: 14px;
}

.kom-ultah-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.kom-ultah-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.kom-ultah-item {
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.kom-ultah-item.today-bday {
    border-color: var(--gold-border);
    background: var(--gold-dim);
}

.kom-ultah-avatar {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

/* Foto jemaat */
.ultah-avatar-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border: 2px solid var(--border);
    transition: border-color .2s;
}

.kom-ultah-item.today-bday .ultah-avatar-img {
    border-color: var(--gold);
}

/* Fallback inisial jika foto tidak ada */
.ultah-avatar-fallback {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0;
    border: 2px solid var(--border);
}

.ultah-avatar-fallback.female {
    background: linear-gradient(135deg, #f9a8d4, #f472b6);
    color: #831843;
    border-color: #f9a8d4;
}

.ultah-avatar-fallback.male {
    background: linear-gradient(135deg, #93c5fd, #3b82f6);
    color: #1e3a5f;
    border-color: #93c5fd;
}

/* Ring kuning melingkari avatar pada hari ulang tahun */
.ultah-avatar-today-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2.5px solid var(--gold);
    animation: ultahRingPulse 1.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ultahRingPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .55;
        transform: scale(1.07);
    }
}

.kom-ultah-name {
    font-size: 14px;
    font-weight: 700;
}

.kom-ultah-date {
    font-size: 12px;
    color: var(--text3);
}

.kom-doakan-btn {
    width: 100%;
}

/* ── RESPONSIVE KOMUNITAS ── */
@media (max-width: 1024px) {
    .kom-pesan-grid {
        grid-template-columns: 1fr;
    }

    /* Di layar kecil: sidebar tidak sticky, scroll area lebih pendek */
    .kom-tracking-side {
        position: static;
        max-height: none;
    }

    .kom-tracking-list {
        max-height: 300px;
    }

    .kom-profil-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-komunitas-digital {
        padding-top: calc(65px + 48px);
        padding-left: 16px;
        padding-right: 16px;
    }

    .kom-tabs {
        gap: 4px;
    }

    .kom-tab {
        padding: 8px 12px;
        font-size: 12px;
    }

    .kom-podium {
        gap: 8px;
    }

    .kom-podium-item {
        min-width: 90px;
    }

    .kom-lb-item {
        flex-wrap: wrap;
    }

    .kom-forum-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ================================================
   JOIN US
   ================================================ */

.section-join {
    padding: 100px 24px;
    background: var(--bg);
}

/* ── ALASAN ── */
.join-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 72px;
}

.join-reason-item {
    padding: 28px;
    text-align: center;
}

.join-reason-icon {
    font-size: 40px;
    margin-bottom: 14px;
}

.join-reason-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.join-reason-item p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
}

/* ── FORM SECTION ── */
.join-form-section {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 72px;
}

.join-form-intro {
    padding-top: 8px;
}

.join-form-intro .pill {
    margin-bottom: 16px;
}

.join-form-intro h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.join-form-intro p {
    color: var(--text2);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.join-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.join-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.join-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.join-step-text {
    font-size: 13px;
    color: var(--text2);
    font-weight: 500;
}

.join-step-arrow {
    font-size: 14px;
    color: var(--text3);
    padding-left: 8px;
}

.join-form-card {
    padding: 32px;
}

.join-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}

.join-type-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.join-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 16px;
    border-radius: 12px;
    border: 2px solid var(--border);
    background: var(--bg4);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.join-type-btn:hover {
    border-color: var(--gold-border);
}

.join-type-btn.active-type {
    border-color: var(--gold);
    background: var(--gold-dim);
}

.join-type-icon {
    font-size: 28px;
}

.join-type-label {
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
}

.join-type-desc {
    font-size: 11px;
    color: var(--text3);
    line-height: 1.4;
}

.join-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
}

.join-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text2);
    cursor: pointer;
}

.join-check input {
    accent-color: var(--gold);
}

.join-privacy {
    padding: 12px 0;
}

.join-submit-btn {
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    font-size: 16px;
}

.join-login-hint {
    text-align: center;
    font-size: 13px;
    color: var(--text3);
    margin-top: 16px;
}

.join-login-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.join-login-link:hover {
    text-decoration: underline;
}

/* ── KONTAK ── */
.join-contact {
    text-align: center;
}

.join-contact-label {
    font-size: 13px;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.join-contact-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.join-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    text-decoration: none;
    color: inherit;
    min-width: 200px;
}

.join-contact-item:hover {
    border-color: var(--gold-border);
}

.join-contact-icon {
    font-size: 22px;
}

.join-contact-text {
    font-size: 13px;
    color: var(--text2);
    font-weight: 500;
}

/* ── RESPONSIVE JOIN ── */
@media (max-width: 900px) {
    .join-form-section {
        grid-template-columns: 1fr;
    }

    .join-form-grid {
        grid-template-columns: 1fr;
    }

    .join-type-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-join {
        padding-top: calc(65px + 48px);
        padding-left: 16px;
        padding-right: 16px;
    }

    .join-contact-row {
        flex-direction: column;
        align-items: center;
    }

    .join-contact-item {
        min-width: unset;
        width: 100%;
        max-width: 320px;
    }

    .join-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .join-step-arrow {
        display: none;
    }
}

.auth-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.auth-overlay.open {
    display: flex;
    animation: gcAuthFadeIn .2s ease;
}

@keyframes gcAuthFadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* ─ Modal ─ */
.auth-modal-wrap {
    display: flex;
    width: 100%;
    max-width: 800px;
    min-height: 520px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .7), 0 0 0 1px var(--gold-border);
    animation: gcAuthSlideUp .25s ease;
}

@keyframes gcAuthSlideUp {
    from {
        transform: translateY(20px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

/* ─ Panel Kiri ─ */
.auth-panel-left {
    width: 40%;
    flex-shrink: 0;
    background: linear-gradient(165deg, var(--bg2) 0%, #110e06 100%);
    border-right: 1px solid var(--gold-border);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Dekorasi lingkaran gold */
.auth-panel-left::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 66, .09) 0%, transparent 70%);
    top: -60px;
    right: -80px;
    pointer-events: none;
}

.auth-panel-left::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 66, .05) 0%, transparent 70%);
    bottom: -30px;
    left: -50px;
    pointer-events: none;
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #c9a200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #000;
    font-weight: 700;
    flex-shrink: 0;
}

.auth-logo-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.auth-left-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.auth-left-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 10px;
}

.auth-left-sub {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.65;
    margin-bottom: 20px;
}

.auth-left-divider {
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 20px;
    border-radius: 2px;
}

/* Kutipan Alkitab */
.auth-verse {
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 14px 16px;
}

.auth-verse-text {
    font-size: 12.5px;
    color: var(--text2);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 6px;
}

.auth-verse-ref {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: .04em;
}

/* Footer kiri */
.auth-left-footer {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.auth-switch-hint {
    font-size: 12px;
    color: var(--text3);
}

.auth-switch-btn {
    padding: 9px 16px;
    border: 1px solid var(--gold-border);
    border-radius: 999px;
    background: transparent;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    transition: all .2s;
}

.auth-switch-btn:hover {
    background: var(--gold-dim);
}

.auth-back-link {
    font-size: 12px;
    color: var(--text3);
    text-decoration: none;
    text-align: center;
    transition: color .2s;
}

.auth-back-link:hover {
    color: var(--text2);
}

/* ─ Panel Kanan ─ */
.auth-panel-right {
    flex: 1;
    background: var(--bg2);
    padding: 32px 32px 24px;
    overflow-y: auto;
    position: relative;
    max-height: 88vh;
}

/* Scrollbar tipis */
.auth-panel-right::-webkit-scrollbar {
    width: 4px;
}

.auth-panel-right::-webkit-scrollbar-track {
    background: transparent;
}

.auth-panel-right::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

/* Tombol tutup */
.auth-close-x {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text3);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.auth-close-x:hover {
    color: var(--text);
    border-color: var(--gold-border);
}

/* Form head */
.auth-form-head {
    margin-bottom: 22px;
}

.auth-form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.auth-form-sub {
    font-size: 13px;
    color: var(--text2);
}

/* Alert */
.auth-alert {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 14px;
    line-height: 1.5;
}

.auth-alert.error {
    background: rgba(220, 53, 69, .12);
    border: 1px solid rgba(220, 53, 69, .3);
    color: #ff7070;
}

.auth-alert.success {
    background: rgba(39, 174, 96, .12);
    border: 1px solid rgba(39, 174, 96, .3);
    color: #5fd98a;
}

/* Field */
.auth-field {
    margin-bottom: 14px;
}

.auth-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text2);
    margin-bottom: 6px;
}

.auth-req {
    color: var(--gold);
}

.auth-optional {
    font-size: 11px;
    color: var(--text3);
}

/* Input — sama persis dengan .kom-input */
.auth-input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg4);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.auth-input::placeholder {
    color: var(--text3);
}

.auth-input:focus {
    border-color: var(--gold-border);
    box-shadow: 0 0 0 3px rgba(245, 200, 66, .07);
}

.auth-input-group {
    position: relative;
}

.auth-input-group .auth-input {
    padding-right: 42px;
}

.auth-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    line-height: 1;
}

.eye-icon {
    font-size: 14px;
    opacity: .4;
    transition: opacity .15s;
}

.auth-eye:hover .eye-icon {
    opacity: .75;
}

/* Row between */
.auth-row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.auth-check-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--text2);
    cursor: pointer;
    user-select: none;
}

.auth-check {
    width: 14px;
    height: 14px;
    accent-color: var(--gold);
    cursor: pointer;
}

.auth-link-small {
    font-size: 12.5px;
    color: var(--gold);
    text-decoration: none;
}

.auth-link-small:hover {
    text-decoration: underline;
}

.auth-link-gold {
    color: var(--gold);
    text-decoration: none;
}

.auth-link-gold:hover {
    text-decoration: underline;
}

/* Submit — sama dengan .btn-primary */
.auth-submit-btn {
    width: 100%;
    padding: 11px 24px;
    border-radius: 999px;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    font-family: inherit;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(245, 200, 66, .28);
    transition: all .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(245, 200, 66, .38);
}

.auth-submit-btn:active {
    transform: translateY(0);
}

.auth-submit-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
}

/* OR divider */
.auth-or {
    text-align: center;
    position: relative;
    font-size: 12px;
    color: var(--text3);
    margin: 6px 0 12px;
}

.auth-or::before,
.auth-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border);
}

.auth-or::before {
    left: 0;
}

.auth-or::after {
    right: 0;
}

/* Social */
.auth-social-row {
    display: flex;
    gap: 10px;
}

.auth-social-btn {
    flex: 1;
    padding: 9px 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg3);
    color: var(--text2);
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all .2s;
}

.auth-social-btn:hover {
    border-color: var(--gold-border);
    color: var(--text);
}

/* Password strength */
.auth-strength-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.auth-strength-bar {
    flex: 1;
    height: 3px;
    background: var(--bg4);
    border-radius: 2px;
    overflow: hidden;
}

.auth-strength-fill {
    height: 100%;
    border-radius: 2px;
    transition: width .3s, background .3s;
    width: 0;
}

.auth-strength-label {
    font-size: 11px;
    color: var(--text3);
    white-space: nowrap;
}

/* Spinner */
.auth-spin {
    font-size: 14px;
    display: inline-block;
    animation: gcSpin .8s linear infinite;
}

@keyframes gcSpin {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

/* Terms */
.auth-terms-label {
    margin-bottom: 16px;
    align-items: flex-start;
}

/* ─ Nav auth styles ─ */
.nav-login-btn {
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
    margin-right: 4px;
}

.nav-login-btn:hover {
    border-color: var(--gold-border);
    color: var(--gold);
}

/* User logged-in di navbar */
.nav-user-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 4px;
}

.nav-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #c9a200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}

.nav-user-name {
    font-size: 13px;
    color: var(--text2);
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-logout-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text3);
    font-size: 13px;
    cursor: pointer;
    padding: 3px 10px;
    transition: all .2s;
    font-family: inherit;
}

.nav-logout-btn:hover {
    border-color: rgba(220, 53, 69, .4);
    color: #ff7070;
}

/* Mobile */
.mobile-auth-btn {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
}

.mobile-logout-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text3);
    font-size: 12px;
    padding: 3px 10px;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
}

.mobile-logout-btn:hover {
    color: #ff7070;
    border-color: rgba(220, 53, 69, .4);
}

/* Tombol switch mode (Daftar / Masuk) di dalam panel kanan — hanya muncul mobile */
.auth-mobile-switch {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    text-align: center;
}

/* ─ Responsive ─ */
@media (max-width: 580px) {
    .auth-panel-left {
        display: none;
    }

    .auth-modal-wrap {
        max-width: 420px;
        min-height: auto;
        border-radius: 20px;
    }

    .auth-panel-right {
        padding: 24px 20px;
    }

    .auth-mobile-switch {
        display: flex;
    }
}

.profile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.profile-overlay.open {
    display: flex;
    animation: gcAuthFadeIn .2s ease;
    /* pakai keyframe yang sudah ada */
}

/* ── Modal wrap ── */
.profile-modal-wrap {
    display: flex;
    width: 100%;
    max-width: 820px;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .7), 0 0 0 1px var(--gold-border);
    animation: gcAuthSlideUp .25s ease;
    position: relative;
}

/* ── Tombol tutup ── */
.profile-close-x {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 10;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text3);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.profile-close-x:hover {
    color: var(--text);
    border-color: var(--gold-border);
}

/* ════════════════
   PANEL KIRI
   ════════════════ */
.profile-panel-left {
    width: 260px;
    flex-shrink: 0;
    background: linear-gradient(165deg, var(--bg2) 0%, #110e06 100%);
    border-right: 1px solid var(--gold-border);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    overflow: hidden;
}

/* Dekorasi gold radial */
.profile-panel-left::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 66, .08) 0%, transparent 70%);
    top: -60px;
    right: -70px;
    pointer-events: none;
}

.profile-panel-left::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 66, .05) 0%, transparent 70%);
    bottom: -30px;
    left: -40px;
    pointer-events: none;
}

/* Avatar */
.profile-avatar-wrap {
    position: relative;
    width: 88px;
    margin-bottom: 16px;
}

.profile-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #c9a200);
    border: 3px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: #000;
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-avatar-upload-btn {
    position: absolute;
    bottom: 0;
    right: -2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--bg2);
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
}

.profile-avatar-upload-btn:hover {
    transform: scale(1.1);
}

/* Nama & badge */
.profile-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.3;
}

.profile-badge {
    margin-bottom: 20px;
}

/* Info list */
.profile-info-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.profile-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.profile-info-icon {
    font-size: 14px;
    margin-top: 1px;
    flex-shrink: 0;
}

.profile-info-text {
    font-size: 12.5px;
    color: var(--text2);
    line-height: 1.5;
    word-break: break-all;
}

/* Divider */
.profile-left-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
    margin-bottom: 20px;
}

/* Verse */
.profile-verse {
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 12px 14px;
    width: 100%;
}

.profile-verse-text {
    font-size: 11.5px;
    color: var(--text2);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 5px;
}

.profile-verse-ref {
    font-size: 10.5px;
    color: var(--gold);
    font-weight: 600;
}

/* ════════════════
   PANEL KANAN
   ════════════════ */
.profile-panel-right {
    flex: 1;
    background: var(--bg2);
    padding: 32px 32px 28px;
    overflow-y: auto;
    max-height: 88vh;
}

.profile-panel-right::-webkit-scrollbar {
    width: 4px;
}

.profile-panel-right::-webkit-scrollbar-track {
    background: transparent;
}

.profile-panel-right::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

/* Tab switcher */
.profile-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
}

.profile-tab {
    padding: 9px 18px;
    border: none;
    background: transparent;
    color: var(--text2);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    border-radius: 8px 8px 0 0;
    transition: all .2s;
}

.profile-tab:hover {
    color: var(--text);
    background: var(--bg3);
}

.profile-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
    background: var(--bg3);
}

/* Tab content */
.profile-tab-content {
    display: none;
}

.profile-tab-content.active {
    display: block;
}

/* Section title */
.profile-section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

/* Detail grid */
.profile-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.profile-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
}

.profile-detail-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.profile-detail-value {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    word-break: break-all;
}

.profile-status-badge {
    display: inline-flex;
    padding: 2px 10px;
    border-radius: 999px;
    background: rgba(39, 174, 96, .12);
    border: 1px solid rgba(39, 174, 96, .25);
    color: #5fd98a;
    font-size: 12px;
    font-weight: 600;
}

/* Shortcut ke edit */
.profile-edit-shortcut {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--gold-border);
    background: var(--gold-dim);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
}

.profile-edit-shortcut:hover {
    background: var(--gold);
    color: #000;
}

/* Alert pakai class dari auth (.auth-alert--success / error) */
.auth-alert--success {
    background: rgba(39, 174, 96, .12);
    border: 1px solid rgba(39, 174, 96, .3);
    color: #5fd98a;
}

.auth-alert--error {
    background: rgba(220, 53, 69, .12);
    border: 1px solid rgba(220, 53, 69, .3);
    color: #ff7070;
}

/* ── Navbar: avatar klik untuk buka profil modal ── */
.nav-user-avatar {
    cursor: pointer;
    transition: box-shadow .2s;
}

.nav-user-avatar:hover {
    box-shadow: 0 0 0 2px var(--gold);
}

.nav-user-name {
    cursor: pointer;
}

.nav-user-name:hover {
    color: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .profile-panel-left {
        display: none;
    }

    .profile-modal-wrap {
        max-width: 420px;
        min-height: auto;
        border-radius: 20px;
    }

    .profile-panel-right {
        padding: 24px 20px;
    }

    .profile-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) and (min-width: 641px) {
    .profile-panel-left {
        width: 220px;
        padding: 24px 18px;
    }

    .profile-name {
        font-size: 15px;
    }
}

/* ════════════════════════════════════════════════════════════
   PROFILE MODAL — GBI Slawi
   Tambahkan ke bagian bawah style.css
   ════════════════════════════════════════════════════════════ */

/* ── Overlay ── */
.profile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.profile-overlay.open {
    display: flex;
    animation: gcAuthFadeIn .2s ease;
    /* pakai keyframe yang sudah ada */
}

/* ── Modal wrap ── */
.profile-modal-wrap {
    display: flex;
    width: 100%;
    max-width: 820px;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .7), 0 0 0 1px var(--gold-border);
    animation: gcAuthSlideUp .25s ease;
    position: relative;
}

/* ── Tombol tutup ── */
.profile-close-x {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 10;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text3);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.profile-close-x:hover {
    color: var(--text);
    border-color: var(--gold-border);
}

/* ════════════════
   PANEL KIRI
   ════════════════ */
.profile-panel-left {
    width: 260px;
    flex-shrink: 0;
    background: linear-gradient(165deg, var(--bg2) 0%, #110e06 100%);
    border-right: 1px solid var(--gold-border);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    overflow: hidden;
}

/* Dekorasi gold radial */
.profile-panel-left::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 66, .08) 0%, transparent 70%);
    top: -60px;
    right: -70px;
    pointer-events: none;
}

.profile-panel-left::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 66, .05) 0%, transparent 70%);
    bottom: -30px;
    left: -40px;
    pointer-events: none;
}

/* Avatar */
.profile-avatar-wrap {
    position: relative;
    width: 88px;
    margin-bottom: 16px;
}

.profile-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #c9a200);
    border: 3px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: #000;
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-avatar-upload-btn {
    position: absolute;
    bottom: 0;
    right: -2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--bg2);
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
}

.profile-avatar-upload-btn:hover {
    transform: scale(1.1);
}

/* Nama & badge */
.profile-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.3;
}

.profile-badge {
    margin-bottom: 20px;
}

/* Info list */
.profile-info-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.profile-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.profile-info-icon {
    font-size: 14px;
    margin-top: 1px;
    flex-shrink: 0;
}

.profile-info-text {
    font-size: 12.5px;
    color: var(--text2);
    line-height: 1.5;
    word-break: break-all;
}

/* Divider */
.profile-left-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
    margin-bottom: 20px;
}

/* Verse */
.profile-verse {
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 12px 14px;
    width: 100%;
}

.profile-verse-text {
    font-size: 11.5px;
    color: var(--text2);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 5px;
}

.profile-verse-ref {
    font-size: 10.5px;
    color: var(--gold);
    font-weight: 600;
}

/* ════════════════
   PANEL KANAN
   ════════════════ */
.profile-panel-right {
    flex: 1;
    background: var(--bg2);
    padding: 32px 32px 28px;
    overflow-y: auto;
    max-height: 88vh;
}

.profile-panel-right::-webkit-scrollbar {
    width: 4px;
}

.profile-panel-right::-webkit-scrollbar-track {
    background: transparent;
}

.profile-panel-right::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

/* Tab switcher */
.profile-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
}

.profile-tab {
    padding: 9px 18px;
    border: none;
    background: transparent;
    color: var(--text2);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    border-radius: 8px 8px 0 0;
    transition: all .2s;
}

.profile-tab:hover {
    color: var(--text);
    background: var(--bg3);
}

.profile-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
    background: var(--bg3);
}

/* Tab content */
.profile-tab-content {
    display: none;
}

.profile-tab-content.active {
    display: block;
}

/* Section title */
.profile-section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

/* Detail grid */
.profile-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.profile-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
}

.profile-detail-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.profile-detail-value {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    word-break: break-all;
}

.profile-status-badge {
    display: inline-flex;
    padding: 2px 10px;
    border-radius: 999px;
    background: rgba(39, 174, 96, .12);
    border: 1px solid rgba(39, 174, 96, .25);
    color: #5fd98a;
    font-size: 12px;
    font-weight: 600;
}

/* Shortcut ke edit */
.profile-edit-shortcut {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--gold-border);
    background: var(--gold-dim);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
}

.profile-edit-shortcut:hover {
    background: var(--gold);
    color: #000;
}

/* Alert pakai class dari auth (.auth-alert--success / error) */
.auth-alert--success {
    background: rgba(39, 174, 96, .12);
    border: 1px solid rgba(39, 174, 96, .3);
    color: #5fd98a;
}

.auth-alert--error {
    background: rgba(220, 53, 69, .12);
    border: 1px solid rgba(220, 53, 69, .3);
    color: #ff7070;
}

/* ── Navbar: avatar klik untuk buka profil modal ── */
.nav-user-avatar {
    cursor: pointer;
    transition: box-shadow .2s;
}

.nav-user-avatar:hover {
    box-shadow: 0 0 0 2px var(--gold);
}

.nav-user-name {
    cursor: pointer;
}

.nav-user-name:hover {
    color: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .profile-panel-left {
        display: none;
    }

    .profile-modal-wrap {
        max-width: 420px;
        min-height: auto;
        border-radius: 20px;
    }

    .profile-panel-right {
        padding: 24px 20px;
    }

    .profile-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) and (min-width: 641px) {
    .profile-panel-left {
        width: 220px;
        padding: 24px 18px;
    }

    .profile-name {
        font-size: 15px;
    }
}

.logout-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.logout-overlay.open {
    display: flex;
    animation: gcAuthFadeIn .18s ease;
}

.logout-dialog {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .7), 0 0 0 1px var(--gold-border);
    padding: 32px 28px 24px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    animation: gcAuthSlideUp .22s ease;
}

.logout-icon {
    font-size: 40px;
    margin-bottom: 14px;
    display: block;
}

.logout-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
}

.logout-sub {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 24px;
}

.logout-actions {
    display: flex;
    gap: 10px;
}

.logout-btn-cancel {
    flex: 1;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
}

.logout-btn-cancel:hover {
    border-color: var(--gold-border);
    color: var(--text);
}

.logout-btn-confirm {
    flex: 1;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(220, 53, 69, .4);
    background: rgba(220, 53, 69, .1);
    color: #ff7070;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
}

.logout-btn-confirm:hover {
    background: rgba(220, 53, 69, .2);
    border-color: rgba(220, 53, 69, .7);
    color: #ff4d4d;
}

/* ════════════════════════════════════════════════════════════
   RESET PASSWORD PAGES
   Digunakan di: /reset-password & /reset-password/{token}
   ════════════════════════════════════════════════════════════ */

.reset-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    background: var(--bg);
}

.reset-wrap {
    display: flex;
    width: 100%;
    max-width: 800px;
    min-height: 480px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .7), 0 0 0 1px var(--gold-border);
    animation: gcAuthSlideUp .25s ease;
}

/* ── Panel Kiri ── */
.reset-panel-left {
    width: 40%;
    flex-shrink: 0;
    background: linear-gradient(165deg, var(--bg2) 0%, #110e06 100%);
    border-right: 1px solid var(--gold-border);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}

.reset-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reset-logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
}

.reset-logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
}

.reset-left-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 0;
}

.reset-left-title {
    font-size: 28px;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 12px;
}

.reset-left-sub {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 24px;
}

.reset-left-divider {
    height: 1px;
    background: var(--gold-border);
    margin-bottom: 20px;
}

.reset-verse-text {
    font-size: 13px;
    color: var(--text2);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 6px;
}

.reset-verse-ref {
    font-size: 11px;
    color: var(--gold);
}

/* Steps (dipakai di halaman confirm) */
.reset-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reset-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.reset-step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.reset-step-text {
    font-size: 12px;
    color: var(--text2);
    line-height: 1.5;
}

.reset-left-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.reset-back-link {
    font-size: 12px;
    color: var(--text3);
    text-decoration: none;
    transition: color .2s;
}

.reset-back-link:hover {
    color: var(--gold);
}

/* ── Panel Kanan ── */
.reset-panel-right {
    flex: 1;
    background: var(--bg2);
    padding: 40px 36px 32px;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ── State Sukses ── */
.reset-success-state {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 40px 0;
}

.reset-success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(46, 213, 115, 0.12);
    border: 1px solid rgba(46, 213, 115, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.reset-success-title {
    font-size: 20px;
    color: var(--text);
}

.reset-success-sub {
    font-size: 13px;
    color: var(--text2);
    max-width: 280px;
    line-height: 1.6;
}

.reset-countdown {
    font-size: 12px;
    color: var(--text3);
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .reset-panel-left {
        display: none;
    }

    .reset-wrap {
        border-radius: 16px;
    }

    .reset-panel-right {
        padding: 32px 20px 24px;
    }
}

.logout-modal-wrap {
    max-width: 620px;
    min-height: 400px;
}

/* ── Avatar user ── */
.logout-avatar-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    margin-top: 4px;
}

.logout-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold, #c9a84c), #e8c97a);
    color: #1a1200;
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0;
    overflow: hidden;
}

.logout-avatar.has-photo {
    background: transparent;
}

.logout-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.logout-avatar-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.logout-avatar-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logout-avatar-email {
    font-size: 12px;
    color: var(--text3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Tombol aksi vertikal ── */
.logout-actions-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.logout-confirm-btn {
    background: linear-gradient(135deg, rgba(220, 53, 69, .15), rgba(220, 53, 69, .08));
    border: 1px solid rgba(220, 53, 69, .45);
    color: #ff7070;
}

.logout-confirm-btn:hover {
    background: linear-gradient(135deg, rgba(220, 53, 69, .28), rgba(220, 53, 69, .15));
    border-color: rgba(220, 53, 69, .75);
    color: #ff4d4d;
    box-shadow: 0 4px 20px rgba(220, 53, 69, .2);
}

.logout-cancel-btn {
    width: 100%;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
    text-align: center;
}

.logout-cancel-btn:hover {
    border-color: var(--gold-border);
    color: var(--text);
}

/* ── Responsive ── */
@media (max-width: 560px) {
    .logout-modal-wrap {
        flex-direction: column;
        min-height: unset;
    }

    .logout-modal-wrap .auth-panel-left {
        display: none;
    }

    .logout-panel-right {
        padding: 28px 20px 20px;
    }
}

/* ════════════════════════════════════════════════════════════
   NAVBAR — mode interaktif di atas auth modal wajib
   ════════════════════════════════════════════════════════════ */

/* Saat navbar di-elevate (modal community wajib login),
   berikan subtle highlight agar user tahu navbar bisa diklik */
.navbar[style*="99999"] {
    box-shadow: 0 2px 24px rgba(201, 168, 76, 0.18);
    border-bottom-color: var(--gold-border);
}

/* ════════════════════════════════════════════════════════════
   COMPLETE PROFILE MODAL — GBI Slawi
   Tambahkan ke bagian bawah style.css
   ════════════════════════════════════════════════════════════ */

/* ── Overlay ── */
.cp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    /* di atas semua modal lain */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: cpFadeIn .3s ease;
}

@keyframes cpFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── Modal wrapper ── */
.cp-modal-wrap {
    display: flex;
    width: 100%;
    max-width: 860px;
    max-height: 92vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
    animation: cpSlideUp .35s cubic-bezier(.16, 1, .3, 1);
}

@keyframes cpSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ══ PANEL KIRI ══ */
.cp-panel-left {
    width: 270px;
    flex-shrink: 0;
    background: linear-gradient(160deg, var(--gold-dark, #8b6914) 0%, var(--gold, #c9952a) 100%);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
}

.cp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.cp-logo-icon {
    font-size: 22px;
    color: #fff;
}

.cp-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px;
}

.cp-left-body {
    flex: 1;
}

.cp-left-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
}

.cp-left-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cp-left-divider {
    height: 1px;
    background: rgba(255, 255, 255, .25);
    margin: 18px 0;
}

/* ── Progress steps sidebar ── */
.cp-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.cp-step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: .5;
    transition: opacity .3s;
}

.cp-step.active {
    opacity: 1;
}

.cp-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    border: 2px solid rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.cp-step.active .cp-step-num {
    background: #fff;
    color: var(--gold, #c9952a);
    border-color: #fff;
}

.cp-step-label {
    font-size: 13px;
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
}

.cp-step-line {
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, .3);
    margin-left: 12px;
    margin-block: 4px;
}

/* ── Kutipan ── */
.cp-verse {
    margin-top: auto;
    padding-top: 20px;
}

.cp-verse-text {
    font-size: 12px;
    font-style: italic;
    color: rgba(255, 255, 255, .8);
    line-height: 1.55;
    margin-bottom: 4px;
}

.cp-verse-ref {
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
}

/* ══ PANEL KANAN ══ */
.cp-panel-right {
    flex: 1;
    background: var(--surface, #1a1a2e);
    padding: 36px 32px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cp-panel-right-head {
    margin-bottom: 22px;
}

.cp-form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text1, #eee);
    margin: 8px 0 4px;
}

.cp-form-sub {
    font-size: 13px;
    color: var(--text3, #888);
}

/* ── Step content ── */
.cp-step-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

/* ── Gender selector ── */
.cp-gender-group {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.cp-gender-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 10px;
    border-radius: 12px;
    border: 2px solid var(--border, rgba(255, 255, 255, .1));
    background: var(--surface2, rgba(255, 255, 255, .04));
    cursor: pointer;
    transition: all .2s;
    font-size: 13px;
    color: var(--text2, #bbb);
    font-weight: 500;
}

.cp-gender-btn:hover {
    border-color: var(--gold, #c9952a);
    background: rgba(201, 149, 42, .08);
}

.cp-gender-btn.selected {
    border-color: var(--gold, #c9952a);
    background: rgba(201, 149, 42, .14);
    color: var(--gold, #c9952a);
}

.cp-gender-icon {
    font-size: 26px;
}

/* ── Avatar upload (step 0) ── */
.cp-avatar-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}

.cp-avatar-preview {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px dashed var(--border, rgba(255, 255, 255, .15));
    background: var(--surface2, rgba(255, 255, 255, .04));
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-avatar-preview:hover {
    border-color: var(--gold, #c9952a);
}

.cp-avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cp-avatar-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text3, #777);
    font-size: 11px;
    text-align: center;
    padding: 8px;
    pointer-events: none;
}

.cp-avatar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
}

.cp-avatar-preview:hover .cp-avatar-overlay {
    opacity: 1;
}

.cp-avatar-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cp-avatar-hint {
    font-size: 13px;
    color: var(--text2, #bbb);
    font-weight: 500;
}

.cp-avatar-rule {
    font-size: 11.5px;
    color: var(--text3, #777);
    line-height: 1.5;
}

.cp-avatar-choose-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--border, rgba(255, 255, 255, .15));
    background: transparent;
    color: var(--text2, #bbb);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}

.cp-avatar-choose-btn:hover {
    border-color: var(--gold, #c9952a);
    color: var(--gold, #c9952a);
}

/* ── Button row (step 2) ── */
.cp-btn-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}

.cp-back-btn {
    padding: 12px 20px;
    border-radius: 10px;
    border: 2px solid var(--border, rgba(255, 255, 255, .15));
    background: transparent;
    color: var(--text2, #bbb);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.cp-back-btn:hover {
    border-color: var(--gold, #c9952a);
    color: var(--gold, #c9952a);
}

.cp-submit-final {
    flex: 1;
    margin-top: 0 !important;
}

/* ── Skip hint ── */
.cp-skip-hint {
    text-align: center;
    margin-top: 14px;
}

.cp-skip-btn {
    background: none;
    border: none;
    color: var(--text3, #777);
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    transition: color .2s;
}

.cp-skip-btn:hover {
    color: var(--text2, #bbb);
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .cp-modal-wrap {
        flex-direction: column;
        max-height: 95vh;
        border-radius: 16px;
    }

    .cp-panel-left {
        width: 100%;
        padding: 24px 20px 18px;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .cp-logo {
        margin-bottom: 0;
    }

    .cp-left-body {
        display: none;
    }

    .cp-panel-right {
        padding: 24px 20px;
    }

    .cp-gender-group {
        flex-direction: row;
    }
}

/* ════════════════════════════════════════════════════════════
   PROFILE MODAL — tambahan sub-tab & interest pills
   Tambahkan ke bagian bawah style.css
   ════════════════════════════════════════════════════════════ */

/* ── Sub-tab switcher di dalam tab Edit ── */
.pm-edit-subtabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    background: var(--bg3);
    border-radius: 10px;
    padding: 4px;
}

.pm-edit-subtab {
    flex: 1;
    padding: 8px 14px;
    border: none;
    background: transparent;
    color: var(--text2);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    border-radius: 7px;
    transition: all .2s;
}

.pm-edit-subtab:hover {
    color: var(--text);
    background: var(--bg2);
}

.pm-edit-subtab.active {
    background: var(--gold);
    color: #000;
}

/* ── Interest pills (tab Info Jemaat) ── */
.pm-interests-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.pm-interest-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--gold-dim, rgba(201, 149, 42, .12));
    border: 1px solid var(--gold-border, rgba(201, 149, 42, .3));
    color: var(--gold, #c9952a);
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

/* ── select input pakai style auth-input ── */
select.auth-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

/* ════════════════════════════════════════════════════════════
   TAB ULANG TAHUN — toolbar, filter, search
   Tambahkan ke bagian bawah style.css
   ════════════════════════════════════════════════════════════ */

/* ── Toolbar (search + mode toggle) ── */
.ultah-toolbar {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

/* Search */
.ultah-search-wrap {
    flex: 1;
    min-width: 200px;
    position: relative;
    display: flex;
    align-items: center;
}

.ultah-search-icon {
    position: absolute;
    left: 14px;
    font-size: 14px;
    pointer-events: none;
    color: var(--text3);
}

.ultah-search-input {
    width: 100%;
    padding: 10px 40px 10px 38px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--bg3);
    color: var(--text);
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
}

.ultah-search-input:focus {
    border-color: var(--gold);
}

.ultah-search-input::placeholder {
    color: var(--text3);
}

.ultah-search-clear {
    position: absolute;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: none;
    background: var(--text3);
    color: var(--bg);
    font-size: 11px;
    cursor: pointer;
    padding: 0;
}

/* Mode toggle */
.ultah-mode-toggle {
    display: flex;
    gap: 4px;
    background: var(--bg3);
    border-radius: 10px;
    padding: 4px;
    flex-shrink: 0;
}

.ultah-mode-btn {
    padding: 8px 14px;
    border: none;
    background: transparent;
    color: var(--text2);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    border-radius: 7px;
    transition: all .2s;
    white-space: nowrap;
}

.ultah-mode-btn:hover {
    color: var(--text);
    background: var(--bg2);
}

.ultah-mode-btn.active {
    background: var(--gold);
    color: #000;
}

/* ── Navigasi bulan ── */
.ultah-week-controls,
.ultah-month-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ultah-month-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ultah-nav-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--bg3);
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    flex-shrink: 0;
}

.ultah-nav-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.ultah-month-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    min-width: 140px;
    text-align: center;
}

/* ── Tab minggu ── */
.ultah-week-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ultah-week-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 18px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
    position: relative;
}

.ultah-week-tab:hover {
    border-color: var(--gold);
    color: var(--text);
}

.ultah-week-tab.active {
    border-color: var(--gold);
    background: var(--gold-dim);
    color: var(--gold);
}

.ultah-week-sub {
    font-size: 11px;
    font-weight: 400;
    color: var(--text3);
}

.ultah-week-tab.active .ultah-week-sub {
    color: var(--gold);
    opacity: .8;
}

/* Badge jumlah ulang tahun di tab minggu */
.ultah-week-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Label konteks ── */
.ultah-context-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: .06em;
    min-height: 18px;
}

/* ── Badge hari ini di kartu ── */
.ultah-today-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 999px;
    padding: 2px 10px;
}

/* ── Empty state ── */
.ultah-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px 20px;
    color: var(--text3);
    font-size: 14px;
    text-align: center;
}

.ultah-empty-icon {
    font-size: 40px;
    opacity: .5;
}

/* ── Responsive ── */
@media (max-width: 540px) {
    .ultah-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .ultah-mode-toggle {
        justify-content: center;
    }

    .ultah-week-tab {
        flex: 1;
        min-width: 0;
        padding: 8px 6px;
        font-size: 12px;
    }

    .ultah-month-label {
        min-width: 120px;
        font-size: 14px;
    }
}

#tab-forum [id^="forum-view-"] {
    animation: forumViewIn .25s ease both;
}

@keyframes forumViewIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Header navigasi (kembali) ── */
.forum-view-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.forum-back-btn {
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: border-color .2s, color .2s;
    flex-shrink: 0;
}

.forum-back-btn:hover {
    border-color: var(--gold-border);
    color: var(--gold);
}

.forum-view-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text2);
}

.forum-detail-topbar-actions {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.forum-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text2);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}

.forum-icon-btn:hover {
    border-color: var(--gold-border);
    color: var(--gold);
}

/* ── Kategori tag di list ── */
.kom-forum-cat-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 999px;
    background: var(--gold-dim, rgba(245, 200, 66, .1));
    color: var(--gold, #f5c842);
    border: 1px solid var(--gold-border, rgba(245, 200, 66, .22));
    letter-spacing: .02em;
}

/* ── kom-forum-item hover state ── */
.kom-forum-item {
    transition: border-color .2s, background .15s;
}

.kom-forum-item:hover {
    border-color: var(--gold-border, rgba(245, 200, 66, .25)) !important;
    background: var(--bg3) !important;
}

/* ══ COMPOSE CARD ══ */
.forum-compose-card {
    padding: 26px;
}

.forum-compose-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.forum-compose-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold, #f5c842), #c9a200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(245, 200, 66, .12);
}

.forum-compose-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.forum-compose-subtitle {
    font-size: 12px;
    color: var(--text3);
    margin-top: 2px;
}

.forum-field {
    margin-bottom: 16px;
}

.forum-field-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text3);
    margin-bottom: 8px;
}

.forum-compose-input {
    font-size: 15px;
}

.forum-compose-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.65;
}

.forum-compose-charcount {
    text-align: right;
    font-size: 11px;
    color: var(--text3);
    margin-top: 5px;
}

/* Kategori pills */
.forum-cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.forum-cat-pill {
    padding: 5px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
}

.forum-cat-pill:hover {
    border-color: var(--gold-border);
    color: var(--gold);
}

.forum-cat-pill.active {
    background: var(--gold-dim, rgba(245, 200, 66, .12));
    border-color: var(--gold-border, rgba(245, 200, 66, .25));
    color: var(--gold, #f5c842);
}

/* Toolbar */
.forum-compose-toolbar {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 18px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--bg3);
    border: 1px solid var(--border);
    flex-wrap: wrap;
}

.forum-tool-btn {
    padding: 5px 10px;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: var(--text3);
    font-size: 15px;
    cursor: pointer;
    transition: background .15s, color .15s;
    font-family: inherit;
}

.forum-tool-btn:hover {
    background: var(--bg4);
    color: var(--text2);
}

.forum-tool-sep {
    width: 1px;
    height: 18px;
    background: var(--border);
    flex-shrink: 0;
}

.forum-compose-visibility {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text3);
}

.forum-visibility-select {
    background: var(--bg4);
    border: 1px solid var(--border);
    color: var(--text2);
    font-size: 12px;
    font-family: inherit;
    padding: 4px 8px;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
}

.forum-compose-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 4px;
}

/* ══ DETAIL CARD ══ */
.forum-detail-card {
    padding: 22px 22px 0;
    margin-bottom: 0;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
}

.forum-detail-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.forum-detail-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    overflow: hidden;
}

.forum-detail-avatar.has-photo {
    background: transparent;
}

.forum-detail-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.forum-detail-meta-info {}

.forum-detail-author-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 3px;
    flex-wrap: wrap;
}

.forum-detail-time-cat {
    font-size: 12px;
    color: var(--text3);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.forum-detail-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 12px;
}

.forum-detail-body {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.72;
    margin-bottom: 18px;
}

.forum-detail-body p {
    margin-bottom: 10px;
}

/* Reactions */
.forum-detail-reactions {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.forum-reaction-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
}

.forum-reaction-btn:hover {
    border-color: var(--gold-border);
    color: var(--text);
}

.forum-reaction-btn.active {
    background: var(--gold-dim);
    border-color: var(--gold-border);
    color: var(--gold);
}

.forum-share-btn {
    margin-left: auto;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text3);
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all .2s;
}

.forum-share-btn:hover {
    color: var(--text2);
    border-color: var(--gold-border);
}

/* ── Replies wrap ── */
.forum-replies-wrap {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-top: none;
    padding: 20px 22px;
}

.forum-replies-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.forum-replies-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.forum-replies-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--gold-dim);
    color: var(--gold);
    border: 1px solid var(--gold-border);
}

.forum-replies-sort {
    margin-left: auto;
    font-size: 12px;
    color: var(--text3);
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 10px;
    font-family: inherit;
    cursor: pointer;
    outline: none;
}

/* ── Reply item ── */
.forum-reply-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    animation: forumReplyIn .3s ease both;
}

@keyframes forumReplyIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Balasan baru dari polling real-time — highlight sebentar lalu normal */
.forum-reply-item.reply-new {
    animation: forumReplyNewIn .4s ease both;
}

@keyframes forumReplyNewIn {
    0% {
        opacity: 0;
        transform: translateY(8px);
        background: transparent;
    }

    20% {
        background: color-mix(in srgb, var(--gold) 12%, transparent);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        background: transparent;
    }
}

.forum-reply-item:last-child {
    border-bottom: none;
}

.forum-reply-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    overflow: hidden;
}

.forum-reply-avatar.has-photo {
    background: transparent;
}

.forum-reply-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.forum-reply-avatar.highlight {
    background: linear-gradient(135deg, rgba(245, 200, 66, .18), rgba(245, 200, 66, .04));
    border-color: var(--gold-border);
    box-shadow: 0 0 0 2px var(--gold-dim);
}

.forum-reply-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.forum-reply-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.forum-reply-time {
    font-size: 11px;
    color: var(--text3);
}

.forum-reply-body {
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.65;
    margin-bottom: 7px;
}

/* Mention @Nama dalam balasan forum diskusi */
.forum-reply-mention {
    color: var(--gold);
    font-weight: 700;
    font-size: inherit;
}

.forum-reply-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.forum-reply-action-btn {
    background: none;
    border: none;
    color: var(--text3);
    font-size: 12px;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .15s;
    padding: 2px 4px;
}

.forum-reply-action-btn:hover {
    color: var(--gold);
}

.forum-reply-action-btn.liked {
    color: var(--gold);
}

/* ── Reply compose (sticky bottom dalam view detail) ── */
.forum-reply-compose {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 22px 20px;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 16px 16px;
    background: var(--bg2);
    position: sticky;
    bottom: 0;
}

.forum-reply-compose-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold, #f5c842), #c9a200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 3px;
    box-shadow: 0 0 0 2px rgba(245, 200, 66, .12);
}

.forum-reply-compose-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.forum-reply-mention-hint {
    font-size: 11px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 4px;
}

.forum-reply-mention-clear {
    background: none;
    border: none;
    color: var(--text3);
    font-size: 11px;
    cursor: pointer;
    margin-left: 2px;
}

.forum-reply-input-row {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.forum-reply-tools {
    display: flex;
    gap: 2px;
}

.forum-reply-tool {
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    color: var(--text3);
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s;
}

.forum-reply-tool:hover {
    background: var(--bg3);
    color: var(--text2);
}

.forum-reply-textarea {
    flex: 1;
    padding: 9px 13px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: var(--bg3);
    color: var(--text);
    font-size: 13.5px;
    font-family: inherit;
    outline: none;
    resize: none;
    min-height: 42px;
    max-height: 130px;
    line-height: 1.55;
    overflow-y: auto;
    transition: border-color .2s, box-shadow .2s;
}

.forum-reply-textarea::placeholder {
    color: var(--text3);
}

.forum-reply-textarea:focus {
    border-color: var(--gold-border);
    box-shadow: 0 0 0 3px rgba(245, 200, 66, .06);
}

.forum-reply-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold, #f5c842);
    color: #000;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(245, 200, 66, .28);
    transition: transform .2s, box-shadow .2s;
}

.forum-reply-send-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 5px 18px rgba(245, 200, 66, .42);
}

.forum-reply-send-btn:disabled {
    opacity: .38;
    transform: none;
    cursor: not-allowed;
}

@media (max-width: 540px) {
    .forum-compose-card {
        padding: 18px 16px;
    }

    .forum-detail-card {
        padding: 16px 16px 0;
    }

    .forum-replies-wrap {
        padding: 16px;
    }

    .forum-reply-compose {
        padding: 12px 16px 18px;
    }

    .forum-detail-title {
        font-size: 17px;
    }
}

#tab-pengumuman [id^="peng-view-"] {
    animation: pengViewIn .25s ease both;
}

@keyframes pengViewIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Item list: hover + "Selengkapnya" ── */
.peng-item {
    transition: border-color .2s, background .15s, box-shadow .2s;
}

.peng-item:hover {
    border-color: var(--gold-border, rgba(245, 200, 66, .25)) !important;
    background: var(--bg3) !important;
}

.peng-item-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.peng-read-more {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold, #f5c842);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .2s, transform .2s;
    white-space: nowrap;
    pointer-events: none;
}

.peng-item:hover .peng-read-more {
    opacity: 1;
    transform: translateX(0);
}

/* ── Navigasi header ── */
.peng-view-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.peng-back-btn {
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color .2s, color .2s;
}

.peng-back-btn:hover {
    border-color: var(--gold-border);
    color: var(--gold);
}

.peng-view-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text2);
}

.peng-share-btn {
    margin-left: auto;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}

.peng-share-btn:hover {
    border-color: var(--gold-border);
    color: var(--gold);
}

/* ── Detail card ── */
.peng-detail-card {
    padding: 28px;
}

.peng-detail-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.peng-detail-date {
    font-size: 13px;
    color: var(--text3);
}

.peng-detail-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 14px;
}

.peng-detail-author-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.peng-detail-author-icon {
    font-size: 15px;
}

.peng-detail-author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
}

.peng-detail-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 20px;
}

.peng-detail-body {
    font-size: 14.5px;
    color: var(--text2);
    line-height: 1.78;
    margin-bottom: 24px;
}

.peng-detail-body p {
    margin-bottom: 12px;
}

.peng-detail-body strong {
    color: var(--text);
}

.peng-detail-body ul {
    list-style: disc;
}

.peng-detail-body li {
    margin-bottom: 2px;
}

/* Footer aksi */
.peng-detail-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.peng-reaction-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
}

.peng-reaction-btn:hover {
    border-color: var(--gold-border);
    color: var(--text);
}

.peng-reaction-btn.active {
    background: var(--gold-dim);
    border-color: var(--gold-border);
    color: var(--gold);
}

.peng-cta-link {
    margin-left: auto;
    padding: 8px 20px;
    border-radius: 999px;
    background: var(--gold, #f5c842);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(245, 200, 66, .25);
    transition: opacity .2s, transform .2s;
}

.peng-cta-link:hover {
    opacity: .88;
    transform: translateY(-1px);
}

@media (max-width: 540px) {
    .peng-detail-card {
        padding: 18px 16px;
    }

    .peng-detail-title {
        font-size: 18px;
    }
}

/* ── Pengumuman: loading / empty / error states ── */
.peng-state-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 3.5rem 1rem;
    color: var(--text3);
    font-size: 0.95rem;
    text-align: center;
}

.peng-spinner {
    font-size: 2rem;
    animation: peng-spin 1.2s linear infinite;
    display: inline-block;
}

@keyframes peng-spin {
    to {
        transform: rotate(360deg);
    }
}

.peng-retry-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.3rem 0.9rem;
    cursor: pointer;
    color: var(--text2);
    font-size: 0.875rem;
    font-family: inherit;
    margin-top: 0.25rem;
    transition: border-color .2s, color .2s;
}

.peng-retry-btn:hover {
    border-color: var(--gold-border);
    color: var(--gold);
}

/* ════════════════════════════════════════════════════════════
   MODAL SUKSES PESAN DOA — GBI Slawi
   Tambahkan ke bagian bawah style.css
   ════════════════════════════════════════════════════════════ */

/* ── Overlay ────────────────────────────────────────────────── */
.psukses-overlay {
    position: fixed;
    inset: 0;
    z-index: 9990;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.psukses-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* ── Wrap (dua panel, persis seperti auth-modal-wrap) ───────── */
.psukses-wrap {
    display: flex;
    width: 100%;
    max-width: 780px;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .7), 0 0 0 1px var(--gold-border);
    animation: gcAuthSlideUp .28s ease;
    /* pakai keyframe yang sudah ada */
}

/* ── Panel Kiri ─────────────────────────────────────────────── */
.psukses-left {
    width: 38%;
    flex-shrink: 0;
    background: linear-gradient(165deg, var(--bg2) 0%, #110e06 100%);
    border-right: 1px solid var(--gold-border);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.psukses-left-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 66, .1) 0%, transparent 70%);
    top: -60px;
    right: -80px;
    pointer-events: none;
}

.psukses-left-glow--b {
    width: 180px;
    height: 180px;
    top: auto;
    right: auto;
    bottom: -30px;
    left: -50px;
    background: radial-gradient(circle, rgba(245, 200, 66, .06) 0%, transparent 70%);
}

/* Brand */
.psukses-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.psukses-brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #c9a200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #000;
    font-weight: 700;
    flex-shrink: 0;
}

.psukses-brand-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

/* Tengah panel kiri */
.psukses-left-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    padding: 20px 0;
}

/* Ikon dengan ring berdenyut */
.psukses-icon-ring {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.psukses-icon-ring__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
    animation: psuksesRingPulse 2.6s ease-in-out infinite;
}

.psukses-icon-ring__pulse--2 {
    inset: -10px;
    opacity: 0.4;
    animation-delay: 0.7s;
}

@keyframes psuksesRingPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.psukses-icon-emoji {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 200, 66, .2), rgba(245, 200, 66, .06));
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    animation: psuksesIconPop .45s cubic-bezier(0.34, 1.56, 0.64, 1) .05s both;
}

@keyframes psuksesIconPop {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.psukses-left-title {
    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--text);
}

.psukses-left-sub {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
}

/* Ayat */
.psukses-verse {
    font-size: 13px;
    font-style: italic;
    color: var(--text2);
    line-height: 1.7;
    border-left: 2px solid var(--gold-border);
    padding-left: 12px;
}

.psukses-verse cite {
    display: block;
    font-style: normal;
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-top: 6px;
}

/* ── Panel Kanan ────────────────────────────────────────────── */
.psukses-right {
    flex: 1;
    background: var(--bg3);
    padding: 32px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    position: relative;
}

/* Tombol ✕ */
.psukses-close-x {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg4);
    border: 1px solid var(--border);
    color: var(--text2);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.psukses-close-x:hover {
    background: var(--gold-dim);
    border-color: var(--gold-border);
    color: var(--gold);
}

/* Sapaan */
.psukses-greet {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
}

.psukses-greet-chip {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.psukses-greet-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}

.psukses-greet-name span {
    color: var(--gold);
}

.psukses-greet-sub {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.65;
}

/* Kotak ID */
.psukses-id-card {
    background: var(--bg2);
    border: 1px solid var(--gold-border);
    border-radius: 14px;
    padding: 16px 18px;
}

.psukses-id-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 8px;
}

.psukses-id-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.psukses-id-value {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--gold);
}

.psukses-copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    background: var(--bg4);
    border: 1px solid var(--border);
    color: var(--text2);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.psukses-copy-btn:hover {
    border-color: var(--gold-border);
    background: var(--gold-dim);
    color: var(--gold);
}

.psukses-id-hint {
    font-size: 11.5px;
    color: var(--text3);
    line-height: 1.5;
}

.psukses-id-hint strong {
    color: var(--text2);
}

/* Progress steps */
.psukses-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.psukses-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.psukses-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.psukses-step-dot--done {
    background: linear-gradient(135deg, var(--gold), #c9a200);
    color: #000;
}

.psukses-step-dot--active {
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    color: var(--gold);
}

.psukses-step-dot--dim {
    background: var(--bg4);
    border: 1px solid var(--border);
    color: var(--text3);
}

.psukses-step-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.psukses-step-sub {
    font-size: 11.5px;
    color: var(--text3);
}

.psukses-step-line {
    width: 1px;
    height: 18px;
    background: var(--gold-border);
    margin-left: 13px;
}

.psukses-step-line--dim {
    background: var(--border);
}

/* Tombol aksi */
.psukses-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 4px;
}

.psukses-btn-primary {
    flex: 1;
    padding: 11px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), #c9a200);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
}

.psukses-btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.psukses-btn-outline {
    flex: 1;
    padding: 11px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text2);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.psukses-btn-outline:hover {
    border-color: var(--gold-border);
    color: var(--gold);
    background: var(--gold-dim);
}

/* ── Responsif mobile ────────────────────────────────────────── */
@media (max-width: 620px) {
    .psukses-left {
        display: none;
    }

    .psukses-wrap {
        border-radius: 20px;
    }

    .psukses-right {
        padding: 28px 22px 24px;
    }

    .psukses-greet-name {
        font-size: 20px;
    }

    .psukses-id-value {
        font-size: 20px;
    }

    .psukses-actions {
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════════════════════════
   MODAL LACAK PESAN — _modal-lacak-pesan.blade.php
   Tambahkan ke style.css (setelah blok .psukses-*)
   ═══════════════════════════════════════════════════════════════ */

/* ── Overlay ─────────────────────────────────────────────────── */
.placak-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.placak-overlay.open {
    display: flex;
    opacity: 1;
}

/* ── Dialog wrap ─────────────────────────────────────────────── */
.placak-wrap {
    display: flex;
    width: 100%;
    max-width: 820px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.94) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.placak-overlay.open .placak-wrap {
    transform: scale(1) translateY(0);
}

/* ── Panel kiri ──────────────────────────────────────────────── */
.placak-left {
    flex: 0 0 280px;
    background: linear-gradient(160deg, #1a1200 0%, #0a0800 60%, #12100a 100%);
    border-right: 1px solid var(--gold-border);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.placak-left-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(245, 200, 66, 0.18) 0%, transparent 70%);
    top: -60px;
    left: -60px;
    pointer-events: none;
}

.placak-left-glow--b {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(245, 200, 66, 0.1) 0%, transparent 70%);
    top: auto;
    left: auto;
    bottom: 60px;
    right: -40px;
}

/* Brand */
.placak-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.placak-brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #c9a200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #0a0800;
    flex-shrink: 0;
}

.placak-brand-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.5px;
}

/* Ikon ring */
.placak-left-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
}

.placak-icon-ring {
    position: relative;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placak-icon-ring__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(245, 200, 66, 0.3);
    animation: placakPulse 2.2s ease-out infinite;
}

.placak-icon-ring__pulse--2 {
    animation-delay: 1.1s;
}

@keyframes placakPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

.placak-icon-emoji {
    font-size: 36px;
    position: relative;
    z-index: 1;
}

.placak-left-title {
    font-size: 26px;
    line-height: 1.2;
    color: #fff;
}

.placak-left-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Ayat */
.placak-verse {
    background: rgba(245, 200, 66, 0.07);
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    margin-top: 24px;
}

.placak-verse cite {
    display: block;
    margin-top: 8px;
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
    font-size: 11px;
}

/* ── Panel kanan ─────────────────────────────────────────────── */
.placak-right {
    flex: 1;
    background: var(--bg2);
    padding: 36px 32px;
    position: relative;
    overflow-y: auto;
    max-height: 90vh;
}

.placak-close-x {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg4);
    border: 1px solid var(--border);
    color: var(--text2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.placak-close-x:hover {
    background: var(--gold-dim);
    color: var(--gold);
}

/* Loading */
.placak-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 300px;
    color: var(--text2);
    font-size: 14px;
}

.placak-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error */
.placak-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 40px 20px;
}

.placak-error-icon {
    font-size: 48px;
}

.placak-error-title {
    font-size: 20px;
    color: var(--text);
}

.placak-error-sub {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.6;
    max-width: 280px;
}

/* Greet */
.placak-greet {
    margin-bottom: 24px;
}

.placak-greet-chip {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    border: 1px solid var(--gold-border);
    color: var(--gold);
    background: var(--gold-dim);
}

.placak-greet-chip.chip-menunggu {
    background: rgba(100, 116, 139, .12);
    border-color: rgba(100, 116, 139, .3);
    color: #94a3b8;
}

.placak-greet-chip.chip-proses {
    background: rgba(59, 130, 246, .12);
    border-color: rgba(59, 130, 246, .3);
    color: #60a5fa;
}

.placak-greet-chip.chip-selesai {
    background: rgba(34, 197, 94, .12);
    border-color: rgba(34, 197, 94, .3);
    color: #4ade80;
}

.placak-greet-chip.chip-ditolak {
    background: rgba(239, 68, 68, .12);
    border-color: rgba(239, 68, 68, .3);
    color: #f87171;
}

.placak-greet-name {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 6px;
}

.placak-greet-sub {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.5;
}

/* ID Card */
.placak-id-card {
    background: var(--bg3);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.placak-id-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.placak-id-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.placak-id-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.placak-copy-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    background: var(--gold-dim);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: auto;
}

.placak-copy-btn:hover {
    background: rgba(245, 200, 66, 0.25);
}

/* Steps */
.placak-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 28px;
}

.placak-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.placak-step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg4);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text3);
    flex-shrink: 0;
}

.placak-step-dot--done {
    background: rgba(34, 197, 94, .15);
    border-color: #4ade80;
    color: #4ade80;
}

.placak-step-dot--active {
    background: rgba(59, 130, 246, .15);
    border-color: #60a5fa;
    color: #60a5fa;
}

.placak-step-dot--dim {
    background: var(--bg4);
    border-color: var(--border);
    color: var(--text3);
}

.placak-step-line {
    width: 2px;
    height: 28px;
    background: #4ade80;
    margin-left: 15px;
}

.placak-step-line--dim {
    background: var(--border);
}

.placak-step-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    padding-top: 4px;
}

.placak-step-sub {
    font-size: 12px;
    color: var(--text2);
    margin-top: 2px;
}

/* Actions */
.placak-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.placak-btn-primary {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), #c9a200);
    color: #0a0800;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.placak-btn-primary:hover {
    opacity: 0.88;
}

.placak-btn-outline {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: 10px;
    background: transparent;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.placak-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Tracking list — status dinamis ─────────────────────────── */
.kom-tracking-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.kom-tracking-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 0;
    color: var(--text3);
    font-size: 13px;
}

.kom-tracking-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    flex-shrink: 0;
}

.kom-tracking-login-prompt {
    text-align: center;
    padding: 20px 12px;
    color: var(--text2);
    font-size: 13px;
    line-height: 1.6;
}

.kom-tracking-login-prompt a {
    color: var(--gold);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.kom-tracking-login-prompt a:hover {
    text-decoration: underline;
}

.kom-tracking-empty {
    text-align: center;
    padding: 20px 12px;
    color: var(--text3);
    font-size: 13px;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 680px) {
    .placak-wrap {
        flex-direction: column;
        max-height: 95vh;
    }

    .placak-left {
        flex: 0 0 auto;
        padding: 24px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .placak-left-body {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }

    .placak-icon-ring {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }

    .placak-icon-emoji {
        font-size: 24px;
    }

    .placak-left-title {
        font-size: 18px;
    }

    .placak-verse {
        display: none;
    }

    .placak-right {
        padding: 24px 20px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   MODAL LACAK PESAN + PAGINATION STATUS PESANKU
   Tambahkan ke style.css (setelah blok .psukses-*)
   ═══════════════════════════════════════════════════════════════ */

/* ── Overlay ──────────────────────────────────────────────── */
.placak-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity .3s ease;
}

.placak-overlay.open {
    display: flex;
    opacity: 1;
}

/* ── Dialog ───────────────────────────────────────────────── */
.placak-wrap {
    display: flex;
    width: 100%;
    max-width: 820px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .55);
    transform: scale(.94) translateY(20px);
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.placak-overlay.open .placak-wrap {
    transform: scale(1) translateY(0);
}

/* ── Panel kiri ───────────────────────────────────────────── */
.placak-left {
    flex: 0 0 268px;
    background: linear-gradient(160deg, #1a1200 0%, #0a0800 60%, #12100a 100%);
    border-right: 1px solid var(--gold-border);
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.placak-left-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(245, 200, 66, .18) 0%, transparent 70%);
    top: -60px;
    left: -60px;
    pointer-events: none;
}

.placak-left-glow--b {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(245, 200, 66, .10) 0%, transparent 70%);
    top: auto;
    left: auto;
    bottom: 60px;
    right: -40px;
}

.placak-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.placak-brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #c9a200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #0a0800;
    flex-shrink: 0;
}

.placak-brand-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: .5px;
}

.placak-left-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
}

.placak-icon-ring {
    position: relative;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placak-icon-ring__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(245, 200, 66, .3);
    animation: placakPulse 2.2s ease-out infinite;
}

.placak-icon-ring__pulse--2 {
    animation-delay: 1.1s;
}

@keyframes placakPulse {
    0% {
        transform: scale(1);
        opacity: .6;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

.placak-icon-emoji {
    font-size: 36px;
    position: relative;
    z-index: 1;
}

.placak-left-title {
    font-size: 26px;
    line-height: 1.2;
    color: #fff;
}

.placak-left-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.5;
}

.placak-verse {
    background: rgba(245, 200, 66, .07);
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .65);
    font-style: italic;
    margin-top: 24px;
}

.placak-verse cite {
    display: block;
    margin-top: 8px;
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
    font-size: 11px;
}

/* ── Panel kanan ──────────────────────────────────────────── */
.placak-right {
    flex: 1;
    background: var(--bg2);
    padding: 36px 32px;
    position: relative;
    overflow-y: auto;
    max-height: 90vh;
}

.placak-close-x {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg4);
    border: 1px solid var(--border);
    color: var(--text2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}

.placak-close-x:hover {
    background: var(--gold-dim);
    color: var(--gold);
}

/* Loading */
.placak-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 300px;
    color: var(--text2);
    font-size: 14px;
}

.placak-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Not found illustration */
.placak-notfound-illustration {
    background: var(--bg3);
    border: 1px dashed var(--border);
    border-radius: 14px;
    padding: 20px 24px;
    text-align: center;
    margin-bottom: 20px;
}

.placak-nf-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.placak-nf-hint {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
}

/* Greet */
.placak-greet {
    margin-bottom: 20px;
}

.placak-greet-chip {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    border: 1px solid var(--gold-border);
    color: var(--gold);
    background: var(--gold-dim);
}

.placak-greet-chip.chip-menunggu {
    background: rgba(100, 116, 139, .12);
    border-color: rgba(100, 116, 139, .3);
    color: #94a3b8;
}

.placak-greet-chip.chip-proses {
    background: rgba(59, 130, 246, .12);
    border-color: rgba(59, 130, 246, .3);
    color: #60a5fa;
}

.placak-greet-chip.chip-selesai {
    background: rgba(34, 197, 94, .12);
    border-color: rgba(34, 197, 94, .3);
    color: #4ade80;
}

.placak-greet-chip.chip-ditolak {
    background: rgba(239, 68, 68, .12);
    border-color: rgba(239, 68, 68, .3);
    color: #f87171;
}

.placak-greet-name {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 6px;
}

.placak-greet-sub {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.5;
}

/* ID card */
.placak-id-card {
    background: var(--bg3);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 22px;
}

.placak-id-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.placak-id-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.placak-id-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.placak-copy-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    background: var(--gold-dim);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    margin-left: auto;
}

.placak-copy-btn:hover {
    background: rgba(245, 200, 66, .25);
}

/* Steps */
.placak-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 26px;
}

.placak-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.placak-step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg4);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text3);
    flex-shrink: 0;
}

.placak-step-dot--done {
    background: rgba(34, 197, 94, .15);
    border-color: #4ade80;
    color: #4ade80;
}

.placak-step-dot--active {
    background: rgba(59, 130, 246, .15);
    border-color: #60a5fa;
    color: #60a5fa;
}

.placak-step-dot--dim {
    background: var(--bg4);
    border-color: var(--border);
    color: var(--text3);
}

.placak-step-line {
    width: 2px;
    height: 26px;
    background: #4ade80;
    margin-left: 15px;
}

.placak-step-line--dim {
    background: var(--border);
}

.placak-step-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    padding-top: 4px;
}

.placak-step-sub {
    font-size: 12px;
    color: var(--text2);
    margin-top: 2px;
}

/* Actions */
.placak-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.placak-btn-primary {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), #c9a200);
    color: #0a0800;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: opacity .2s;
}

.placak-btn-primary:hover {
    opacity: .88;
}

.placak-btn-outline {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: 10px;
    background: transparent;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color .2s, color .2s;
}

.placak-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   TRACKING LIST — dynamic + pagination
   ═══════════════════════════════════════════════════════════ */
.kom-tracking-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 0;
    color: var(--text3);
    font-size: 13px;
}

.kom-tracking-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin .8s linear infinite;
    flex-shrink: 0;
}

.kom-tracking-login-prompt {
    text-align: center;
    padding: 20px 12px;
    color: var(--text2);
    font-size: 13px;
    line-height: 1.7;
}

.kom-tracking-login-prompt a {
    color: var(--gold);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.kom-tracking-login-prompt a:hover {
    text-decoration: underline;
}

.kom-tracking-empty {
    text-align: center;
    padding: 20px 12px;
    color: var(--text3);
    font-size: 13px;
}

/* Pagination */
.kom-tracking-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.kom-page-btn {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s, border-color .18s, color .18s;
}

.kom-page-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}

.kom-page-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #0a0800;
}

.kom-page-btn:disabled {
    opacity: .35;
    cursor: default;
    pointer-events: none;
}

.kom-page-info {
    font-size: 12px;
    color: var(--text3);
    padding: 0 6px;
    white-space: nowrap;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 680px) {
    .placak-wrap {
        flex-direction: column;
        max-height: 95vh;
    }

    .placak-left {
        flex: 0 0 auto;
        padding: 20px 22px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 14px;
    }

    .placak-brand {
        margin-bottom: 0;
    }

    .placak-left-body {
        flex-direction: row;
        text-align: left;
        flex: 1;
    }

    .placak-icon-ring {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
    }

    .placak-icon-emoji {
        font-size: 22px;
    }

    .placak-left-title {
        font-size: 16px;
    }

    .placak-left-sub,
    .placak-verse {
        display: none;
    }

    .placak-right {
        padding: 22px 18px;
    }
}

/* ════════════════════════════════════════════════════════════
   FORUM COMPOSE — Two-panel card (mirip psukses)
   Tambahkan ke style.css (sebelum tutup atau di bagian forum)
   ════════════════════════════════════════════════════════════ */

/* ── Wrapper dua panel ─────────────────────────────────────── */
.fcompose-wrap {
    display: flex;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 0 1px var(--gold-border);
    animation: gcAuthSlideUp .28s ease;
}

/* ── Panel Kiri ─────────────────────────────────────────────── */
.fcompose-left {
    width: 36%;
    flex-shrink: 0;
    background: linear-gradient(165deg, var(--bg2) 0%, #110e06 100%);
    border-right: 1px solid var(--gold-border);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.fcompose-left-glow {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 66, .1) 0%, transparent 70%);
    top: -60px;
    right: -80px;
    pointer-events: none;
}

.fcompose-left-glow--b {
    width: 160px;
    height: 160px;
    top: auto;
    right: auto;
    bottom: -30px;
    left: -50px;
    background: radial-gradient(circle, rgba(245, 200, 66, .06) 0%, transparent 70%);
}

/* Brand */
.fcompose-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fcompose-brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #c9a200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #000;
    font-weight: 700;
    flex-shrink: 0;
}

.fcompose-brand-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

/* Body tengah panel kiri */
.fcompose-left-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    padding: 20px 0;
}

/* Ikon ring */
.fcompose-icon-ring {
    position: relative;
    width: 78px;
    height: 78px;
    flex-shrink: 0;
}

.fcompose-icon-ring__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
    animation: psuksesRingPulse 2.6s ease-in-out infinite;
}

.fcompose-icon-ring__pulse--2 {
    inset: -10px;
    opacity: .4;
    animation-delay: .7s;
}

.fcompose-icon-emoji {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 200, 66, .2), rgba(245, 200, 66, .06));
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    animation: psuksesIconPop .45s cubic-bezier(0.34, 1.56, 0.64, 1) .05s both;
}

.fcompose-left-title {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--text);
}

.fcompose-left-sub {
    font-size: 12.5px;
    color: var(--text2);
    line-height: 1.6;
}

/* Ayat */
.fcompose-verse {
    font-size: 12.5px;
    font-style: italic;
    color: var(--text2);
    line-height: 1.7;
    border-left: 2px solid var(--gold-border);
    padding-left: 12px;
    margin: 0;
}

.fcompose-verse cite {
    display: block;
    font-style: normal;
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: .04em;
    margin-top: 6px;
}

/* ── Panel Kanan ─────────────────────────────────────────────── */
.fcompose-right {
    flex: 1;
    background: var(--bg3);
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
}

/* Sapaan */
.fcompose-greet {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fcompose-greet-chip {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .03em;
}

.fcompose-greet-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.25;
    margin: 0;
}

.fcompose-greet-name span {
    color: var(--gold);
}

.fcompose-greet-sub {
    font-size: 12.5px;
    color: var(--text2);
    line-height: 1.6;
    margin: 0;
}

/* Field */
.fcompose-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fcompose-field-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text3);
}

.fcompose-input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg2);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}

.fcompose-input:focus {
    border-color: var(--gold-border);
    box-shadow: 0 0 0 3px rgba(245, 200, 66, .08);
}

.fcompose-textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg2);
    color: var(--text);
    font-size: 13.5px;
    font-family: inherit;
    line-height: 1.65;
    resize: vertical;
    min-height: 100px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}

.fcompose-textarea:focus {
    border-color: var(--gold-border);
    box-shadow: 0 0 0 3px rgba(245, 200, 66, .08);
}

.fcompose-count-row {
    text-align: right;
    font-size: 11px;
    color: var(--text3);
}

/* Alert */
.fcompose-alert {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    border: 1px solid transparent;
    animation: gcAuthSlideUp .2s ease;
}

.fcompose-alert.error {
    background: rgba(220, 60, 60, .1);
    border-color: rgba(220, 60, 60, .3);
    color: #ff6b6b;
}

.fcompose-alert.success {
    background: rgba(46, 213, 115, .1);
    border-color: rgba(46, 213, 115, .3);
    color: #2ed573;
}

/* Aksi */
.fcompose-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 4px;
}

.fcompose-btn-primary {
    flex: 1;
    padding: 11px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), #c9a200);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .03em;
    border: none;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
    font-family: inherit;
}

.fcompose-btn-primary:hover {
    opacity: .88;
    transform: translateY(-1px);
}

.fcompose-btn-primary:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}

.fcompose-btn-outline {
    padding: 11px 22px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text2);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
}

.fcompose-btn-outline:hover {
    border-color: var(--gold-border);
    color: var(--gold);
    background: var(--gold-dim);
}

/* ── Responsif ───────────────────────────────────────────────── */
@media (max-width: 680px) {
    .fcompose-left {
        display: none;
    }

    .fcompose-right {
        padding: 22px 18px 20px;
    }
}

/* ════════════════════════════════════════════════════════════
   FORUM COMPOSE (fcp-*) — struktur & gaya identik detail view
   Tambahkan ke style.css setelah bagian .forum-detail-card
   ════════════════════════════════════════════════════════════ */

/* Card — radius penuh (tidak disambung replies-wrap) */
.fcp-card {
    padding: 22px 22px 20px;
    border-radius: 16px;
}

/* Avatar khusus "kamu" — gold ring seperti reply highlight */
.fcp-avatar-you {
    background: linear-gradient(135deg,
            rgba(245, 200, 66, .18),
            rgba(245, 200, 66, .04)) !important;
    border-color: var(--gold-border) !important;
    box-shadow: 0 0 0 3px var(--gold-dim);
}

/* Alert validasi — muncul di antara meta dan title input */
.fcp-alert {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 12px;
    animation: forumReplyIn .2s ease;
    border: 1px solid transparent;
}

.fcp-alert.error {
    background: rgba(220, 60, 60, .08);
    border-color: rgba(220, 60, 60, .25);
    color: #ff7070;
}

.fcp-alert.success {
    background: rgba(46, 213, 115, .08);
    border-color: rgba(46, 213, 115, .25);
    color: #2ed573;
}

/* Input judul — gaya & ukuran sama dengan .forum-detail-title */
.fcp-title-input {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    margin-bottom: 4px;
    font-family: inherit;
    box-sizing: border-box;
    caret-color: var(--gold);
}

.fcp-title-input::placeholder {
    color: var(--text3);
    font-weight: 600;
}

/* Textarea isi — gaya & ukuran sama dengan .forum-detail-body */
.fcp-body-input {
    display: block;
    width: 100%;
    font-size: 14px;
    color: var(--text2);
    line-height: 1.72;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    margin-bottom: 4px;
    font-family: inherit;
    resize: none;
    min-height: 120px;
    box-sizing: border-box;
    caret-color: var(--gold);
}

.fcp-body-input::placeholder {
    color: var(--text3);
}

/* Counter karakter */
.fcp-count {
    text-align: right;
    font-size: 11px;
    color: var(--text3);
    margin-bottom: 6px;
}

/* Divider tipis antara judul dan isi */
.fcp-divider {
    border: none;
    border-top: 1px dashed var(--border);
    margin: 10px 0 14px;
}

/* Label section (Kategori) */
.fcp-section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text3);
    margin-bottom: 10px;
}

/* Tombol Posting — lebih menonjol dari reaction-btn biasa */
.fcp-post-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 22px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--gold), #c9a200);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: .02em;
    transition: opacity .2s, transform .15s;
    box-shadow: 0 4px 14px rgba(245, 200, 66, .25);
}

.fcp-post-btn:hover {
    opacity: .88;
    transform: translateY(-1px);
}

.fcp-post-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
}

/* Pratinjau judul di modal sukses */
.fdiskusi-judul-preview {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.45;
}

/* ── Responsif ───────────────────────────────────────────────── */
@media (max-width: 480px) {
    .fcp-title-input {
        font-size: 17px;
    }
}

/* ════════════════════════════════════════════════════════════
   NAVBAR NOTIFIKASI
   Tambahkan ke bagian bawah style.css
   ════════════════════════════════════════════════════════════ */

/* ── Wrapper posisi relatif untuk dropdown ───────────────── */
.nav-notif-wrap {
    position: relative;
}

/* ── Tombol lonceng ──────────────────────────────────────── */
.nav-notif-btn {
    position: relative;
    background: none;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text2);
    font-size: 15px;
    cursor: pointer;
    padding: 4px 10px;
    transition: all .2s;
    font-family: inherit;
    line-height: 1;
}

.nav-notif-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Badge angka merah di pojok lonceng ──────────────────── */
.nav-notif-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e53e3e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    pointer-events: none;
}

/* ── Dropdown panel ──────────────────────────────────────── */
.nav-notif-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
    z-index: 999;
    overflow: hidden;
}

.nav-notif-dropdown.open {
    display: block;
}

/* ── Header dropdown ─────────────────────────────────────── */
.nav-notif-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--text1);
}

.nav-notif-read-all {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 11px;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.nav-notif-read-all:hover {
    text-decoration: underline;
}

/* ── Daftar item notifikasi ──────────────────────────────── */
.nav-notif-list {
    max-height: 340px;
    overflow-y: auto;
}

/* ── Satu item notifikasi ────────────────────────────────── */
.nav-notif-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background .15s;
}

.nav-notif-item:last-child {
    border-bottom: none;
}

.nav-notif-item:hover {
    background: var(--bg2);
}

/* Belum dibaca → background lebih terang */
.nav-notif-item.unread {
    background: color-mix(in srgb, var(--gold) 8%, var(--card));
}

.nav-notif-item.unread:hover {
    background: color-mix(in srgb, var(--gold) 14%, var(--card));
}

/* ── Ikon jenis notifikasi ───────────────────────────────── */
.nav-notif-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Konten teks ─────────────────────────────────────────── */
.nav-notif-content {
    flex: 1;
    min-width: 0;
}

.nav-notif-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-notif-desc {
    font-size: 12px;
    color: var(--text3);
    margin-top: 2px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-notif-time {
    font-size: 11px;
    color: var(--text3);
    margin-top: 4px;
}

/* ── Dot unread ──────────────────────────────────────────── */
.nav-notif-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ── State kosong ────────────────────────────────────────── */
.nav-notif-empty {
    text-align: center;
    color: var(--text3);
    font-size: 13px;
    padding: 24px 16px;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════
   NAVBAR NOTIFIKASI
   Tambahkan ke bagian bawah style.css
   ════════════════════════════════════════════════════════════ */

/* ── Wrapper posisi relatif untuk dropdown ───────────────── */
.nav-notif-wrap {
    position: relative;
}

/* ── Tombol lonceng ──────────────────────────────────────── */
.nav-notif-btn {
    position: relative;
    background: none;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text2);
    font-size: 15px;
    cursor: pointer;
    padding: 4px 10px;
    transition: all .2s;
    font-family: inherit;
    line-height: 1;
}

.nav-notif-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Badge angka merah di pojok lonceng ──────────────────── */
.nav-notif-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e53e3e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    pointer-events: none;
}

/* ── Dropdown panel ──────────────────────────────────────── */
.nav-notif-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
    z-index: 999;
    overflow: hidden;
}

.nav-notif-dropdown.open {
    display: block;
}

/* ── Header dropdown ─────────────────────────────────────── */
.nav-notif-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--text1);
}

.nav-notif-read-all {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 11px;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.nav-notif-read-all:hover {
    text-decoration: underline;
}

/* ── Daftar item notifikasi ──────────────────────────────── */
.nav-notif-list {
    max-height: 340px;
    overflow-y: auto;
}

/* ── Satu item notifikasi ────────────────────────────────── */
.nav-notif-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background .15s;
}

.nav-notif-item:last-child {
    border-bottom: none;
}

.nav-notif-item:hover {
    background: var(--bg2);
}

/* Belum dibaca → background lebih terang */
.nav-notif-item.unread {
    background: color-mix(in srgb, var(--gold) 8%, var(--card));
}

.nav-notif-item.unread:hover {
    background: color-mix(in srgb, var(--gold) 14%, var(--card));
}

/* ── Ikon jenis notifikasi ───────────────────────────────── */
.nav-notif-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Konten teks ─────────────────────────────────────────── */
.nav-notif-content {
    flex: 1;
    min-width: 0;
}

.nav-notif-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-notif-desc {
    font-size: 12px;
    color: var(--text3);
    margin-top: 2px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-notif-time {
    font-size: 11px;
    color: var(--text3);
    margin-top: 4px;
}

/* ── Dot unread ──────────────────────────────────────────── */
.nav-notif-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ── State kosong ────────────────────────────────────────── */
.nav-notif-empty {
    text-align: center;
    color: var(--text3);
    font-size: 13px;
    padding: 24px 16px;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIF MOBILE — NOTIFIKASI
   ════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* Dropdown jadi full-width dari kanan layar */
    .nav-notif-dropdown {
        position: fixed;
        top: 60px;
        /* tepat di bawah navbar */
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0 0 16px 16px;
        border-left: none;
        border-right: none;
        border-top: none;
        max-height: 70vh;
        overflow-y: auto;
        box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
    }

    /* Daftar item tidak perlu scroll sendiri karena
       sudah ditangani oleh dropdown */
    .nav-notif-list {
        max-height: none;
    }

    /* Item sedikit lebih besar agar mudah diklik di layar sentuh */
    .nav-notif-item {
        padding: 14px 16px;
    }

    .nav-notif-icon {
        font-size: 20px;
    }

    .nav-notif-title {
        font-size: 14px;
    }

    .nav-notif-desc {
        font-size: 13px;
    }

    .nav-notif-time {
        font-size: 12px;
    }
}

@media (max-width: 480px) {

    /* Badge angka sedikit lebih besar di layar kecil */
    .nav-notif-badge {
        min-width: 18px;
        height: 18px;
        font-size: 11px;
        top: -5px;
        right: -5px;
    }

    /* Header dropdown lebih compact */
    .nav-notif-header {
        padding: 10px 14px;
        font-size: 12px;
    }

    .nav-notif-read-all {
        font-size: 11px;
    }

    /* Item padding dikurangi sedikit */
    .nav-notif-item {
        padding: 12px 14px;
        gap: 8px;
    }
}

/* ════════════════════════════════════════════════════════════
   NAVBAR NOTIFIKASI
   Tambahkan ke bagian bawah style.css
   ════════════════════════════════════════════════════════════ */

/* ── Wrapper posisi relatif untuk dropdown ───────────────── */
.nav-notif-wrap {
    position: relative;
}

/* ── Tombol lonceng ──────────────────────────────────────── */
.nav-notif-btn {
    position: relative;
    background: none;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text2);
    font-size: 15px;
    cursor: pointer;
    padding: 4px 10px;
    transition: all .2s;
    font-family: inherit;
    line-height: 1;
}

.nav-notif-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Badge angka merah di pojok lonceng ──────────────────── */
.nav-notif-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e53e3e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    pointer-events: none;
}

/* ── Dropdown panel ──────────────────────────────────────── */
.nav-notif-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
    z-index: 999;
    overflow: hidden;
}

.nav-notif-dropdown.open {
    display: block;
}

/* ── Header dropdown ─────────────────────────────────────── */
.nav-notif-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--text1);
}

.nav-notif-read-all {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 11px;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.nav-notif-read-all:hover {
    text-decoration: underline;
}

/* ── Daftar item notifikasi ──────────────────────────────── */
.nav-notif-list {
    max-height: 340px;
    overflow-y: auto;
}

/* ── Satu item notifikasi ────────────────────────────────── */
.nav-notif-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background .15s;
}

.nav-notif-item:last-child {
    border-bottom: none;
}

.nav-notif-item:hover {
    background: var(--bg2);
}

/* Belum dibaca → background lebih terang */
.nav-notif-item.unread {
    background: color-mix(in srgb, var(--gold) 8%, var(--card));
}

.nav-notif-item.unread:hover {
    background: color-mix(in srgb, var(--gold) 14%, var(--card));
}

/* ── Ikon jenis notifikasi ───────────────────────────────── */
.nav-notif-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Konten teks ─────────────────────────────────────────── */
.nav-notif-content {
    flex: 1;
    min-width: 0;
}

.nav-notif-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-notif-desc {
    font-size: 12px;
    color: var(--text3);
    margin-top: 2px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-notif-time {
    font-size: 11px;
    color: var(--text3);
    margin-top: 4px;
}

/* ── Dot unread ──────────────────────────────────────────── */
.nav-notif-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ── State kosong ────────────────────────────────────────── */
.nav-notif-empty {
    text-align: center;
    color: var(--text3);
    font-size: 13px;
    padding: 24px 16px;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIF MOBILE — NOTIFIKASI
   ════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* Item sedikit lebih besar agar mudah diklik di layar sentuh */
    .nav-notif-item {
        padding: 14px 16px;
    }

    .nav-notif-icon {
        font-size: 20px;
    }

    .nav-notif-title {
        font-size: 14px;
    }

    .nav-notif-desc {
        font-size: 13px;
    }

    .nav-notif-time {
        font-size: 12px;
    }
}

@media (max-width: 480px) {

    /* Badge angka sedikit lebih besar di layar kecil */
    .nav-notif-badge {
        min-width: 18px;
        height: 18px;
        font-size: 11px;
        top: -5px;
        right: -5px;
    }

    /* Header dropdown lebih compact */
    .nav-notif-header {
        padding: 10px 14px;
        font-size: 12px;
    }

    .nav-notif-read-all {
        font-size: 11px;
    }

    /* Item padding dikurangi sedikit */
    .nav-notif-item {
        padding: 12px 14px;
        gap: 8px;
    }
}

/* ════════════════════════════════════════════════════════════
   NAVBAR NOTIFIKASI
   Tambahkan ke bagian bawah style.css
   ════════════════════════════════════════════════════════════ */

/* ── Wrapper posisi relatif untuk dropdown ───────────────── */
.nav-notif-wrap {
    position: relative;
}

/* ── Tombol lonceng ──────────────────────────────────────── */
.nav-notif-btn {
    position: relative;
    background: none;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text2);
    font-size: 15px;
    cursor: pointer;
    padding: 4px 10px;
    transition: all .2s;
    font-family: inherit;
    line-height: 1;
}

.nav-notif-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Badge angka merah di pojok lonceng ──────────────────── */
.nav-notif-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e53e3e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    pointer-events: none;
}

/* ── Dropdown panel ──────────────────────────────────────── */
.nav-notif-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
    z-index: 999;
    overflow: hidden;
}

.nav-notif-dropdown.open {
    display: block;
}

/* ── Header dropdown ─────────────────────────────────────── */
.nav-notif-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--text1);
}

.nav-notif-read-all {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 11px;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.nav-notif-read-all:hover {
    text-decoration: underline;
}

/* ── Daftar item notifikasi ──────────────────────────────── */
.nav-notif-list {
    max-height: 340px;
    overflow-y: auto;
}

/* ── Satu item notifikasi ────────────────────────────────── */
.nav-notif-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background .15s;
}

.nav-notif-item:last-child {
    border-bottom: none;
}

.nav-notif-item:hover {
    background: var(--bg2);
}

/* Belum dibaca → background lebih terang */
.nav-notif-item.unread {
    background: color-mix(in srgb, var(--gold) 8%, var(--card));
}

.nav-notif-item.unread:hover {
    background: color-mix(in srgb, var(--gold) 14%, var(--card));
}

/* ── Ikon jenis notifikasi ───────────────────────────────── */
.nav-notif-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Konten teks ─────────────────────────────────────────── */
.nav-notif-content {
    flex: 1;
    min-width: 0;
}

.nav-notif-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-notif-desc {
    font-size: 12px;
    color: var(--text3);
    margin-top: 2px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-notif-time {
    font-size: 11px;
    color: var(--text3);
    margin-top: 4px;
}

/* ── Dot unread ──────────────────────────────────────────── */
.nav-notif-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ── State kosong ────────────────────────────────────────── */
.nav-notif-empty {
    text-align: center;
    color: var(--text3);
    font-size: 13px;
    padding: 24px 16px;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIF MOBILE — NOTIFIKASI
   ════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* Dropdown tidak boleh terpotong di tepi layar —
       pasang ke kanan layar dengan right negatif jika perlu */
    .nav-notif-wrap {
        position: static;
    }

    .nav-notif-dropdown {
        position: fixed;
        top: 65px;
        /* tinggi navbar */
        right: 12px;
        left: 12px;
        width: auto;
        max-height: 60vh;
        overflow-y: auto;
        border-radius: 14px;
    }

    /* Sembunyikan nama user agar navbar tidak penuh */
    .nav-user-name {
        display: none;
    }

    /* Item lebih besar agar mudah disentuh */
    .nav-notif-item {
        padding: 14px 16px;
    }

    .nav-notif-icon {
        font-size: 20px;
    }

    .nav-notif-title {
        font-size: 14px;
    }

    .nav-notif-desc {
        font-size: 13px;
    }

    .nav-notif-time {
        font-size: 12px;
    }
}

@media (max-width: 480px) {

    /* Dropdown full width dengan margin kecil di layar sangat kecil */
    .nav-notif-dropdown {
        right: 8px;
        left: 8px;
        max-height: 55vh;
    }

    /* Badge sedikit lebih besar */
    .nav-notif-badge {
        min-width: 18px;
        height: 18px;
        font-size: 11px;
        top: -5px;
        right: -5px;
    }

    /* Header compact */
    .nav-notif-header {
        padding: 10px 14px;
    }

    .nav-notif-item {
        padding: 12px 14px;
        gap: 8px;
    }
}

@media (max-width: 480px) {

    /* Badge angka sedikit lebih besar di layar kecil */
    .nav-notif-badge {
        min-width: 18px;
        height: 18px;
        font-size: 11px;
        top: -5px;
        right: -5px;
    }

    /* Header dropdown lebih compact */
    .nav-notif-header {
        padding: 10px 14px;
        font-size: 12px;
    }

    .nav-notif-read-all {
        font-size: 11px;
    }

    /* Item padding dikurangi sedikit */
    .nav-notif-item {
        padding: 12px 14px;
        gap: 8px;
    }
}

/* ════════════════════════════════════════════════════════════
   NAVBAR NOTIFIKASI
   Tambahkan ke bagian bawah style.css
   ════════════════════════════════════════════════════════════ */

/* ── Wrapper posisi relatif untuk dropdown ───────────────── */
.nav-notif-wrap {
    position: relative;
}

/* ── Tombol lonceng ──────────────────────────────────────── */
.nav-notif-btn {
    position: relative;
    background: none;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text2);
    font-size: 15px;
    cursor: pointer;
    padding: 4px 10px;
    transition: all .2s;
    font-family: inherit;
    line-height: 1;
}

.nav-notif-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Badge angka merah di pojok lonceng ──────────────────── */
.nav-notif-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e53e3e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    pointer-events: none;
}

/* ── Dropdown panel ──────────────────────────────────────── */
.nav-notif-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    background: #171717;
    background-color: #171717;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
    z-index: 999;
    overflow: hidden;
}

.nav-notif-dropdown.open {
    display: block;
}

/* ── Header dropdown ─────────────────────────────────────── */
.nav-notif-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--text1);
}

.nav-notif-read-all {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 11px;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.nav-notif-read-all:hover {
    text-decoration: underline;
}

/* ── Daftar item notifikasi ──────────────────────────────── */
.nav-notif-list {
    max-height: 340px;
    overflow-y: auto;
}

/* ── Satu item notifikasi ────────────────────────────────── */
.nav-notif-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background .15s;
}

.nav-notif-item:last-child {
    border-bottom: none;
}

.nav-notif-item:hover {
    background: transparent;
}

/* Belum dibaca → background lebih terang */
.nav-notif-item.unread {
    background: transparent;
    /* diganti oleh theme override di bawah */
}

.nav-notif-item.unread:hover {
    background: transparent;
    /* diganti oleh theme override di bawah */
}

/* ── Ikon jenis notifikasi ───────────────────────────────── */
.nav-notif-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Konten teks ─────────────────────────────────────────── */
.nav-notif-content {
    flex: 1;
    min-width: 0;
}

.nav-notif-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-notif-desc {
    font-size: 12px;
    color: var(--text3);
    margin-top: 2px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-notif-time {
    font-size: 11px;
    color: var(--text3);
    margin-top: 4px;
}

/* ── Dot unread ──────────────────────────────────────────── */
.nav-notif-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ── Background solid per tema ───────────────────────────── */
[data-theme="dark"] .nav-notif-dropdown {
    background: #171717;
}

/* ── Item hover per tema ─────────────────────────────────── */
[data-theme="dark"] .nav-notif-item:hover {
    background: #1f1f1f;
}

[data-theme="dark"] .nav-notif-item.unread {
    background: #1c1a13;
}

.nav-notif-empty {
    text-align: center;
    color: var(--text3);
    font-size: 13px;
    padding: 24px 16px;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIF MOBILE — NOTIFIKASI
   ════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* Dropdown tidak boleh terpotong di tepi layar —
       pasang ke kanan layar dengan right negatif jika perlu */
    .nav-notif-wrap {
        position: static;
    }

    .nav-notif-dropdown {
        position: fixed;
        top: 65px;
        /* tinggi navbar */
        right: 12px;
        left: 12px;
        width: auto;
        max-height: 60vh;
        overflow-y: auto;
        border-radius: 14px;
    }

    /* Sembunyikan nama user agar navbar tidak penuh */
    .nav-user-name {
        display: none;
    }

    /* Item lebih besar agar mudah disentuh */
    .nav-notif-item {
        padding: 14px 16px;
    }

    .nav-notif-icon {
        font-size: 20px;
    }

    .nav-notif-title {
        font-size: 14px;
    }

    .nav-notif-desc {
        font-size: 13px;
    }

    .nav-notif-time {
        font-size: 12px;
    }
}

@media (max-width: 480px) {

    /* Dropdown full width dengan margin kecil di layar sangat kecil */
    .nav-notif-dropdown {
        right: 8px;
        left: 8px;
        max-height: 55vh;
    }

    /* Badge sedikit lebih besar */
    .nav-notif-badge {
        min-width: 18px;
        height: 18px;
        font-size: 11px;
        top: -5px;
        right: -5px;
    }

    /* Header compact */
    .nav-notif-header {
        padding: 10px 14px;
    }

    .nav-notif-item {
        padding: 12px 14px;
        gap: 8px;
    }
}

@media (max-width: 480px) {

    /* Badge angka sedikit lebih besar di layar kecil */
    .nav-notif-badge {
        min-width: 18px;
        height: 18px;
        font-size: 11px;
        top: -5px;
        right: -5px;
    }

    /* Header dropdown lebih compact */
    .nav-notif-header {
        padding: 10px 14px;
        font-size: 12px;
    }

    .nav-notif-read-all {
        font-size: 11px;
    }

    /* Item padding dikurangi sedikit */
    .nav-notif-item {
        padding: 12px 14px;
        gap: 8px;
    }
}

/* ════════════════════════════════════════════════════════════
   TAMBAHAN CSS — _section-jam-lokasi
   Tambahkan ke bagian bawah style.css
   ════════════════════════════════════════════════════════════ */

/* ── Scrollable jadwal ── */
.operasional-scroll {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 6px;

    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.operasional-scroll::-webkit-scrollbar {
    width: 4px;
}

.operasional-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.operasional-scroll::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

/* ── Subheader nama hari ── */
.operasional-day-header {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 10px 0 4px;
    border-bottom: 1px solid var(--gold-border);
    margin-bottom: 2px;
}

.operasional-day-header:first-child {
    padding-top: 0;
}

/* ── Baris jadwal sub (lebih indent) ── */
.operasional-row--sub {
    padding-left: 8px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}

.operasional-row--sub:last-of-type {
    border-bottom: none;
}

/* ════════════════════════════════════════════════════════════
   Admin Jadwal — CSS tambahan
   Tambahkan ke file CSS admin Anda (misal: admin.css)
   ════════════════════════════════════════════════════════════ */

/* ── Page layout ──────────────────────────────────────────── */
.admin-page {
    padding: 32px;
    max-width: 1200px;
}

.admin-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.admin-page-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text, #f0f0f0);
    margin-bottom: 4px;
}

.admin-page-subtitle {
    font-size: 14px;
    color: var(--text2, rgba(240, 240, 240, 0.6));
}

/* ── Card ─────────────────────────────────────────────────── */
.admin-card {
    background: var(--bg2, #0f0f0f);
    border: 1px solid var(--border, rgba(255, 255, 255, 0.07));
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

/* ── Table ────────────────────────────────────────────────── */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin-table th {
    text-align: left;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--border);
}

.admin-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: middle;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr.row-inactive td {
    opacity: 0.45;
}

.table-group-header td {
    padding: 10px 14px 6px;
    background: var(--bg3, #171717);
}

/* ── Badges ───────────────────────────────────────────────── */
.badge-kategori {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.badge-utama {
    display: inline-block;
    font-size: 11px;
    color: var(--gold, #F5C842);
    font-weight: 600;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-admin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: var(--gold, #F5C842);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s;
}

.btn-admin:hover {
    opacity: 0.85;
}

.btn-outline-admin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: transparent;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}

.btn-outline-admin:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-sm-admin {
    padding: 5px 9px;
    background: var(--bg3, #171717);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text);
    text-decoration: none;
    transition: border-color 0.15s;
}

.btn-sm-admin:hover {
    border-color: var(--gold);
}

.btn-danger-sm {
    border-color: rgba(239, 68, 68, 0.3);
}

.btn-danger-sm:hover {
    border-color: #ef4444;
    color: #ef4444;
}

/* ── Toggle ───────────────────────────────────────────────── */
.toggle-btn {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s;
}

.toggle-on {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.toggle-off {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text2);
}

.toggle-btn:hover {
    opacity: 0.75;
}

/* ── Form ─────────────────────────────────────────────────── */
.admin-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
}

.form-label .required {
    color: #ef4444;
}

.form-input {
    background: var(--bg3, #171717);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px 13px;
    font-size: 14px;
    color: var(--text);
    width: 100%;
    transition: border-color 0.15s;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold, #F5C842);
}

.form-input.input-error {
    border-color: #ef4444;
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: var(--bg2, #0f0f0f);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.form-error {
    font-size: 12px;
    color: #ef4444;
}

/* ── Radio cards ──────────────────────────────────────────── */
.radio-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: border-color 0.15s, color 0.15s;
    flex: 1;
}

.radio-card input[type="radio"] {
    accent-color: var(--gold);
}

.radio-card.radio-active {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim, rgba(245, 200, 66, 0.08));
}

/* ── Checkbox cards ───────────────────────────────────────── */
.checkbox-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: border-color 0.15s;
}

.checkbox-card input {
    accent-color: var(--gold);
}

.checkbox-card:has(input:checked) {
    border-color: var(--gold);
    background: var(--gold-dim, rgba(245, 200, 66, 0.08));
}

/* ── Alerts ───────────────────────────────────────────────── */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.alert-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #22c55e;
}

.alert-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #ef4444;
}

/* ── Misc ─────────────────────────────────────────────────── */
.text-muted {
    color: var(--text2);
}

/* ════════════════════════════════════════════════════════════
   AVATAR UPLOAD — Profile Modal
   Tambahkan ke dalam style.css
   ════════════════════════════════════════════════════════════ */

/* ── Wrapper avatar ── */
.profile-avatar-wrap {
    position: relative;
    display: inline-block;
}

/* Avatar img mengisi lingkaran */
.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* ── Tombol kamera (label overlay) ── */
.pm-avatar-edit-btn {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gold, #c9a84c);
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
    transition: transform .15s, box-shadow .15s;
    line-height: 1;
    user-select: none;
    z-index: 2;
}

.pm-avatar-edit-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .35);
}

/* ── Hint teks ukuran file ── */
.pm-avatar-hint {
    font-size: 11px;
    color: var(--text3, #999);
    margin: 4px 0 0;
    text-align: center;
}

/* ── Tombol hapus foto ── */
.pm-avatar-delete-btn {
    margin-top: 6px;
    padding: 5px 14px;
    font-size: 12px;
    border-radius: 20px;
    border: 1px solid var(--danger, #e53e3e);
    color: var(--danger, #e53e3e);
    background: transparent;
    cursor: pointer;
    transition: background .15s, color .15s;
    display: block;
    width: fit-content;
    margin-inline: auto;
}

.pm-avatar-delete-btn:hover {
    background: var(--danger, #e53e3e);
    color: #fff;
}

/* ════════════════════════════════════════════════════════════
   AVATAR SECTION — Profile Modal
   Gantikan seluruh blok .pm-avatar-* lama di style.css
   (dari baris 13159 s/d akhir file)
   ════════════════════════════════════════════════════════════ */

/* ── Wrapper vertikal terpusat untuk semua elemen avatar ── */
.pm-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    width: 100%;
}

/* ── Lingkaran avatar ── */
.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* ── Tombol kamera (overlay pojok kanan bawah) ── */
.pm-avatar-edit-btn {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold, #c9a84c);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .35);
    transition: transform .15s, box-shadow .15s;
    user-select: none;
    z-index: 2;
    line-height: 1;
}

.pm-avatar-edit-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .4);
}

/* ── Hint ukuran file ── */
.pm-avatar-hint {
    font-size: 11px;
    color: var(--text3, #888);
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

/* ── Alert sukses / error upload ── */
.pm-avatar-alert-box {
    width: 100%;
    max-width: 200px;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
}

.pm-avatar-alert-box.success {
    background: rgba(46, 213, 115, .15);
    border: 1px solid rgba(46, 213, 115, .4);
    color: #2ed573;
}

.pm-avatar-alert-box.error {
    background: rgba(255, 71, 87, .12);
    border: 1px solid rgba(255, 71, 87, .35);
    color: #ff6b81;
}

/* ── Tombol hapus foto ── */
.pm-avatar-delete-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    font-size: 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 71, 87, .45);
    color: var(--danger, #ff4757);
    background: transparent;
    cursor: pointer;
    transition: background .15s, border-color .15s;
    white-space: nowrap;
}

.pm-avatar-delete-btn:hover {
    background: rgba(255, 71, 87, .1);
    border-color: var(--danger, #ff4757);
}

/* ════════════════════════════════════════════════════════════
   AVATAR & MOBILE BAR — Profile Modal
   Gantikan seluruh blok .pm-avatar-* lama di style.css
   (dari baris 13159 s/d akhir file), lalu tambahkan
   blok @media mobile di bawahnya.
   ════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   DESKTOP — avatar section di panel kiri
   ───────────────────────────────────────────────────────────── */

/* Wrapper vertikal terpusat */
.pm-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    width: 100%;
}

/* Gambar avatar mengisi lingkaran */
.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Tombol kamera — overlay pojok kanan bawah avatar */
.pm-avatar-edit-btn {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold, #c9a84c);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .35);
    transition: transform .15s, box-shadow .15s;
    user-select: none;
    z-index: 2;
    line-height: 1;
}

.pm-avatar-edit-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .4);
}

/* Hint ukuran file */
.pm-avatar-hint {
    font-size: 11px;
    color: var(--text3, #888);
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

/* Alert sukses / error (desktop panel kiri) */
.pm-avatar-alert-box {
    width: 100%;
    max-width: 200px;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 12px;
    text-align: center;
    line-height: 1.4;

    /* Animasi: opacity + geser ke atas saat masuk/keluar */
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .35s ease, transform .35s ease;
}

/* State: tampil */
.pm-avatar-alert-box.pm-alert-visible {
    opacity: 1;
    transform: translateY(0);
}

/* State: sedang menghilang — fade + naik sedikit */
.pm-avatar-alert-box.pm-alert-hiding {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .5s ease, transform .5s ease;
}

.pm-avatar-alert-box.success {
    background: rgba(46, 213, 115, .15);
    border: 1px solid rgba(46, 213, 115, .4);
    color: #2ed573;
}

.pm-avatar-alert-box.error {
    background: rgba(255, 71, 87, .12);
    border: 1px solid rgba(255, 71, 87, .35);
    color: #ff6b81;
}

/* ─────────────────────────────────────────────────────────────
   MOBILE AVATAR BAR — di dalam panel kanan, tampil ≤640px
   ───────────────────────────────────────────────────────────── */

/* Tersembunyi di desktop */
.pm-mobile-avatar-bar {
    display: none;
}

@media (max-width: 640px) {

    /* Bar horizontal flush ke tepi panel kanan */
    .pm-mobile-avatar-bar {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
        /* panel-right mobile punya padding 24px 20px,
       negatif ini membuat bar menempel ke tepi atas & samping */
        margin: -24px -20px 20px;
        background: linear-gradient(135deg, var(--bg3, #1a1710) 0%, #110e06 100%);
        border-bottom: 1px solid var(--gold-border, rgba(201, 168, 76, .25));
    }

    /* Wrapper lingkaran avatar di mobile */
    .pm-mobile-avatar-wrap {
        position: relative;
        flex-shrink: 0;
    }

    /* Avatar 64px di mobile bar */
    .pm-mobile-avatar-wrap .profile-avatar {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }

    /* Tombol kamera mobile — sedikit lebih kecil */
    .pm-mobile-avatar-wrap .pm-avatar-edit-btn {
        width: 24px;
        height: 24px;
        font-size: 12px;
        bottom: 1px;
        right: 1px;
    }

    /* Info teks di sebelah kanan avatar */
    .pm-mobile-avatar-info {
        display: flex;
        flex-direction: column;
        gap: 4px;
        flex: 1;
        min-width: 0;
    }

    .pm-mobile-name {
        font-size: 14px;
        font-weight: 700;
        color: var(--text, #f0e6c8);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pm-mobile-hint {
        font-size: 10.5px;
        color: var(--text3, #888);
    }

    /* Alert di mobile bar — lebar penuh, tanpa max-width */
    .pm-mobile-avatar-info .pm-avatar-alert-box {
        max-width: none;
        width: 100%;
        padding: 5px 10px;
        font-size: 11px;
        text-align: left;
    }

    /* pm-avatar-section di panel kiri tidak perlu dirender
     (panel kiri sudah display:none di mobile) */
    .pm-avatar-section {
        display: none;
    }

    /* Modal wrap mobile — tinggi maks lebih besar agar bar + konten muat */
    .profile-panel-right {
        max-height: 90vh;
    }
}

/* ════════════════════════════════════════════════════════════
   AVATAR & MOBILE BAR — Profile Modal
   Gantikan seluruh blok .pm-avatar-* lama di style.css
   (dari baris 13159 s/d akhir file), lalu tambahkan
   blok @media mobile di bawahnya.
   ════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   DESKTOP — avatar section di panel kiri
   ───────────────────────────────────────────────────────────── */

/* Wrapper vertikal terpusat */
.pm-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    width: 100%;
}

/* Gambar avatar mengisi lingkaran */
.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Tombol kamera — overlay pojok kanan bawah avatar */
.pm-avatar-edit-btn {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold, #c9a84c);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .35);
    transition: transform .15s, box-shadow .15s;
    user-select: none;
    z-index: 2;
    line-height: 1;
}

.pm-avatar-edit-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .4);
}

/* Hint ukuran file */
.pm-avatar-hint {
    font-size: 11px;
    color: var(--text3, #888);
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

/* Alert sukses / error (desktop panel kiri) */
.pm-avatar-alert-box {
    width: 100%;
    max-width: 200px;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 12px;
    text-align: center;
    line-height: 1.4;

    /* Animasi: opacity + geser ke atas saat masuk/keluar */
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .35s ease, transform .35s ease;
}

/* State: tampil */
.pm-avatar-alert-box.pm-alert-visible {
    opacity: 1;
    transform: translateY(0);
}

/* State: sedang menghilang — fade + naik sedikit */
.pm-avatar-alert-box.pm-alert-hiding {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .5s ease, transform .5s ease;
}

.pm-avatar-alert-box.success {
    background: rgba(46, 213, 115, .15);
    border: 1px solid rgba(46, 213, 115, .4);
    color: #2ed573;
}

.pm-avatar-alert-box.error {
    background: rgba(255, 71, 87, .12);
    border: 1px solid rgba(255, 71, 87, .35);
    color: #ff6b81;
}

/* ─────────────────────────────────────────────────────────────
   MOBILE AVATAR BAR — di dalam panel kanan, tampil ≤640px
   ───────────────────────────────────────────────────────────── */

/* Tersembunyi di desktop */
.pm-mobile-avatar-bar {
    display: none;
}

@media (max-width: 640px) {

    /* Bar horizontal flush ke tepi panel kanan */
    .pm-mobile-avatar-bar {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
        /* panel-right mobile punya padding 24px 20px,
       negatif ini membuat bar menempel ke tepi atas & samping */
        margin: -24px -20px 20px;
        background: linear-gradient(135deg, var(--bg3, #1a1710) 0%, #110e06 100%);
        border-bottom: 1px solid var(--gold-border, rgba(201, 168, 76, .25));
    }

    /* Wrapper lingkaran avatar di mobile */
    .pm-mobile-avatar-wrap {
        position: relative;
        flex-shrink: 0;
    }

    /* Avatar 64px di mobile bar */
    .pm-mobile-avatar-wrap .profile-avatar {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }

    /* Tombol kamera mobile — sedikit lebih kecil */
    .pm-mobile-avatar-wrap .pm-avatar-edit-btn {
        width: 24px;
        height: 24px;
        font-size: 12px;
        bottom: 1px;
        right: 1px;
    }

    /* Info teks di sebelah kanan avatar */
    .pm-mobile-avatar-info {
        display: flex;
        flex-direction: column;
        gap: 4px;
        flex: 1;
        min-width: 0;
    }

    .pm-mobile-name {
        font-size: 14px;
        font-weight: 700;
        color: var(--text, #f0e6c8);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pm-mobile-hint {
        font-size: 10.5px;
        color: var(--text3, #888);
    }

    /* Alert di mobile bar — lebar penuh, tanpa max-width */
    .pm-mobile-avatar-info .pm-avatar-alert-box {
        max-width: none;
        width: 100%;
        padding: 5px 10px;
        font-size: 11px;
        text-align: left;
    }

    /* pm-avatar-section di panel kiri tidak perlu dirender
     (panel kiri sudah display:none di mobile) */
    .pm-avatar-section {
        display: none;
    }

    /* Modal wrap mobile — tinggi maks lebih besar agar bar + konten muat */
    .profile-panel-right {
        max-height: 90vh;
    }
}

/* ════════════════════════════════════════════════════════════
   NEWS REDESIGN — GBI Slawi
   Editorial Magazine Style · Dark + Gold
   Replace the existing news CSS block in style.css
   ════════════════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.section-berita {
    padding: 110px 24px 120px;
    background: var(--bg);
    min-height: 100vh;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════
   PAGE HEADER
   ════════════════════════════════════════════════════════════ */
.news-page-header {
    text-align: center;
    margin-bottom: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.news-page-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.news-page-header h2 {
    font-size: clamp(32px, 5vw, 54px);
    margin: 14px 0 12px;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.news-page-header p {
    font-size: 15px;
    color: var(--text2);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   TOOLBAR
   ════════════════════════════════════════════════════════════ */
.news-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 52px;
    padding: 16px 20px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.news-toolbar-right {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

.news-search-wrap {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.news-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    pointer-events: none;
    opacity: 0.4;
}

.news-search {
    width: 100%;
    padding: 10px 36px 10px 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg2);
    color: var(--text);
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.news-search:focus {
    border-color: var(--gold-border);
    box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.06);
}

.news-search::placeholder {
    color: var(--text3);
}

.news-search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text3);
    cursor: pointer;
    font-size: 12px;
}

.news-filter-tabs {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--border);
    cursor: pointer;
    background: transparent;
    color: var(--text2);
    transition: all 0.2s;
    letter-spacing: 0.02em;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.news-archive-select {
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg2);
    color: var(--text2);
    font-size: 12px;
    font-family: inherit;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}

.news-archive-select:focus {
    border-color: var(--gold-border);
}

/* ════════════════════════════════════════════════════════════
   SECTION DIVIDER
   ════════════════════════════════════════════════════════════ */
.news-section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 64px 0 32px;
    color: var(--text3);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.news-section-divider::before,
.news-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.news-section-divider span {
    white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════
   HERO — FEATURED + TERKINI
   ════════════════════════════════════════════════════════════ */
.news-hero {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 0;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.25);
}

/* ── Featured Card ── */
.news-featured {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--bg3);
    transition: background 0.25s;
    border-right: 1px solid var(--border);
}

.news-featured:hover {
    background: var(--bg4);
}

.news-featured-img {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--bg4);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-featured:hover .news-featured-img img {
    transform: scale(1.03);
}

.news-emoji-bg {
    font-size: 64px;
    opacity: 0.25;
}

.news-img-placeholder {
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--bg4);
    min-height: 80px;
}

.news-img-placeholder.sm {
    font-size: 24px;
    min-height: 56px;
}

.news-img-placeholder.xs {
    font-size: 18px;
    min-height: 40px;
    width: 44px;
    flex-shrink: 0;
    border-radius: 8px;
}

.news-img-placeholder.large {
    font-size: 80px;
    min-height: 320px;
    border-radius: 16px;
}

/* Gradient overlay on image */
.news-featured-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.4) 0%,
            transparent 50%);
    pointer-events: none;
}

.news-new-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: #000;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
}

.news-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
}

.cat-ibadah {
    background: rgba(99, 102, 241, 0.18);
    color: #a5b4fc;
}

.cat-pelayanan {
    background: rgba(16, 185, 129, 0.18);
    color: #6ee7b7;
}

.cat-komunitas {
    background: rgba(245, 158, 11, 0.18);
    color: #fcd34d;
}

.cat-pengumuman {
    background: rgba(239, 68, 68, 0.18);
    color: #fca5a5;
}

.news-featured-body {
    padding: 28px 32px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.news-featured-title {
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 700;
    line-height: 1.45;
    color: var(--text);
    margin: 0;
    transition: color 0.2s;
}

.news-featured:hover .news-featured-title {
    color: var(--gold);
}

.news-featured-desc {
    color: var(--text2);
    font-size: 14px;
    line-height: 1.75;
    flex: 1;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta row */
.news-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    font-size: 12px;
    color: var(--text3);
}

.news-dot {
    opacity: 0.35;
}

.news-author {
    color: var(--text2);
    font-weight: 600;
}

.news-date,
.news-views,
.news-read-time {
    color: var(--text3);
    font-size: 12px;
}

.news-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text3);
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.news-like-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    color: var(--text3);
    font-family: inherit;
    transition: color 0.2s, transform 0.15s;
    padding: 2px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-like-btn:hover {
    color: var(--gold);
    transform: scale(1.08);
}

/* ── Side List ── */
.news-side-list {
    display: flex;
    flex-direction: column;
    background: var(--bg3);
}

.news-side-label {
    padding: 18px 20px 12px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0;
    border-bottom: 1px solid var(--border);
}

.news-side-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
    flex: 1;
}

.news-side-item:last-child {
    border-bottom: none;
}

.news-side-item:hover {
    background: var(--bg4);
}

.news-side-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg4);
}

.news-side-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.news-side-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.news-side-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.news-side-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
}

.news-side-item:hover .news-side-title {
    color: var(--gold);
}

.news-side-foot {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 11px;
    color: var(--text3);
}

/* ════════════════════════════════════════════════════════════
   POPULAR GRID
   ════════════════════════════════════════════════════════════ */
.news-popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.news-popular-item {
    display: flex;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 18px 20px;
    background: var(--bg3);
    transition: background 0.2s;
    position: relative;
}

.news-popular-item:hover {
    background: var(--bg4);
}

.news-popular-rank {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
    flex-shrink: 0;
    width: 36px;
    text-align: center;
    transition: color 0.2s;
}

.news-popular-item:hover .news-popular-rank {
    color: var(--gold-border);
}

.news-popular-img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg4);
}

.news-popular-img img {
    width: 64px;
    height: 64px;
    object-fit: cover;
}

.news-popular-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.news-popular-body h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    transition: color 0.2s;
}

.news-popular-item:hover .news-popular-body h4 {
    color: var(--gold);
}

/* ════════════════════════════════════════════════════════════
   ALL NEWS GRID
   ════════════════════════════════════════════════════════════ */
#news-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-color: var(--gold-border);
}

.news-card-img {
    position: relative;
    overflow: hidden;
    background: var(--bg4);
}

.news-card-img img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.news-card:hover .news-card-img img {
    transform: scale(1.04);
}

.news-card-img .news-cat-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
}

.news-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.news-card-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.news-card:hover .news-card-title {
    color: var(--gold);
}

.news-card-desc {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Empty state */
.news-empty {
    text-align: center;
    padding: 80px 24px;
    color: var(--text3);
}

.news-empty-icon {
    font-size: 56px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.news-empty-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text2);
    margin-bottom: 6px;
}

.news-empty-sub {
    font-size: 13px;
}

/* ════════════════════════════════════════════════════════════
   DETAIL NEWS LAYOUT
   ════════════════════════════════════════════════════════════ */
.news-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: flex-start;
    margin-top: 8px;
}

/* ── Article Header ── */
.news-detail-header {
    margin-bottom: 32px;
}

.news-detail-title {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    margin: 14px 0 24px;
    letter-spacing: -0.01em;
}

.news-detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.news-detail-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dim), var(--bg4));
    border: 2px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.author-role {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.news-detail-info {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text3);
    flex-wrap: wrap;
}

.news-detail-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── Article Image ── */
.news-detail-img {
    margin-bottom: 36px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.3);
}

.news-detail-img img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 500px;
    display: block;
    transition: transform 0.5s ease;
}

.news-detail-img:hover img {
    transform: scale(1.01);
}

/* ── Article Content ── */
.news-detail-content {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text2);
}

.news-detail-content p {
    margin-bottom: 20px;
}

.news-detail-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--text);
    margin: 36px 0 16px;
    font-weight: 700;
}

.news-detail-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin: 28px 0 12px;
}

.news-lead {
    font-size: 18px !important;
    font-weight: 500;
    color: var(--text) !important;
    line-height: 1.7 !important;
    border-left: 3px solid var(--gold);
    padding: 16px 24px;
    background: var(--gold-dim);
    border-radius: 0 12px 12px 0;
    margin-bottom: 32px !important;
}

/* ── Tags ── */
.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.news-tag {
    padding: 5px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 12px;
    color: var(--text3);
    transition: all 0.2s;
    cursor: default;
    background: var(--bg3);
}

.news-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}

/* ── Detail Actions ── */
.news-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 48px;
}

.news-action-btn {
    padding: 11px 24px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-action-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}

.news-action-btn.liked {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold);
}

.news-share-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-left: auto;
}

.news-share-label {
    font-size: 12px;
    color: var(--text3);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.news-share-btn {
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    color: var(--text2);
}

.news-share-btn.wa:hover {
    border-color: #25D366;
    color: #fff;
    background: #25D366;
}

.news-share-btn.copy:hover {
    border-color: var(--gold);
    color: #000;
    background: var(--gold);
}

/* Copy toast */
.copy-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35);
    animation: toastIn .3s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* ════════════════════════════════════════════════════════════
   SIDEBAR
   ════════════════════════════════════════════════════════════ */
.news-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    padding: 24px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.sidebar-widget-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

/* Sidebar news list */
.sidebar-news-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-news-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.sidebar-news-item:hover {
    opacity: 0.85;
}

.sidebar-news-item:hover .sidebar-news-title {
    color: var(--gold);
}

.sidebar-news-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.sidebar-news-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text);
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-news-date {
    font-size: 11px;
    color: var(--text3);
}

/* Sidebar categories */
.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text2);
    font-size: 13px;
    transition: all 0.2s;
}

.sidebar-cat-item:hover {
    background: var(--bg4);
    color: var(--text);
}

.sidebar-cat-count {
    background: var(--bg4);
    border: 1px solid var(--border);
    color: var(--text3);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 999px;
}

/* ════════════════════════════════════════════════════════════
   PREV / NEXT NAVIGATION
   ════════════════════════════════════════════════════════════ */
.news-nav-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.news-nav-btn {
    padding: 22px 26px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.news-nav-btn:hover {
    border-color: var(--gold-border);
    background: var(--bg4);
    transform: translateY(-2px);
}

.news-nav-right {
    text-align: right;
}

.news-nav-dir {
    font-size: 11px;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.news-nav-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text2);
    line-height: 1.5;
    transition: color 0.2s;
}

.news-nav-btn:hover .news-nav-title {
    color: var(--text);
}

/* ════════════════════════════════════════════════════════════
   REVEAL ANIMATION
   ════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {

    #news-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-detail-layout {
        grid-template-columns: 1fr 280px;
        gap: 36px;
    }
}

@media (max-width: 1024px) {
    .news-detail-layout {
        grid-template-columns: 1fr;
    }

    .news-detail-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 900px) {
    .news-hero {
        grid-template-columns: 1fr;
    }

    .news-featured {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 768px) {
    .section-berita {
        padding: calc(65px + 48px) 16px 80px;
    }

    .news-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .news-search-wrap {
        max-width: 100%;
    }

    .news-toolbar-right {
        flex-direction: column;
        align-items: stretch;
    }

    .news-filter-tabs {
        justify-content: flex-start;
        gap: 6px;
    }

    #news-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-popular-grid {
        grid-template-columns: 1fr;
    }

    .news-nav-btns {
        grid-template-columns: 1fr;
    }

    .news-nav-right {
        text-align: left;
    }

    .news-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .news-detail-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-share-group {
        margin-left: 0;
    }

    .news-detail-title {
        font-size: clamp(22px, 6vw, 34px);
    }

    .news-detail-sidebar {
        grid-template-columns: 1fr;
    }

    .news-nav-btns {
        margin-top: 32px;
        padding-top: 32px;
    }

    .news-featured-body {
        padding: 20px 20px 24px;
    }

    .news-lead {
        font-size: 15px !important;
        padding: 14px 18px;
    }
}

@media (max-width: 480px) {
    .news-popular-item {
        gap: 10px;
        padding: 14px 16px;
    }

    .news-popular-rank {
        font-size: 24px;
        width: 28px;
    }

    .news-detail-info {
        gap: 10px;
        font-size: 12px;
    }
}

/* ════════════════════════════════════════════════════════════
   DETAIL NEWS — detail-news.blade.php
   ════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════
   READING PROGRESS BAR
══════════════════════════════════════════════════════ */
#nd-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), #f0d060);
    z-index: 9999;
    transition: width .1s linear;
    box-shadow: 0 0 12px rgba(201, 168, 76, .7);
}

/* ══════════════════════════════════════════════════════
   CINEMATIC HERO
══════════════════════════════════════════════════════ */
.nd-cinematic {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--deep);
}

.nd-cinematic-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease;
    display: block;
}

.nd-cinematic.loaded .nd-cinematic-bg {
    transform: scale(1);
}

.nd-cinematic-emoji-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 180px;
    opacity: .06;
}

.nd-cinematic-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .55) 45%, rgba(0, 0, 0, .15) 80%, transparent 100%),
        linear-gradient(to right, rgba(0, 0, 0, .3) 0%, transparent 60%);
}

.nd-cinematic-body {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 28px 52px;
}

.nd-cinematic-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .65);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 32px;
    padding-top: 32px;
    display: flex;
    width: fit-content;
    transition: color .2s;
}

.nd-cinematic-back:hover {
    color: var(--gold);
}

.nd-cinematic-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(201, 168, 76, .2);
    border: 1px solid rgba(201, 168, 76, .5);
    color: var(--gold);
    border-radius: 4px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.nd-cinematic-title {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -.01em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.nd-cinematic-meta {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .72);
    font-size: .8rem;
}

.nd-cinematic-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    border-right: 1px solid rgba(255, 255, 255, .2);
}

.nd-cinematic-meta-item:first-child {
    padding-left: 0;
}

.nd-cinematic-meta-item:last-child {
    border-right: none;
}

/* ══════════════════════════════════════════════════════
   ARTICLE LAYOUT
══════════════════════════════════════════════════════ */
.nd-layout {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px 100px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 52px;
    align-items: start;
}

.nd-article {
    min-width: 0;
    padding-top: 52px;
}

.nd-sidebar {
    position: sticky;
    top: 28px;
    padding-top: 52px;
}

/* ══════════════════════════════════════════════════════
   ARTICLE BODY
══════════════════════════════════════════════════════ */
.nd-body {
    font-size: 1.05rem;
    line-height: 1.92;
    color: var(--text);
    margin-bottom: 48px;
}

.nd-body p {
    margin: 0 0 1.5em;
}

.nd-body h2.news-h2 {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2.6em 0 .9em;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 14px;
}

.nd-body h2.news-h2::before {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
}

.nd-body blockquote.news-quote {
    border-left: 3px solid var(--gold);
    margin: 2.2em 0;
    padding: 1.2em 1.8em;
    background: rgba(201, 168, 76, .06);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 1.08rem;
    color: var(--text);
    line-height: 1.75;
    position: relative;
}

.nd-body blockquote.news-quote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--gold);
    opacity: .25;
    position: absolute;
    top: -10px;
    left: 14px;
    line-height: 1;
    font-family: Georgia, serif;
}

.nd-body hr.news-hr {
    border: none;
    margin: 2.8em 0;
    text-align: center;
}

.nd-body hr.news-hr::after {
    content: '\2726  \2726  \2726';
    color: var(--gold);
    font-size: .8rem;
    letter-spacing: .4em;
    opacity: .6;
}

.nd-body ul.news-ul {
    padding-left: 0;
    margin: .8em 0 1.5em;
    list-style: none;
}

.nd-body ul.news-ul li {
    padding: .38em 0 .38em 1.6em;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.nd-body ul.news-ul li:last-child {
    border-bottom: none;
}

.nd-body ul.news-ul li::before {
    content: '\25B8';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: .9rem;
}

.nd-body strong {
    font-weight: 700;
    color: var(--text);
}

/* ══════════════════════════════════════════════════════
   REACTIONS / ENGAGEMENT BAR
══════════════════════════════════════════════════════ */
.nd-engage {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .1);
}

.nd-engage-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: .84rem;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    transition: all .22s;
    line-height: 1;
}

.nd-engage-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .08);
}

.nd-engage-btn.liked {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .14);
}

@keyframes nd-pop {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.22);
    }

    70% {
        transform: scale(.92);
    }

    100% {
        transform: scale(1);
    }
}

.nd-engage-btn.like-pop {
    animation: nd-pop .32s ease;
}

.nd-share-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: .82rem;
    font-family: 'Lato', sans-serif;
    transition: all .2s;
}

.nd-share-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ══════════════════════════════════════════════════════
   COMMENT SECTION
══════════════════════════════════════════════════════ */
.nd-comments-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.nd-comments-title {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
}

.nd-comments-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .3);
    color: var(--gold);
    font-size: .74rem;
    font-weight: 700;
    border-radius: 20px;
    padding: 3px 12px;
}

.nd-comments-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* Compose */
.nd-compose {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.nd-compose-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201, 168, 76, .1);
    border: 2px solid rgba(201, 168, 76, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    overflow: hidden;
}

.nd-compose-box {
    flex: 1;
}

.nd-mention-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .76rem;
    color: var(--gold);
    background: rgba(201, 168, 76, .07);
    border: 1px solid rgba(201, 168, 76, .2);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    padding: 8px 14px;
}

.nd-mention-clear {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    font-size: 14px;
    margin-left: auto;
    padding: 0;
    line-height: 1;
}

.nd-compose-textarea {
    width: 100%;
    background: var(--panel);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Lato', sans-serif;
    font-size: .88rem;
    padding: 14px 16px;
    outline: none;
    resize: none;
    transition: border-color .2s, box-shadow .2s;
    min-height: 90px;
    line-height: 1.65;
    box-sizing: border-box;
}

.nd-compose-textarea.has-mention {
    border-radius: 0 0 10px 10px;
}

.nd-compose-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, .1);
}

.nd-compose-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 10px;
    gap: 8px;
}

.nd-send-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--gold);
    color: var(--deep);
    border: none;
    border-radius: 8px;
    font-size: .84rem;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    cursor: pointer;
    transition: all .2s;
}

.nd-send-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.nd-send-btn:not(:disabled):hover {
    background: var(--gold-light, #d4b060);
    transform: translateY(-1px);
}

.nd-login-hint {
    font-size: .84rem;
    color: var(--muted);
    padding: 16px 20px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: center;
    margin-bottom: 24px;
}

.nd-login-hint a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}

/* Comment list */
.nk-list {
    display: flex;
    flex-direction: column;
}

.nk-item {
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.nk-item:last-child {
    border-bottom: none;
}

.nk-item-inner {
    display: flex;
    gap: 14px;
}

.nk-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 168, 76, .1);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    overflow: hidden;
}

.nk-content {
    flex: 1;
    min-width: 0;
}

.nk-author-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    flex-wrap: wrap;
}

.nk-author {
    font-size: .86rem;
    font-weight: 700;
    color: var(--text);
}

.nk-role-badge {
    font-size: .63rem;
    padding: 2px 9px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: .06em;
}

.role-admin {
    background: rgba(201, 168, 76, .12);
    border: 1px solid rgba(201, 168, 76, .3);
    color: var(--gold);
}

.role-jemaat {
    background: var(--deep);
    border: 1px solid var(--border);
    color: var(--muted);
}

.nk-time {
    font-size: .72rem;
    color: var(--muted);
    margin-left: auto;
}

.nk-body {
    font-size: .88rem;
    color: var(--text);
    line-height: 1.72;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Mention @Nama dalam komentar / balasan berita */
.nk-mention {
    color: var(--gold);
    font-weight: 700;
    font-size: inherit;
}

.nk-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.nk-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: .78rem;
    font-weight: 500;
    color: var(--muted);
    font-family: 'Lato', sans-serif;
    padding: 0;
    transition: color .2s;
}

.nk-action-btn:hover,
.nk-action-btn.liked {
    color: var(--gold);
}

.nk-delete-btn {
    color: var(--danger, #e05) !important;
    margin-left: auto;
}

.nk-balasans {
    margin-top: 16px;
    margin-left: 54px;
    border-left: 2px solid var(--border);
    padding-left: 18px;
}

.nk-balasan-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.nk-balasan-item:last-child {
    border-bottom: none;
}

@keyframes nk-slide-in {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nk-new-item {
    animation: nk-slide-in .3s ease;
}

.nk-load-more {
    text-align: center;
    padding: 20px 0;
}

.nk-load-more-btn {
    background: var(--panel);
    border: 1.5px solid var(--border);
    color: var(--muted);
    border-radius: 8px;
    padding: 10px 28px;
    font-family: 'Lato', sans-serif;
    font-size: .84rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}

.nk-load-more-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ══════════════════════════════════════════════════════
   RELATED ARTICLES
══════════════════════════════════════════════════════ */
.nd-related {
    margin-top: 60px;
}

.nd-related-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.nd-related-title {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}

.nd-related-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.nd-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.nd-rel-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 18px 16px;
    text-decoration: none;
    display: block;
    transition: all .22s;
    position: relative;
    overflow: hidden;
}

.nd-rel-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s;
}

.nd-rel-card:hover {
    border-color: rgba(201, 168, 76, .4);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.nd-rel-card:hover::after {
    transform: scaleX(1);
}

.nd-rel-title {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: .88rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.45;
    margin-bottom: 8px;
    transition: color .2s;
}

.nd-rel-card:hover .nd-rel-title {
    color: var(--gold);
}

.nd-rel-meta {
    font-size: .73rem;
    color: var(--muted);
}

/* ══════════════════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════════════════ */
.nd-sidebar-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.nd-sidebar-card-head {
    padding: 14px 20px;
    background: rgba(201, 168, 76, .07);
    border-bottom: 1px solid var(--border);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nd-sidebar-card-body {
    padding: 18px 20px;
}

.nd-stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: .83rem;
    color: var(--muted);
}

.nd-stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nd-stat-val {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 1.05rem;
    color: var(--gold);
    font-weight: 700;
}

.nd-sb-share-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.nd-sb-share-btn {
    flex: 1;
    min-width: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 12px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: var(--muted);
    font-family: 'Lato', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}

.nd-sb-share-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .07);
}

.nd-sb-like-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
}

.nd-sb-like-big-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: transparent;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all .3s;
    line-height: 1;
}

.nd-sb-like-big-btn:hover {
    border-color: var(--gold);
    transform: scale(1.1);
}

.nd-sb-like-big-btn.liked {
    border-color: var(--gold);
    background: rgba(201, 168, 76, .12);
}

.nd-sb-like-count {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.nd-sb-like-label {
    font-size: .72rem;
    color: var(--muted);
}

.nd-sb-rel-link {
    display: block;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.nd-sb-rel-link:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nd-sb-rel-title {
    font-size: .84rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color .2s;
}

.nd-sb-rel-link:hover .nd-sb-rel-title {
    color: var(--gold);
}

.nd-sb-rel-meta {
    font-size: .71rem;
    color: var(--muted);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — DETAIL NEWS
══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .nd-layout {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 16px 80px;
    }

    .nd-sidebar {
        position: static;
        padding-top: 0;
    }

    .nd-article {
        padding-top: 36px;
    }

    .nd-cinematic {
        min-height: 400px;
    }

    .nd-cinematic-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .nd-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 580px) {
    .nd-cinematic {
        min-height: 340px;
    }

    .nd-cinematic-body {
        padding: 0 16px 40px;
    }

    .nd-cinematic-meta-item {
        padding: 0 8px;
        font-size: .74rem;
    }

    .nd-engage {
        gap: 8px;
        padding: 14px 16px;
    }

    .nd-engage-btn {
        padding: 8px 14px;
        font-size: .8rem;
    }

    .nd-layout {
        padding: 0 14px 80px;
    }
}

.np {
    --gold: #C9A84C;
    --gold-bright: #F5C842;
    --gold-dim: rgba(201, 168, 76, 0.10);
    --gold-dim2: rgba(201, 168, 76, 0.18);
    --gold-border: rgba(201, 168, 76, 0.25);
    --gold-border2: rgba(201, 168, 76, 0.45);
    --panel: var(--bg2, #0d0d0d);
    --panel2: var(--bg3, #141414);
    --border: rgba(255, 255, 255, 0.06);
    --border2: rgba(255, 255, 255, 0.035);
    --text: var(--text, #ede8e0);
    --muted: var(--text2, rgba(237, 232, 224, 0.48));
    --muted2: rgba(237, 232, 224, 0.3);
    --deep: var(--bg, #070707);
    --deep2: var(--bg4, #1a1a1a);
    --cream: #ede8e0;
}

/* ══════════════════════════════════════════════════
     PAGE WRAPPER
  ══════════════════════════════════════════════════ */
.np {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px 120px;
}

/* ══════════════════════════════════════════════════
     PAGE HEADER — liturgical style
  ══════════════════════════════════════════════════ */
.np-header {
    text-align: center;
    padding: 72px 0 60px;
    position: relative;
}

.np-header-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.np-header-ornament-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.np-header-ornament-line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.np-header-ornament-cross {
    color: var(--gold);
    font-size: 1rem;
    opacity: 0.8;
}

.np-eyebrow {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    opacity: 0.85;
}

.np-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    font-weight: 600;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.np-subtitle {
    font-size: .92rem;
    color: var(--muted);
    max-width: 440px;
    margin: 0 auto 32px;
    line-height: 1.8;
    font-weight: 300;
}

.np-header-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.np-header-rule span {
    width: 36px;
    height: 1px;
    background: var(--gold-border2);
}

.np-header-rule i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
}

/* ══════════════════════════════════════════════════
     FEATURED HERO — editorial split layout
  ══════════════════════════════════════════════════ */
.np-hero {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    min-height: 480px;
    display: grid;
    grid-template-columns: 1fr 420px;
    margin: 0 0 64px;
    border: 1px solid var(--border);
    background: var(--panel);
    transition: box-shadow .4s, transform .4s;
}

.np-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .45), 0 0 0 1px var(--gold-border);
}

.np-hero-visual {
    position: relative;
    overflow: hidden;
    background: var(--deep2);
    min-height: 380px;
}

.np-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.np-hero:hover .np-hero-img {
    transform: scale(1.04);
}

.np-hero-emoji {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    opacity: .08;
}

.np-hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 60%, var(--panel) 100%);
    pointer-events: none;
}

.np-hero-body {
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.np-hero-body::before {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold-border2), transparent);
}

.np-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gold);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.np-hero-tag::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.np-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 18px;
    color: var(--cream);
}

.np-hero-title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.np-hero-title a:hover {
    color: var(--gold);
}

.np-hero-excerpt {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 28px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.np-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: .76rem;
    color: var(--muted2);
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.np-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.np-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gold);
    padding: 12px 28px;
    border-radius: 2px;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .08em;
    text-decoration: none;
    border: 1px solid var(--gold-border2);
    transition: all .25s;
    align-self: flex-start;
    text-transform: uppercase;
}

.np-hero-btn:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: translateX(4px);
}

.np-hero-btn svg {
    transition: transform .2s;
}

.np-hero-btn:hover svg {
    transform: translateX(3px);
}

@media (max-width: 820px) {
    .np-hero {
        grid-template-columns: 1fr;
        grid-template-rows: 260px auto;
    }

    .np-hero-visual::after {
        background: linear-gradient(to bottom, transparent 50%, var(--panel) 100%);
    }

    .np-hero-body::before {
        display: none;
    }

    .np-hero-body {
        padding: 32px 28px 36px;
    }
}

/* ══════════════════════════════════════════════════
     TOOLBAR — refined bar
  ══════════════════════════════════════════════════ */
.np-toolbar {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.np-filters {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.np-filters::-webkit-scrollbar {
    display: none;
}

.np-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 20px;
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .06em;
    border: none;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
    position: relative;
    text-transform: uppercase;
}

.np-pill-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .2s;
}

.np-pill-btn:hover {
    color: var(--cream);
    background: var(--gold-dim);
}

.np-pill-btn.active {
    color: var(--gold);
    background: var(--gold-dim2);
}

.np-pill-btn.active::after {
    transform: scaleX(1);
}

.np-search-wrap {
    border-left: 1px solid var(--border);
    flex-shrink: 0;
}

.np-search {
    position: relative;
    display: flex;
    align-items: center;
}

.np-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    pointer-events: none;
    width: 14px;
    height: 14px;
}

.np-search-spinner {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    border: 1.5px solid var(--gold-dim2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: np-spin .7s linear infinite;
    display: none;
}

.np-search-spinner.visible {
    display: block;
}

@keyframes np-spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

#np-search-input {
    background: transparent;
    border: none;
    color: var(--cream);
    padding: 14px 44px 14px 44px;
    font-size: .84rem;
    width: 230px;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    transition: background .2s;
}

#np-search-input:focus {
    background: var(--gold-dim);
}

#np-search-input::placeholder {
    color: var(--muted);
}

@media (max-width: 700px) {
    .np-toolbar {
        flex-direction: column;
        border-radius: 4px;
    }

    .np-search-wrap {
        border-left: none;
        border-top: 1px solid var(--border);
        width: 100%;
    }

    #np-search-input {
        width: 100%;
    }

    .np-search {
        width: 100%;
    }
}

/* ══════════════════════════════════════════════════
     SECTION LABEL
  ══════════════════════════════════════════════════ */
.np-section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.np-section-label-text {
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

.np-section-label-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.np-section-label-count {
    font-size: .7rem;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
    opacity: 0.8;
}

/* ══════════════════════════════════════════════════
     NEWS GRID — magazine tiled layout
  ══════════════════════════════════════════════════ */
.np-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-bottom: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

@media (max-width: 960px) {
    .np-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .np-grid {
        grid-template-columns: 1fr;
    }

    .np {
        padding: 0 16px 80px;
    }
}

/* ══════════════════════════════════════════════════
     NEWS CARD
  ══════════════════════════════════════════════════ */
.np-card {
    background: var(--panel);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background .25s;
}

.np-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-dim);
    opacity: 0;
    transition: opacity .25s;
    pointer-events: none;
    z-index: 0;
}

.np-card:hover {
    background: var(--panel2);
}

.np-card:hover::before {
    opacity: 1;
}

.np-card-thumb {
    height: 196px;
    overflow: hidden;
    position: relative;
    background: var(--deep2);
    flex-shrink: 0;
}

.np-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.np-card:hover .np-card-thumb img {
    transform: scale(1.06);
}

.np-card-emoji {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    opacity: .2;
}

.np-card-kat {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(7, 7, 7, 0.72);
    backdrop-filter: blur(8px);
    color: var(--gold);
    padding: 4px 11px;
    border-radius: 2px;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 1px solid var(--gold-border);
}

.np-card-readtime {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(7, 7, 7, 0.65);
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, .65);
    padding: 3px 9px;
    border-radius: 2px;
    font-size: .62rem;
    font-weight: 600;
}

.np-card-body {
    padding: 22px 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.np-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.38;
    color: var(--cream);
}

.np-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.np-card-title a:hover {
    color: var(--gold);
}

.np-card-excerpt {
    font-size: .81rem;
    color: var(--muted);
    line-height: 1.72;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.np-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border2);
    font-size: .73rem;
    color: var(--muted2);
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.np-card-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.np-card-stats {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* LIKE BUTTON */
.nc-like-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: .73rem;
    color: var(--muted2);
    font-family: 'DM Sans', sans-serif;
    transition: color .2s;
    line-height: 1;
}

.nc-like-btn:hover {
    color: var(--gold);
}

.nc-like-btn.nc-liked {
    color: var(--gold);
}

.nc-like-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}

@keyframes nc-pop {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.5);
    }

    70% {
        transform: scale(.88);
    }

    100% {
        transform: scale(1);
    }
}

.nc-like-btn.nc-pop {
    animation: nc-pop .32s ease;
}

.np-card-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: gap .2s, color .2s;
    margin-top: 2px;
    align-self: flex-start;
}

.np-card-read:hover {
    gap: 10px;
    color: var(--gold-bright);
}

/* ══════════════════════════════════════════════════
     EMPTY STATE
  ══════════════════════════════════════════════════ */
.np-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 24px;
    background: var(--panel);
}

.np-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: .3;
}

.np-empty-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 8px;
}

.np-empty-text {
    color: var(--muted);
    font-size: .86rem;
}

/* ══════════════════════════════════════════════════
     SKELETON LOADER
  ══════════════════════════════════════════════════ */
@keyframes np-shimmer {
    0% {
        background-position: -600px 0;
    }

    100% {
        background-position: 600px 0;
    }
}

.np-skeleton {
    background: var(--panel);
    display: flex;
    flex-direction: column;
}

.np-skel-thumb {
    height: 196px;
    background: linear-gradient(90deg, var(--panel2) 25%, var(--deep2) 50%, var(--panel2) 75%);
    background-size: 600px 100%;
    animation: np-shimmer 1.5s infinite linear;
}

.np-skel-body {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.np-skel-line {
    border-radius: 2px;
    background: linear-gradient(90deg, var(--panel2) 25%, var(--deep2) 50%, var(--panel2) 75%);
    background-size: 600px 100%;
    animation: np-shimmer 1.5s infinite linear;
}

.np-skel-line.w-full {
    height: 13px;
    width: 100%;
}

.np-skel-line.w-3-4 {
    height: 13px;
    width: 75%;
}

.np-skel-line.w-1-2 {
    height: 11px;
    width: 50%;
}

.np-skel-line.w-sm {
    height: 10px;
    width: 32%;
}

/* ══════════════════════════════════════════════════
     PAGINATION
  ══════════════════════════════════════════════════ */
.np-pagination {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* ══════════════════════════════════════════════════
     REVEAL ANIMATION
  ══════════════════════════════════════════════════ */
@keyframes np-fade-up {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.np-reveal {
    animation: np-fade-up .55s cubic-bezier(.22, 1, .36, 1) both;
}

.np-card {
    animation: np-fade-up .45s cubic-bezier(.22, 1, .36, 1) both;
}

.np-card:nth-child(1) {
    animation-delay: .04s;
}

.np-card:nth-child(2) {
    animation-delay: .09s;
}

.np-card:nth-child(3) {
    animation-delay: .14s;
}

.np-card:nth-child(4) {
    animation-delay: .19s;
}

.np-card:nth-child(5) {
    animation-delay: .24s;
}

.np-card:nth-child(6) {
    animation-delay: .29s;
}

/* ══════════════════════════════════════════════════
     LIVE SEARCH HIGHLIGHT
  ══════════════════════════════════════════════════ */
mark.np-hl {
    background: rgba(201, 168, 76, .18);
    color: var(--gold-bright);
    border-radius: 1px;
    padding: 0 1px;
}

.np-grid-outer {
    margin-bottom: 0;
}

.lihats {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ── Hero ──────────────────────────────────────────── */
.galeri-hero {
    position: relative;
    padding: 100px 24px 64px;
    text-align: center;
    overflow: hidden;
}

.galeri-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245, 200, 66, .08) 0%, transparent 70%);
    pointer-events: none;
}

.galeri-hero-label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-border);
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.galeri-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 16px;
}

.galeri-hero-desc {
    font-size: .95rem;
    color: var(--text2);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Filter Pills ──────────────────────────────────── */
.galeri-filter-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
    position: sticky;
    top: 65px;
    z-index: 40;
}

.galeri-filter-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.galeri-filter-pills {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
}

.galeri-filter-pills::-webkit-scrollbar {
    display: none;
}

.galeri-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    white-space: nowrap;
    color: var(--text2);
    border: 1px solid var(--border);
    background: var(--bg3);
    text-decoration: none;
    transition: all .2s;
    flex-shrink: 0;
}

.galeri-pill:hover {
    border-color: var(--gold-border);
    color: var(--gold);
    background: var(--gold-dim);
}

.galeri-pill.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.galeri-pill-count {
    font-size: .7rem;
    opacity: .7;
}

.galeri-pill.active .galeri-pill-count {
    opacity: .6;
}

/* ── Section & Container ───────────────────────────── */
.galeri-section {
    padding: 48px 24px 80px;
}

.galeri-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* ── Album header ──────────────────────────────────── */
.galeri-album-header {
    margin-bottom: 32px;
}

.galeri-album-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.galeri-album-desc {
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.7;
}

/* ── Grid ──────────────────────────────────────────── */
.galeri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 1024px) {
    .galeri-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .galeri-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 380px) {
    .galeri-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Item ──────────────────────────────────────────── */
.galeri-item {
    display: flex;
    flex-direction: column;
    animation: galeri-fade-up .45s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes galeri-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.galeri-item:nth-child(1) {
    animation-delay: .03s;
}

.galeri-item:nth-child(2) {
    animation-delay: .07s;
}

.galeri-item:nth-child(3) {
    animation-delay: .11s;
}

.galeri-item:nth-child(4) {
    animation-delay: .15s;
}

.galeri-item:nth-child(5) {
    animation-delay: .19s;
}

.galeri-item:nth-child(6) {
    animation-delay: .23s;
}

.galeri-item:nth-child(7) {
    animation-delay: .27s;
}

.galeri-item:nth-child(8) {
    animation-delay: .31s;
}

/* ── Thumbnail ─────────────────────────────────────── */
.galeri-thumb {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    background: var(--bg3);
    border: 1px solid var(--border);
}

.galeri-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.galeri-thumb:hover img {
    transform: scale(1.07);
}

.galeri-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s;
}

.galeri-thumb:hover .galeri-overlay {
    opacity: 1;
}

.galeri-zoom-icon {
    font-size: 1.8rem;
}

.galeri-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(6px);
    color: var(--gold);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    border: 1px solid var(--gold-border);
}

/* ── Caption ───────────────────────────────────────── */
.galeri-caption {
    padding: 10px 4px 4px;
}

.galeri-caption-title {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 3px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.galeri-caption-text {
    font-size: .73rem;
    color: var(--text3);
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ── Empty State ───────────────────────────────────── */
.galeri-empty {
    text-align: center;
    padding: 80px 24px;
}

.galeri-empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: .3;
}

.galeri-empty-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.galeri-empty-text {
    font-size: .86rem;
    color: var(--text2);
}

/* ── Lightbox ──────────────────────────────────────── */
.glb-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
}

.glb-backdrop.open {
    display: flex;
}

.glb-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: min(900px, 94vw);
    width: 100%;
    padding: 0 16px;
}

.glb-img {
    max-height: 72vh;
    max-width: 100%;
    object-fit: contain;
    border-radius: 4px;
    transition: opacity .25s ease;
    border: 1px solid var(--border);
}

.glb-info {
    text-align: center;
    margin-top: 16px;
    padding: 0 8px;
}

.glb-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.glb-desc {
    font-size: .82rem;
    color: var(--text2);
    line-height: 1.6;
}

.glb-counter {
    font-size: .72rem;
    color: var(--text3);
    margin-top: 6px;
    letter-spacing: .1em;
}

.glb-close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    z-index: 1;
}

.glb-close:hover {
    background: var(--bg4);
    border-color: var(--gold-border);
    color: var(--gold);
}

.glb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 4px;
    width: 42px;
    height: 64px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    z-index: 1;
}

.glb-prev {
    left: 16px;
}

.glb-next {
    right: 16px;
}

.glb-nav:hover {
    background: var(--bg4);
    border-color: var(--gold-border);
    color: var(--gold);
}

@media (max-width: 480px) {
    .glb-nav {
        display: none;
    }
}

/* ══════════════════════════════════════════════════
   NP-PAGINATION  —  Custom pagination untuk halaman News
   Tambahkan CSS ini ke style.css (ganti blok .np-pagination yang lama)
   ══════════════════════════════════════════════════ */

/* ── Container utama ─────────────────────────────── */
.np-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 56px;
    padding: 32px 0 16px;
    position: relative;
}

/* Garis dekoratif atas */
.np-pagination::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

/* ── Info teks ───────────────────────────────────── */
.np-pag-info {
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--text3, #7a6a55);
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
}

.np-pag-info strong {
    color: var(--gold);
    font-weight: 600;
}

/* ── Baris kontrol (prev · pages · next) ─────────── */
.np-pag-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── Tombol Prev / Next ──────────────────────────── */
.np-pag-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 40px;
    border: 1px solid var(--gold-border);
    background: transparent;
    color: var(--text2, #4a3f30);
    font-size: 12.5px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.18s, box-shadow 0.22s;
    user-select: none;
}

.np-pag-btn:hover:not(.disabled) {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(245, 200, 66, 0.12);
}

.np-pag-btn:active:not(.disabled) {
    transform: translateY(0);
}

.np-pag-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Animasi icon panah saat hover */
.np-pag-prev:hover svg {
    transform: translateX(-2px);
}

.np-pag-next:hover svg {
    transform: translateX(2px);
}

.np-pag-prev svg,
.np-pag-next svg {
    transition: transform 0.18s ease;
    flex-shrink: 0;
}

/* ── Wrapper halaman angka ───────────────────────── */
.np-pag-pages {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 4px;
}

/* ── Nomor halaman ───────────────────────────────── */
.np-pag-page {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text2, #4a3f30);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.18s, box-shadow 0.2s;
    user-select: none;
}

.np-pag-page-inner {
    position: relative;
    z-index: 1;
    line-height: 1;
}

.np-pag-page:hover:not(.active) {
    background: var(--gold-dim);
    border-color: var(--gold-border);
    color: var(--gold);
    transform: translateY(-1px);
}

/* Halaman aktif — gold ring + glow */
.np-pag-page.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    font-weight: 700;
    cursor: default;
    pointer-events: none;
    box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.20), 0 4px 14px rgba(245, 200, 66, 0.25);
    animation: np-pag-pop 0.3s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes np-pag-pop {
    from {
        transform: scale(0.85);
        opacity: 0.6;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ── Ellipsis (titik-titik) ──────────────────────── */
.np-pag-ellipsis {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 0 4px;
    height: 36px;
}

.np-pag-ellipsis span {
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold-border);
    animation: np-ellipsis-pulse 1.4s ease-in-out infinite;
}

.np-pag-ellipsis span:nth-child(2) {
    animation-delay: 0.2s;
}

.np-pag-ellipsis span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes np-ellipsis-pulse {

    0%,
    100% {
        opacity: 0.35;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.35);
    }
}

/* ── Progress bar bawah ──────────────────────────── */
.np-pag-progress-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 320px;
}

.np-pag-progress-track {
    width: 100%;
    height: 2px;
    background: var(--bg3, #171717);
    border-radius: 99px;
    overflow: hidden;
}

.np-pag-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #c9a200, #f5c842, #c9a200);
    background-size: 200% 100%;
    border-radius: 99px;
    transition: width 0.5s cubic-bezier(.22, 1, .36, 1);
    animation: np-progress-shimmer 2.5s linear infinite;
}

@keyframes np-progress-shimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

.np-pag-progress-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text3, #7a6a55);
    font-family: 'DM Sans', sans-serif;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 480px) {
    .np-pag-controls {
        gap: 4px;
    }

    .np-pag-btn span {
        display: none;
        /* Sembunyikan teks Prev/Next, tampilkan hanya ikon */
    }

    .np-pag-btn {
        padding: 8px 10px;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        justify-content: center;
    }

    .np-pag-page {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .np-pag-info {
        font-size: 11px;
        text-align: center;
    }

    .np-pag-progress-wrap {
        max-width: 240px;
    }
}

/* ══════════════════════════════════════════════════
   GALERI-PAGINATION  —  Sama persis dengan np-pagination
   Tambahkan CSS ini ke style.css, setelah blok .galeri-empty
   ══════════════════════════════════════════════════ */

.galeri-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 56px;
    padding: 32px 0 16px;
    position: relative;
}

.galeri-pagination::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

/* ── Info teks ── */
.galeri-pag-info {
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--text3, #7a6a55);
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
}

.galeri-pag-info strong {
    color: var(--gold);
    font-weight: 600;
}

/* ── Baris kontrol ── */
.galeri-pag-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── Tombol Prev / Next ── */
.galeri-pag-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 40px;
    border: 1px solid var(--gold-border);
    background: transparent;
    color: var(--text2, #4a3f30);
    font-size: 12.5px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.18s, box-shadow 0.22s;
    user-select: none;
}

.galeri-pag-btn:hover:not(.disabled) {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(245, 200, 66, 0.12);
}

.galeri-pag-btn:active:not(.disabled) {
    transform: translateY(0);
}

.galeri-pag-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.galeri-pag-prev:hover svg {
    transform: translateX(-2px);
}

.galeri-pag-next:hover svg {
    transform: translateX(2px);
}

.galeri-pag-prev svg,
.galeri-pag-next svg {
    transition: transform 0.18s ease;
    flex-shrink: 0;
}

/* ── Wrapper halaman angka ── */
.galeri-pag-pages {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 4px;
}

/* ── Nomor halaman ── */
.galeri-pag-page {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text2, #4a3f30);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.18s, box-shadow 0.2s;
    user-select: none;
}

.galeri-pag-page-inner {
    position: relative;
    z-index: 1;
    line-height: 1;
}

.galeri-pag-page:hover:not(.active) {
    background: var(--gold-dim);
    border-color: var(--gold-border);
    color: var(--gold);
    transform: translateY(-1px);
}

.galeri-pag-page.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    font-weight: 700;
    cursor: default;
    pointer-events: none;
    box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.20), 0 4px 14px rgba(245, 200, 66, 0.25);
    animation: galeri-pag-pop 0.3s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes galeri-pag-pop {
    from {
        transform: scale(0.85);
        opacity: 0.6;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ── Ellipsis ── */
.galeri-pag-ellipsis {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 0 4px;
    height: 36px;
}

.galeri-pag-ellipsis span {
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold-border);
    animation: galeri-ellipsis-pulse 1.4s ease-in-out infinite;
}

.galeri-pag-ellipsis span:nth-child(2) {
    animation-delay: 0.2s;
}

.galeri-pag-ellipsis span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes galeri-ellipsis-pulse {

    0%,
    100% {
        opacity: 0.35;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.35);
    }
}

/* ── Progress bar ── */
.galeri-pag-progress-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 320px;
}

.galeri-pag-progress-track {
    width: 100%;
    height: 2px;
    background: var(--bg3, #171717);
    border-radius: 99px;
    overflow: hidden;
}

.galeri-pag-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #c9a200, #f5c842, #c9a200);
    background-size: 200% 100%;
    border-radius: 99px;
    transition: width 0.5s cubic-bezier(.22, 1, .36, 1);
    animation: galeri-progress-shimmer 2.5s linear infinite;
}

@keyframes galeri-progress-shimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

.galeri-pag-progress-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text3, #7a6a55);
    font-family: 'DM Sans', sans-serif;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .galeri-pag-controls {
        gap: 4px;
    }

    .galeri-pag-btn span {
        display: none;
    }

    .galeri-pag-btn {
        padding: 8px 10px;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        justify-content: center;
    }

    .galeri-pag-page {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .galeri-pag-info {
        font-size: 11px;
        text-align: center;
    }

    .galeri-pag-progress-wrap {
        max-width: 240px;
    }
}

/* ══════════════════════════════════════════════════════════════
   TAB ULANG TAHUN — GBI Slawi
   Tambahkan CSS ini ke bagian bawah style.css
   ══════════════════════════════════════════════════════════════ */

/* ── Wrapper utama ─────────────────────────────────────────── */
.kom-ultah-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ══ HERO HEADER ══════════════════════════════════════════════ */
.ultah-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #0e0a02 0%, #1a1200 50%, #0e0a02 100%);
    border: 1px solid var(--gold-border);
    padding: 40px 32px 36px;
    margin-bottom: 28px;
    text-align: center;
}

.ultah-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ultah-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.18;
}

.ultah-orb-1 {
    width: 280px;
    height: 280px;
    background: var(--gold);
    top: -80px;
    left: -60px;
    animation: ultahOrbFloat 7s ease-in-out infinite;
}

.ultah-orb-2 {
    width: 200px;
    height: 200px;
    background: #f5a042;
    bottom: -60px;
    right: -40px;
    animation: ultahOrbFloat 9s ease-in-out infinite reverse;
}

.ultah-orb-3 {
    width: 150px;
    height: 150px;
    background: var(--gold);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation: ultahOrbFloat 11s ease-in-out infinite;
}

@keyframes ultahOrbFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-12px) scale(1.05);
    }
}

.ultah-hero-content {
    position: relative;
    z-index: 1;
}

.ultah-hero-icon {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 12px;
    display: block;
    animation: ultahIconBounce 2.5s ease-in-out infinite;
}

@keyframes ultahIconBounce {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-6px) rotate(5deg);
    }
}

.ultah-hero-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(245, 200, 66, 0.35);
}

.ultah-hero-sub {
    font-size: 14px;
    color: rgba(240, 240, 240, 0.55);
    margin-bottom: 28px;
    font-family: 'DM Sans', sans-serif;
}

/* ── Stats row di hero ── */
.ultah-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(245, 200, 66, 0.06);
    border: 1px solid rgba(245, 200, 66, 0.18);
    border-radius: 50px;
    padding: 12px 28px;
    gap: 20px;
}

.ultah-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.ultah-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.ultah-stat-label {
    font-size: 10px;
    color: rgba(240, 240, 240, 0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
}

.ultah-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(245, 200, 66, 0.18);
}

/* ══ TOOLBAR ══════════════════════════════════════════════════ */
.ultah-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* ── Search ── */
.ultah-search-wrap {
    flex: 1;
    min-width: 200px;
    position: relative;
    display: flex;
    align-items: center;
}

.ultah-search-icon {
    position: absolute;
    left: 14px;
    color: var(--text3);
    display: flex;
    pointer-events: none;
}

.ultah-search-input {
    width: 100%;
    padding: 10px 40px 10px 42px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text);
    font-size: 13.5px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ultah-search-input:focus {
    border-color: var(--gold-border);
    box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.08);
}

.ultah-search-input::placeholder {
    color: var(--text3);
}

.ultah-search-clear {
    position: absolute;
    right: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: none;
    background: var(--bg4);
    color: var(--text2);
    font-size: 11px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.ultah-search-clear:hover {
    background: var(--gold-dim);
    color: var(--gold);
}

/* ── Mode toggle ── */
.ultah-mode-toggle {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg3);
    flex-shrink: 0;
}

.ultah-mode-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border: none;
    background: transparent;
    color: var(--text2);
    font-size: 12.5px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.ultah-mode-btn.active {
    background: var(--gold);
    color: #000;
    font-weight: 600;
}

.ultah-mode-btn:not(.active):hover {
    background: var(--bg4);
    color: var(--text);
}

/* ══ CONTROLS: Navigasi bulan + tab minggu ════════════════════ */
.ultah-controls-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.ultah-month-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.ultah-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.ultah-nav-btn:hover {
    border-color: var(--gold-border);
    background: var(--gold-dim);
    color: var(--gold);
}

.ultah-month-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.03em;
    min-width: 160px;
    text-align: center;
}

/* ── Tab minggu ── */
.ultah-week-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.ultah-week-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 18px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 12.5px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.22s;
    position: relative;
    min-width: 80px;
}

.ultah-week-tab:hover {
    border-color: var(--gold-border);
    color: var(--gold);
}

.ultah-week-tab.active {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold);
    font-weight: 600;
}

.ultah-week-sub {
    font-size: 10px;
    opacity: 0.6;
    letter-spacing: 0.02em;
}

.ultah-week-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 99px;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
}

/* ══ CONTEXT LABEL ════════════════════════════════════════════ */
.ultah-context-label {
    font-size: 12px;
    color: var(--text3);
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
    min-height: 18px;
}

.ultah-context-label strong {
    color: var(--gold);
    font-weight: 600;
}

/* ══ LOADING SKELETON ═════════════════════════════════════════ */
.ultah-loading {
    display: block;
}

.ultah-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}

.ultah-skeleton-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ultah-skeleton-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg4);
    animation: ultahSkeletonPulse 1.5s ease-in-out infinite;
}

.ultah-skeleton-line {
    height: 12px;
    border-radius: 99px;
    background: var(--bg4);
    animation: ultahSkeletonPulse 1.5s ease-in-out infinite;
}

.ultah-skeleton-line.long {
    width: 80%;
    animation-delay: 0.1s;
}

.ultah-skeleton-line.short {
    width: 50%;
    animation-delay: 0.2s;
}

@keyframes ultahSkeletonPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ══ GRID KARTU ══════════════════════════════════════════════ */
.kom-ultah-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}

/* ── Kartu individu ── */
.kom-ultah-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px 20px;
    border-radius: 18px;
    background: var(--bg3);
    border: 1px solid var(--border);
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
    animation: ultahCardIn 0.35s cubic-bezier(.22, 1, .36, 1) both;
    overflow: hidden;
    gap: 10px;
}

@keyframes ultahCardIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.kom-ultah-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--gold-border);
    border-color: var(--gold-border);
}

/* ── Kartu hari ini (highlight) ── */
.kom-ultah-item.today-bday {
    background: linear-gradient(160deg, #1a1200 0%, #110d00 100%);
    border-color: rgba(245, 200, 66, 0.4);
    box-shadow: 0 0 28px rgba(245, 200, 66, 0.10), inset 0 0 0 1px rgba(245, 200, 66, 0.08);
}

.kom-ultah-item.today-bday::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Today badge ── */
.ultah-today-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10px;
    font-weight: 700;
    color: #000;
    background: var(--gold);
    border-radius: 99px;
    padding: 3px 8px;
    letter-spacing: 0.03em;
    font-family: 'DM Sans', sans-serif;
    animation: ultahBadgePulse 1.8s ease-in-out infinite;
}

@keyframes ultahBadgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 200, 66, 0.5);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(245, 200, 66, 0);
    }
}

/* ── Badge sumber (akun/manual) ── */
.ultah-sumber-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 9px;
    font-weight: 600;
    border-radius: 99px;
    padding: 2px 7px;
    letter-spacing: 0.05em;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
}

.ultah-sumber-badge.akun {
    background: rgba(66, 153, 225, 0.15);
    color: #63b3ed;
    border: 1px solid rgba(66, 153, 225, 0.25);
}

.ultah-sumber-badge.manual {
    background: rgba(72, 187, 120, 0.12);
    color: #68d391;
    border: 1px solid rgba(72, 187, 120, 0.22);
}

/* ── Avatar ── */
.kom-ultah-avatar {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-bottom: 2px;
}

.ultah-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    transition: border-color 0.2s;
}

.kom-ultah-item:hover .ultah-avatar-img {
    border-color: var(--gold-border);
}

/* ── Fallback inisial ── */
.ultah-avatar-fallback {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.ultah-avatar-fallback.male {
    background: linear-gradient(135deg, #1a2a4a, #263b5e);
    color: #90cdf4;
    border-color: rgba(144, 205, 244, 0.2);
}

.ultah-avatar-fallback.female {
    background: linear-gradient(135deg, #4a1a2a, #6b2840);
    color: #fbb6ce;
    border-color: rgba(251, 182, 206, 0.2);
}

.kom-ultah-item:hover .ultah-avatar-fallback {
    border-color: var(--gold-border);
}

/* ── Ring hari ini ── */
.ultah-avatar-today-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    animation: ultahRingPulse 1.8s ease-in-out infinite;
}

.ultah-avatar-today-ring::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(245, 200, 66, 0.3);
    animation: ultahRingPulse 1.8s ease-in-out infinite 0.4s;
}

@keyframes ultahRingPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.06);
        opacity: 0.7;
    }
}

/* ── Nama & tanggal ── */
.kom-ultah-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    word-break: break-word;
}

.kom-ultah-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text3);
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.04em;
    background: var(--bg4);
    border-radius: 99px;
    padding: 3px 10px;
}

.kom-ultah-date::before {
    content: '🗓';
    font-size: 10px;
}

.today-bday .kom-ultah-date {
    background: rgba(245, 200, 66, 0.1);
    color: var(--gold);
}

/* ── Tombol doakan ── */
.ultah-card-action {
    width: 100%;
    padding: 7px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text2);
    font-size: 11.5px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 4px;
}

.ultah-card-action:hover {
    background: var(--gold-dim);
    border-color: var(--gold-border);
    color: var(--gold);
}

.today-bday .ultah-card-action {
    border-color: rgba(245, 200, 66, 0.3);
    color: var(--gold);
}

.today-bday .ultah-card-action:hover {
    background: rgba(245, 200, 66, 0.15);
}

/* ══ EMPTY STATE ══════════════════════════════════════════════ */
.ultah-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 56px 24px;
    color: var(--text3);
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
}

.ultah-empty-icon {
    font-size: 40px;
    opacity: 0.5;
}

/* ══ RESPONSIVE ══════════════════════════════════════════════ */
@media (max-width: 600px) {
    .ultah-hero {
        padding: 28px 20px 24px;
    }

    .ultah-hero-title {
        font-size: 22px;
    }

    .ultah-hero-icon {
        font-size: 36px;
    }

    .ultah-hero-stats {
        padding: 10px 20px;
        gap: 14px;
    }

    .ultah-stat-num {
        font-size: 18px;
    }

    .ultah-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .ultah-mode-toggle {
        justify-content: center;
    }

    .ultah-mode-btn {
        flex: 1;
        justify-content: center;
    }

    .kom-ultah-grid,
    .ultah-skeleton-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .kom-ultah-avatar {
        width: 60px;
        height: 60px;
    }

    .ultah-avatar-fallback {
        font-size: 18px;
    }

    .ultah-week-tab {
        padding: 7px 12px;
        min-width: 70px;
        font-size: 11.5px;
    }
}

@media (max-width: 380px) {

    .kom-ultah-grid,
    .ultah-skeleton-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.peng-tab-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.peng-tab-eyebrow {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.peng-tab-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--gold);
    opacity: .5;
}

.peng-tab-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.025em;
    line-height: 1.1;
    margin: 0;
}

.peng-tab-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    align-self: flex-end;
}

/* ── Filter toggle ── */
.peng-filter-toggle {
    display: flex;
    align-items: center;
    gap: 3px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 3px;
}

.peng-filter-btn {
    padding: 6px 14px;
    border-radius: 7px;
    border: 1px solid transparent;
    background: none;
    color: var(--text3);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
    white-space: nowrap;
}

.peng-filter-btn.active {
    background: var(--bg4);
    color: var(--text);
    border-color: var(--border);
}

.peng-filter-btn:hover:not(.active) {
    color: var(--text2);
}

/* ── Count pill ── */
.peng-count-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 99px;
    background: var(--bg3);
    border: 1px solid var(--border);
    font-size: 11.5px;
    color: var(--text3);
    letter-spacing: .04em;
    white-space: nowrap;
}

.peng-count-pill span {
    color: var(--text2);
    font-weight: 600;
}

/* ════════════════════════════════════════════
   FEATURED CARD
════════════════════════════════════════════ */
.peng-featured-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 14px;
    background: var(--bg3);
    cursor: pointer;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    animation: pengFeatIn .4s cubic-bezier(.22, 1, .36, 1) both;
}

.peng-featured-card:hover {
    border-color: rgba(245, 200, 66, .35);
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45), 0 0 0 1px rgba(245, 200, 66, .1);
}

@keyframes pengFeatIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Hero image area ── */
.peng-feat-hero {
    width: 100%;
    height: 190px;
    background: linear-gradient(135deg, #1a1200 0%, #120e00 40%, #0d0a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.peng-feat-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.peng-featured-card:hover .peng-feat-hero-img {
    transform: scale(1.03);
}

.peng-feat-hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 60% 40%, rgba(245, 200, 66, .13) 0%, transparent 70%);
    pointer-events: none;
}

.peng-feat-hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to top, var(--bg3), transparent);
    pointer-events: none;
}

/* ── "Terbaru" floating badge ── */
.peng-feat-badge-live {
    position: absolute;
    top: 14px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px 5px 9px;
    border-radius: 99px;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 200, 66, .3);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
}

.peng-feat-badge-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pengDotBlink 1.8s ease-in-out infinite;
}

@keyframes pengDotBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

/* ── Content area ── */
.peng-feat-content {
    padding: 20px 22px 20px;
}

.peng-feat-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.peng-feat-date {
    font-size: 11.5px;
    color: var(--text3);
    font-family: 'DM Sans', sans-serif;
}

.peng-feat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    letter-spacing: -.015em;
    margin-bottom: 8px;
}

.peng-feat-excerpt {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.peng-feat-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.peng-feat-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.peng-feat-author-dot {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.peng-feat-author-label {
    font-size: 10px;
    color: var(--text3);
    letter-spacing: .05em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}

.peng-feat-author-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text2);
    line-height: 1;
}

.peng-feat-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 99px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s, box-shadow .2s;
    flex-shrink: 0;
}

.peng-feat-cta:hover {
    background: rgba(245, 200, 66, .22);
    box-shadow: 0 4px 18px rgba(245, 200, 66, .15);
}

.peng-feat-arrow {
    display: inline-block;
    transition: transform .2s;
    font-style: normal;
}

.peng-featured-card:hover .peng-feat-arrow {
    transform: translateX(3px);
}

/* ════════════════════════════════════════════
   SECTION DIVIDER
════════════════════════════════════════════ */
.peng-section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.peng-divider-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.peng-divider-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text3);
    white-space: nowrap;
}

/* ════════════════════════════════════════════
   LIST CARDS
════════════════════════════════════════════ */
.kom-pengumuman-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* handled internally */
}

/* kartu non-featured */
.peng-list-card {
    display: flex;
    align-items: flex-start;
    gap: 0;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 8px;
    transition: border-color .22s, background .22s, box-shadow .22s, transform .22s;
    animation: pengCardIn .38s cubic-bezier(.22, 1, .36, 1) both;
}

.peng-list-card:hover {
    border-color: rgba(245, 200, 66, .28);
    background: var(--bg4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .28);
    transform: translateX(4px);
}

@keyframes pengCardIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accent strip kiri */
.peng-list-strip {
    width: 3px;
    flex-shrink: 0;
    align-self: stretch;
    background: var(--border);
    transition: background .22s;
    border-radius: 99px 0 0 99px;
}

.peng-list-card:hover .peng-list-strip {
    background: var(--gold);
}

.peng-list-body {
    flex: 1;
    min-width: 0;
    padding: 16px 18px 16px 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.peng-list-text {
    flex: 1;
    min-width: 0;
}

.peng-list-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    flex-wrap: wrap;
}

.peng-list-date {
    font-size: 11px;
    color: var(--text3);
    font-family: 'DM Sans', sans-serif;
}

.peng-list-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.peng-list-excerpt {
    font-size: 12.5px;
    color: var(--text3);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Thumbnail opsional */
.peng-list-thumb {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--border);
    background: var(--bg4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text3);
    transition: border-color .22s;
}

.peng-list-card:hover .peng-list-thumb {
    border-color: var(--gold-border);
}

/* ════════════════════════════════════════════
   BADGE GLOBAL
════════════════════════════════════════════ */
.kom-pengumuman-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    background: var(--gold-dim);
    color: var(--gold);
    border: 1px solid var(--gold-border);
    line-height: 1;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
}

/* ════════════════════════════════════════════
   SKELETON LOADER
════════════════════════════════════════════ */
.peng-state-wrap {
    padding: 2px 0;
}

.peng-skeleton-featured {
    width: 100%;
    height: 280px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--bg3) 25%, var(--bg4) 50%, var(--bg3) 75%);
    background-size: 200% 100%;
    animation: pengSkelShimmer 1.5s infinite;
    margin-bottom: 14px;
}

.peng-skeleton-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.peng-skeleton-item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    height: 100px;
}

.peng-skeleton-strip {
    width: 3px;
    align-self: stretch;
    background: var(--border);
    flex-shrink: 0;
}

.peng-skeleton-body {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.peng-skeleton-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.peng-skel {
    border-radius: 6px;
    background: linear-gradient(90deg, var(--bg4) 25%, rgba(255, 255, 255, .05) 50%, var(--bg4) 75%);
    background-size: 200% 100%;
    animation: pengSkelShimmer 1.5s infinite;
}

.peng-skel-badge {
    width: 64px;
    height: 18px;
    border-radius: 99px;
}

.peng-skel-date {
    width: 80px;
    height: 12px;
}

.peng-skel-title {
    width: 75%;
    height: 14px;
}

.peng-skel-short {
    width: 50%;
}

.peng-skel-excerpt {
    width: 90%;
    height: 12px;
}

.peng-skel-thumb {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    margin: 16px 16px 16px 0;
    flex-shrink: 0;
}

@keyframes pengSkelShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ════════════════════════════════════════════
   STATE: EMPTY
════════════════════════════════════════════ */
.peng-empty-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 56px 24px;
    text-align: center;
}

.peng-empty-icon-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text3);
    margin-bottom: 4px;
}

.peng-empty-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text2);
    font-family: 'DM Sans', sans-serif;
}

.peng-empty-desc {
    font-size: 13px;
    color: var(--text3);
    font-family: 'DM Sans', sans-serif;
}

/* ════════════════════════════════════════════
   STATE: ERROR
════════════════════════════════════════════ */
.peng-error-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 52px 24px;
    text-align: center;
}

.peng-error-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(239, 68, 68, .08);
    border: 1px solid rgba(239, 68, 68, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text3);
}

.peng-error-msg {
    font-size: 14px;
    color: var(--text2);
    font-family: 'DM Sans', sans-serif;
}

.peng-retry-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 99px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 12.5px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s;
    margin-top: 4px;
}

.peng-retry-btn:hover {
    border-color: var(--gold-border);
    color: var(--gold);
    background: var(--bg4);
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 600px) {
    .peng-tab-header {
        margin-bottom: 18px;
        gap: 12px;
    }

    .peng-tab-main-title {
        font-size: 1.3rem;
    }

    .peng-tab-header-right {
        width: 100%;
        justify-content: space-between;
    }

    .peng-filter-toggle {
        flex: 1;
    }

    .peng-filter-btn {
        flex: 1;
        justify-content: center;
        padding: 6px 8px;
        font-size: 11px;
    }

    .peng-feat-hero {
        height: 150px;
    }

    .peng-feat-title {
        font-size: 1.05rem;
    }

    .peng-feat-excerpt {
        display: none;
    }

    .peng-list-thumb {
        display: none;
    }

    .peng-list-title {
        font-size: 13.5px;
    }
}

#peng-view-detail {
    animation: pengDetFadeIn .3s ease both;
}

@keyframes pengDetFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* ════════════════════════════════════════════
   NAVIGATION BAR
════════════════════════════════════════════ */
.peng-det-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.peng-det-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 12.5px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s;
}

.peng-det-nav-btn:hover {
    border-color: var(--gold-border);
    color: var(--gold);
    background: var(--bg4);
}

/* ════════════════════════════════════════════
   HERO IMAGE
════════════════════════════════════════════ */
.peng-det-hero {
    width: 100%;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1a1200 0%, #120e00 40%, #0d0a1a 100%);
}

.peng-det-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(245, 200, 66, .12), transparent 70%);
    z-index: 0;
}

.peng-det-hero-inner {
    width: 100%;
    aspect-ratio: 16 / 7;
    max-height: 280px;
    position: relative;
    z-index: 1;
}

.peng-det-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity .4s ease, transform .6s ease;
    transform: scale(1.04);
}

.peng-det-hero-img.loading {
    opacity: 0;
}

.peng-det-hero-img.loaded {
    opacity: 1;
    transform: scale(1);
}

.peng-det-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, .65) 100%);
    pointer-events: none;
    z-index: 2;
}

/* ════════════════════════════════════════════
   CARD KONTEN
════════════════════════════════════════════ */
.peng-det-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px 26px 22px;
    position: relative;
}

.peng-det-card.has-image {
    border-top: none;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}

/* ════════════════════════════════════════════
   META: BADGE + TANGGAL
════════════════════════════════════════════ */
.peng-det-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    flex-wrap: wrap;
}

.peng-det-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text3);
    flex-shrink: 0;
}

.peng-det-date {
    font-size: 11.5px;
    color: var(--text3);
    font-family: 'DM Sans', sans-serif;
    letter-spacing: .03em;
}

/* ════════════════════════════════════════════
   JUDUL
════════════════════════════════════════════ */
.peng-det-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.22;
    margin-bottom: 18px;
    letter-spacing: -.02em;
}

/* ════════════════════════════════════════════
   AUTHOR
════════════════════════════════════════════ */
.peng-det-author {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 8px;
    border-radius: 12px;
    background: var(--bg4);
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.peng-det-author-ico {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.peng-det-author-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.peng-det-author-label {
    font-size: 9.5px;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    line-height: 1;
}

.peng-det-author-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

/* ════════════════════════════════════════════
   DIVIDER
════════════════════════════════════════════ */
.peng-det-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 20px;
}

/* ════════════════════════════════════════════
   BODY KONTEN
════════════════════════════════════════════ */
.peng-det-body {
    font-size: 14.5px;
    color: var(--text2);
    line-height: 1.85;
    margin-bottom: 22px;
}

.peng-det-body p {
    margin-bottom: 1rem;
}

.peng-det-body p:last-child {
    margin-bottom: 0;
}

.peng-det-body strong,
.peng-det-body b {
    color: var(--text);
    font-weight: 700;
}

.peng-det-body em,
.peng-det-body i {
    color: var(--text2);
}

.peng-det-body ul,
.peng-det-body ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

.peng-det-body li {
    margin-bottom: .4rem;
}

.peng-det-body h3,
.peng-det-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 1.6rem 0 .6rem;
}

.peng-det-body a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .15s;
}

.peng-det-body a:hover {
    opacity: .75;
}

.peng-det-body blockquote {
    border-left: 3px solid var(--gold);
    padding: .85rem 1.2rem;
    margin: 1.2rem 0;
    background: var(--gold-dim);
    border-radius: 0 10px 10px 0;
    color: var(--text2);
    font-style: italic;
}

.peng-det-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-bottom: 1rem;
}

.peng-det-body th,
.peng-det-body td {
    padding: 10px 14px;
    border: 1px solid var(--border);
    text-align: left;
}

.peng-det-body th {
    background: var(--bg4);
    color: var(--text);
    font-weight: 700;
}

/* ════════════════════════════════════════════
   ACTION BAR
════════════════════════════════════════════ */
.peng-det-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.peng-det-action-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.peng-det-act-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg4);
    color: var(--text2);
    font-size: 12.5px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
}

.peng-det-act-btn:hover {
    border-color: var(--gold-border);
    color: var(--text);
    background: var(--bg3);
}

.peng-det-act-btn.active {
    background: var(--gold-dim);
    border-color: var(--gold-border);
    color: var(--gold);
}

.peng-det-act-btn.active .peng-like-emoji {
    animation: pengLikePop .3s ease;
}

@keyframes pengLikePop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.55);
    }

    100% {
        transform: scale(1);
    }
}

.peng-det-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 10px;
    background: var(--gold, #f5c842);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .02em;
    box-shadow: 0 4px 20px rgba(245, 200, 66, .25);
    transition: opacity .2s, transform .2s, box-shadow .2s;
}

.peng-det-cta:hover {
    opacity: .9;
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(245, 200, 66, .35);
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 540px) {
    .peng-det-card {
        padding: 20px 16px 18px;
    }

    .peng-det-hero-inner {
        max-height: 200px;
    }

    .peng-det-title {
        font-size: 1.35rem;
    }

    .peng-det-body {
        font-size: 14px;
    }

    .peng-det-cta {
        width: 100%;
        justify-content: center;
    }

    .peng-det-actions {
        gap: 8px;
    }

    .peng-det-nav-btn {
        padding: 7px 12px;
        font-size: 12px;
    }
}

/* ════════════════════════════════════════════════════════════════
   PENGUMUMAN — Tab List & Detail View
   Desain: Elegan, editorial, premium — selaras tema GBI Slawi
   ════════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────
   TAB HEADER
──────────────────────────────────────────── */
.peng-tab-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.peng-tab-header-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.peng-tab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: .8;
}

.peng-tab-eyebrow svg {
    opacity: .7;
}

.peng-tab-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.03em;
    line-height: 1.05;
    margin: 0;
}

/* Dekorasi baris emas di bawah judul */
.peng-tab-title-bar {
    width: 36px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    border-radius: 2px;
    margin-top: 2px;
}

.peng-tab-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    align-self: flex-end;
}

/* ── Filter toggle ── */
.peng-filter-toggle {
    display: flex;
    align-items: center;
    gap: 2px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 3px;
}

.peng-filter-btn {
    padding: 6px 15px;
    border-radius: 7px;
    border: 1px solid transparent;
    background: none;
    color: var(--text3);
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: .02em;
    transition: all .2s;
    white-space: nowrap;
}

.peng-filter-btn.active {
    background: var(--bg4);
    color: var(--text);
    border-color: var(--border);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .18);
}

.peng-filter-btn:hover:not(.active) {
    color: var(--text2);
    background: rgba(255, 255, 255, .04);
}

/* ── Count pill ── */
.peng-count-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 13px;
    border-radius: 99px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: .04em;
    white-space: nowrap;
}

/* ────────────────────────────────────────────
   FEATURED CARD — Hero pengumuman utama
──────────────────────────────────────────── */
.peng-featured-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 16px;
    background: var(--bg3);
    cursor: pointer;
    transition: border-color .3s, transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s;
    animation: pengFeatIn .45s cubic-bezier(.22, 1, .36, 1) both;
}

.peng-featured-card:hover {
    border-color: rgba(245, 200, 66, .3);
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 0 1px rgba(245, 200, 66, .08);
}

@keyframes pengFeatIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero image */
.peng-feat-hero {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #1a1200 0%, #0d0a00 50%, #0a0d1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.peng-feat-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.peng-featured-card:hover .peng-feat-hero-img {
    transform: scale(1.04);
}

.peng-feat-hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 60% at 60% 40%, rgba(245, 200, 66, .14) 0%, transparent 70%);
    pointer-events: none;
}

.peng-feat-hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 110px;
    background: linear-gradient(to top, var(--bg3), transparent);
    pointer-events: none;
}

/* Label "Terbaru" mengambang */
.peng-feat-badge-live {
    position: absolute;
    top: 14px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px 5px 9px;
    border-radius: 99px;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 200, 66, .28);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
}

.peng-feat-badge-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pengDotBlink 1.8s ease-in-out infinite;
}

@keyframes pengDotBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .25;
    }
}

/* Body featured card */
.peng-feat-body {
    padding: 20px 22px 22px;
}

.peng-feat-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.peng-feat-date {
    font-size: 11px;
    color: var(--text3);
    letter-spacing: .03em;
}

.peng-feat-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text3);
    flex-shrink: 0;
}

.peng-feat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -.02em;
}

.peng-feat-excerpt {
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.peng-feat-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.peng-feat-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: gap .2s;
}

.peng-featured-card:hover .peng-feat-read-more {
    gap: 10px;
}

.peng-feat-read-more svg {
    transition: transform .2s;
}

.peng-featured-card:hover .peng-feat-read-more svg {
    transform: translateX(2px);
}

/* ────────────────────────────────────────────
   SECTION DIVIDER
──────────────────────────────────────────── */
.peng-section-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0 18px;
}

.peng-divider-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.peng-divider-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text3);
    white-space: nowrap;
}

/* ────────────────────────────────────────────
   LIST CARDS — Card item reguler
──────────────────────────────────────────── */
.kom-pengumuman-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.peng-list-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    position: relative;
    transition: background .2s;
    animation: pengItemIn .4s cubic-bezier(.22, 1, .36, 1) both;
}

.peng-list-item:last-child {
    border-bottom: none;
}

.peng-list-item::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
    border-radius: 2px;
    opacity: 0;
    transform: scaleY(.4);
    transition: opacity .2s, transform .25s cubic-bezier(.22, 1, .36, 1);
}

.peng-list-item:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

@keyframes pengItemIn {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.peng-list-item-body {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}

.peng-list-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.peng-list-date {
    font-size: 11px;
    color: var(--text3);
    letter-spacing: .02em;
}

.peng-list-meta-sep {
    color: var(--text3);
    font-size: 12px;
    line-height: 1;
}

.peng-list-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -.015em;
    transition: color .2s;
}

.peng-list-item:hover .peng-list-title {
    color: var(--gold);
}

.peng-list-excerpt {
    font-size: 13px;
    color: var(--text3);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Thumbnail kanan */
.peng-list-thumb {
    width: 72px;
    height: 58px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg3);
    border: 1px solid var(--border);
    transition: border-color .2s;
}

.peng-list-item:hover .peng-list-thumb {
    border-color: rgba(245, 200, 66, .25);
}

.peng-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.peng-list-item:hover .peng-list-thumb img {
    transform: scale(1.06);
}

/* ────────────────────────────────────────────
   BADGE PENGUMUMAN
──────────────────────────────────────────── */
.kom-pengumuman-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--bg4);
    border: 1px solid var(--border);
    color: var(--text2);
}

.kom-pengumuman-badge.penting,
.kom-pengumuman-badge[data-type="penting"] {
    background: rgba(245, 200, 66, .12);
    border-color: rgba(245, 200, 66, .28);
    color: var(--gold);
}

/* ────────────────────────────────────────────
   STATE WRAPPERS (loading / empty / error)
──────────────────────────────────────────── */
.peng-state-wrap {
    padding: 0;
}

/* Skeleton featured */
.peng-skeleton-featured {
    width: 100%;
    height: 200px;
    border-radius: 18px;
    background: linear-gradient(90deg, var(--bg3) 25%, var(--bg4) 50%, var(--bg3) 75%);
    background-size: 200% 100%;
    animation: pengSkelShimmer 1.6s ease infinite;
    margin-bottom: 16px;
}

/* Skeleton items */
.peng-skeleton-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.peng-skeleton-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.peng-skeleton-strip {
    display: none;
}

.peng-skeleton-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.peng-skeleton-meta-row {
    display: flex;
    gap: 8px;
}

.peng-skel {
    border-radius: 6px;
    background: linear-gradient(90deg, var(--bg3) 25%, var(--bg4) 50%, var(--bg3) 75%);
    background-size: 200% 100%;
    animation: pengSkelShimmer 1.6s ease infinite;
}

.peng-skel-badge {
    width: 60px;
    height: 18px;
    border-radius: 99px;
}

.peng-skel-date {
    width: 80px;
    height: 12px;
}

.peng-skel-title {
    width: 90%;
    height: 18px;
}

.peng-skel-short {
    width: 65%;
    height: 18px;
}

.peng-skel-excerpt {
    width: 100%;
    height: 12px;
}

.peng-skel-thumb {
    width: 72px;
    height: 58px;
    border-radius: 10px;
    flex-shrink: 0;
}

@keyframes pengSkelShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Empty */
.peng-empty-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 56px 20px;
    text-align: center;
}

.peng-empty-icon-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text3);
    margin-bottom: 4px;
}

.peng-empty-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text2);
}

.peng-empty-desc {
    font-size: 13px;
    color: var(--text3);
}

/* Error */
.peng-error-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 48px 20px;
    text-align: center;
}

.peng-error-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(220, 80, 80, .25);
    background: rgba(220, 80, 80, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(220, 80, 80, .7);
}

.peng-error-msg {
    font-size: 13.5px;
    color: var(--text2);
}

.peng-retry-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
}

.peng-retry-btn:hover {
    border-color: var(--gold-border);
    color: var(--gold);
    background: var(--gold-dim);
}

/* ═══════════════════════════════════════════════════════════════
   DETAIL VIEW
═══════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────
   NAV BAR
──────────────────────────────────────────── */
.peng-det-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.peng-det-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 12.5px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: .01em;
    transition: all .2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.peng-det-nav-back:hover {
    border-color: var(--border);
    color: var(--text);
    background: var(--bg4);
}

.peng-det-nav-share:hover {
    border-color: var(--gold-border);
    color: var(--gold);
    background: var(--gold-dim);
}

/* Breadcrumb di tengah nav */
.peng-det-nav-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text3);
    overflow: hidden;
    min-width: 0;
}

.peng-det-nav-crumb-parent {
    white-space: nowrap;
    flex-shrink: 0;
}

.peng-det-nav-breadcrumb svg {
    flex-shrink: 0;
    opacity: .5;
}

.peng-det-nav-crumb-current {
    color: var(--text2);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ────────────────────────────────────────────
   ARTIKEL WRAPPER
──────────────────────────────────────────── */
.peng-det-article {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .28);
    animation: pengDetIn .4s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes pengDetIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ────────────────────────────────────────────
   HERO IMAGE
──────────────────────────────────────────── */
.peng-det-hero {
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, #140f00 0%, #0d0a00 50%, #0a0d18 100%);
}

.peng-det-hero-inner {
    width: 100%;
    aspect-ratio: 16 / 6;
    max-height: 300px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.peng-det-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity .4s ease, transform .7s ease;
    transform: scale(1.05);
}

.peng-det-hero-img.loading {
    opacity: 0;
}

.peng-det-hero-img.loaded {
    opacity: 1;
    transform: scale(1);
}

.peng-det-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, .72) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Grain texture overlay untuk premium feel */
.peng-det-hero-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 180px;
}

/* ────────────────────────────────────────────
   KONTEN CARD
──────────────────────────────────────────── */
.peng-det-card {
    padding: 30px 30px 24px;
    position: relative;
}

/* ── Header area ── */
.peng-det-header {
    margin-bottom: 0;
}

/* Meta: badge + tanggal */
.peng-det-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.peng-det-meta-sep {
    color: var(--text3);
    font-size: 14px;
}

.peng-det-date {
    font-size: 11.5px;
    color: var(--text3);
    letter-spacing: .03em;
}

/* Judul */
.peng-det-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -.025em;
}

/* Author pill */
.peng-det-author {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px 7px 7px;
    border-radius: 12px;
    background: var(--bg3);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.peng-det-author-ico {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.peng-det-author-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.peng-det-author-label {
    font-size: 9px;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    line-height: 1;
}

.peng-det-author-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

/* ── Ornament divider ── */
.peng-det-ornament {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.peng-det-orn-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}

.peng-det-orn-line:first-child {
    background: linear-gradient(to right, var(--border), transparent);
}

.peng-det-orn-line:last-child {
    background: linear-gradient(to right, transparent, var(--border));
}

.peng-det-orn-icon {
    color: var(--gold);
    opacity: .45;
    flex-shrink: 0;
}

/* ── Body konten ── */
.peng-det-body {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.9;
    margin-bottom: 28px;
}

.peng-det-body p {
    margin-bottom: 1.1rem;
}

.peng-det-body p:last-child {
    margin-bottom: 0;
}

.peng-det-body strong,
.peng-det-body b {
    color: var(--text);
    font-weight: 700;
}

.peng-det-body em,
.peng-det-body i {
    color: var(--text2);
    font-style: italic;
}

.peng-det-body ul,
.peng-det-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.1rem;
}

.peng-det-body li {
    margin-bottom: .45rem;
}

.peng-det-body h3,
.peng-det-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin: 1.8rem 0 .65rem;
    letter-spacing: -.01em;
}

.peng-det-body a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .15s;
}

.peng-det-body a:hover {
    opacity: .75;
}

.peng-det-body blockquote {
    border-left: 2px solid var(--gold);
    padding: 1rem 1.4rem;
    margin: 1.4rem 0;
    background: var(--gold-dim);
    border-radius: 0 12px 12px 0;
    color: var(--text2);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
}

.peng-det-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    margin-bottom: 1.1rem;
}

.peng-det-body th,
.peng-det-body td {
    padding: 10px 14px;
    border: 1px solid var(--border);
    text-align: left;
}

.peng-det-body th {
    background: var(--bg4);
    color: var(--text);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* ── Action bar ── */
.peng-det-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.peng-det-action-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.peng-det-act-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-size: 12.5px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
    letter-spacing: .01em;
}

.peng-det-act-btn:hover {
    border-color: var(--border);
    color: var(--text);
    background: var(--bg4);
}

.peng-det-act-btn.active {
    background: var(--gold-dim);
    border-color: var(--gold-border);
    color: var(--gold);
}

.peng-det-act-btn.active .peng-like-emoji {
    animation: pengLikePop .32s cubic-bezier(.22, 1, .36, 1);
}

@keyframes pengLikePop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.6);
    }

    100% {
        transform: scale(1);
    }
}

/* CTA Daftar Sekarang */
.peng-det-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 24px;
    border-radius: 10px;
    background: var(--gold);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .04em;
    box-shadow: 0 4px 22px rgba(245, 200, 66, .22);
    transition: opacity .2s, transform .2s, box-shadow .2s;
}

.peng-det-cta-icon {
    font-size: 10px;
    opacity: .8;
}

.peng-det-cta:hover {
    opacity: .9;
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(245, 200, 66, .32);
}

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 640px) {
    .peng-tab-main-title {
        font-size: 1.6rem;
    }

    .peng-det-card {
        padding: 22px 18px 20px;
    }

    .peng-det-title {
        font-size: 1.55rem;
    }

    .peng-det-hero-inner {
        max-height: 200px;
    }

    .peng-det-body {
        font-size: 14px;
        line-height: 1.8;
    }

    .peng-det-cta {
        width: 100%;
        justify-content: center;
    }

    .peng-det-actions {
        gap: 8px;
    }

    .peng-det-nav-breadcrumb {
        display: none;
    }

    .peng-det-nav-btn {
        padding: 7px 13px;
        font-size: 12px;
    }

    .peng-feat-title {
        font-size: 1.25rem;
    }

    .peng-feat-hero {
        height: 170px;
    }
}

@media (max-width: 400px) {
    .peng-det-card {
        padding: 18px 14px 16px;
    }

    .peng-det-title {
        font-size: 1.35rem;
    }

    .peng-filter-btn {
        padding: 5px 11px;
        font-size: 11px;
    }
}

/* ── End Galeri CSS ── */
/* ═══════════════════════════════════════════════════════════════
   PERSEMBAHAN TAB  (prs-*)
   ═══════════════════════════════════════════════════════════════ */

/* ── Header ── */
.prs-header {
    text-align: center;
    padding: 8px 0 4px;
    position: relative;
}

.prs-header-cross {
    display: inline-flex;
    position: relative;
    width: 28px;
    height: 28px;
    margin: 0 auto 12px;
}

.prs-cross-v,
.prs-cross-h {
    position: absolute;
    background: var(--gold);
    border-radius: 2px;
}

.prs-cross-v {
    width: 4px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.prs-cross-h {
    width: 100%;
    height: 4px;
    top: 35%;
    transform: translateY(-50%);
}

.prs-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.prs-subtitle {
    font-size: .85rem;
    color: var(--text2);
    margin-bottom: 8px;
}

.prs-verse {
    font-size: .82rem;
    color: var(--gold);
    font-style: italic;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Grid Kartu ── */
.prs-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

/* ── Kartu Rekening ── */
.prs-card {
    position: relative;
    border-radius: 16px;
    border: 1px solid var(--gold-border);
    background: var(--bg2, rgba(255, 255, 255, .04));
    overflow: hidden;
    transition: transform .22s, box-shadow .22s;
}

.prs-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(245, 200, 66, .12);
}

.prs-card-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse at top, rgba(245, 200, 66, .07) 0%, transparent 70%);
    pointer-events: none;
}

.prs-card-inner {
    position: relative;
    padding: 20px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ── Top: nama bank + dot ── */
.prs-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prs-bank-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.prs-bank-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px currentColor;
}

.prs-bank-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--text);
    letter-spacing: .02em;
}

/* ── QR Frame ── */
.prs-qr-wrap {
    display: flex;
    justify-content: center;
}

.prs-qr-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    width: fit-content;
}

.prs-qr-frame img {
    border-radius: 6px;
}

.prs-qr-placeholder {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prs-qr-svg {
    width: 80px;
    height: 80px;
    color: var(--gold);
    opacity: .45;
}

.prs-qr-scan-label {
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text3);
}

/* ── Rekening Info ── */
.prs-rekening-block {
    text-align: center;
}

.prs-rek-label,
.prs-rek-name-label {
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 2px;
}

.prs-rek-number {
    font-family: monospace;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--gold);
    margin-bottom: 8px;
}

.prs-rek-separator {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
    margin: 6px auto;
}

.prs-rek-name {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
}

/* ── Salin Nomor Button ── */
.prs-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 9px 14px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    color: var(--gold);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s, transform .15s;
    letter-spacing: .03em;
}

.prs-copy-btn:hover {
    background: rgba(245, 200, 66, .25);
    transform: scale(1.02);
}

.prs-copy-btn.copied {
    background: rgba(76, 175, 130, .15);
    border-color: rgba(76, 175, 130, .4);
    color: #4CAF82;
}

/* ── Catatan Bawah ── */
.prs-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: var(--gold-dim);
    border-color: var(--gold-border) !important;
}

.prs-note-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.prs-note p {
    font-size: .85rem;
    color: var(--text2);
    line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .prs-cards-grid {
        grid-template-columns: 1fr;
    }

    .prs-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 400px) {
    .prs-card-inner {
        padding: 16px 14px 14px;
    }
}

/* ── QR Frame clickable hint ── */
.prs-qr-clickable {
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

.prs-qr-clickable:hover {
    transform: scale(1.04);
    box-shadow: 0 0 18px rgba(245, 200, 66, .2);
}

/* ══ MODAL QR ══ */
.prs-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9990;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.prs-modal-overlay.open {
    display: flex;
}

.prs-modal-box {
    position: relative;
    background: var(--bg2);
    border: 1px solid var(--gold-border);
    border-radius: 20px;
    padding: 28px 24px 22px;
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 0 1px rgba(245, 200, 66, .08);
    animation: prsModalIn .25s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes prsModalIn {
    from {
        opacity: 0;
        transform: scale(.92) translateY(12px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.prs-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg4);
    color: var(--text2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .18s, color .18s;
}

.prs-modal-close:hover {
    background: var(--gold-dim);
    color: var(--gold);
}

.prs-modal-bank {
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.prs-modal-qr-wrap {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prs-modal-qr-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
}

.prs-modal-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prs-modal-info {
    text-align: center;
    width: 100%;
}

.prs-modal-rek-number {
    font-family: monospace;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--gold);
    margin-top: 2px;
}

/* ── QR clickable hint ── */
.prs-qr-clickable {
    cursor: zoom-in;
    transition: transform .2s, box-shadow .2s;
}

.prs-qr-clickable:hover {
    transform: scale(1.04);
    box-shadow: 0 0 18px rgba(245, 200, 66, .2);
}

/* ══ MODAL QR FULL SCREEN ══ */
.prs-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9990;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.prs-modal-overlay.open {
    display: flex;
    animation: prsFadeIn .2s ease both;
}

@keyframes prsFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.prs-modal-close {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    transition: background .18s;
}

.prs-modal-close:hover {
    background: rgba(255, 255, 255, .22);
}

.prs-modal-qr-img {
    display: block;
    width: min(90vw, 90vh);
    height: min(90vw, 90vh);
    object-fit: contain;
    animation: prsQRIn .25s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes prsQRIn {
    from {
        opacity: 0;
        transform: scale(.88);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}