/* ════════════════════════════════════════════════════════════════
   GBI Slawi — pengumuman.css  (REDESIGN)
   Tab Pengumuman: List & Detail View
   Aesthetic: Sacred Editorial — elegan, bersih, spiritual premium
   Font: Cormorant Garamond (display) + DM Sans (body)
   ════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables (lokal fallback jika parent tidak mendefinisikan) ── */
:root {
    --gold: #e8c45a;
    --gold-dim: rgba(232, 196, 90, 0.08);
    --gold-border: rgba(232, 196, 90, 0.22);
    --bg2: #141414;
    --bg3: #1c1c1c;
    --bg4: #242424;
    --border: rgba(255, 255, 255, 0.08);
    --text: #f0ede6;
    --text2: #b8b4aa;
    --text3: #706c64;
}

/* ══════════════════════════════════════════════════════════════
   TAB HEADER
══════════════════════════════════════════════════════════════ */
.peng-tab-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.peng-tab-header-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.peng-tab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'DM Sans', sans-serif;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.75;
}

.peng-tab-eyebrow svg {
    opacity: 0.65;
}

.peng-tab-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;
    font-style: italic;
}

/* Garis emas elegan di bawah judul */
.peng-tab-title-bar {
    width: 28px;
    height: 1.5px;
    background: linear-gradient(to right, var(--gold), transparent);
    border-radius: 2px;
    margin-top: 5px;
    opacity: 0.7;
}

.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(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 3px;
}

.peng-filter-btn {
    padding: 6px 14px;
    border-radius: 5px;
    border: none;
    background: none;
    color: var(--text3);
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.peng-filter-btn.active {
    background: var(--bg4);
    color: var(--text);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.peng-filter-btn:hover:not(.active) {
    color: var(--text2);
}

/* ── Count Pill ── */
.peng-count-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 6px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    font-family: 'DM Sans', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
    white-space: nowrap;
    opacity: 0.85;
}

/* ══════════════════════════════════════════════════════════════
   FEATURED CARD — Hero pengumuman utama
══════════════════════════════════════════════════════════════ */
.peng-featured-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 4px;
    background: var(--bg3);
    cursor: pointer;
    transition: border-color 0.3s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
    animation: pengFeatIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.peng-featured-card:hover {
    border-color: rgba(232, 196, 90, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(232, 196, 90, 0.06);
}

@keyframes pengFeatIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero image area */
.peng-feat-hero {
    width: 100%;
    height: 230px;
    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 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    filter: brightness(0.9);
}

.peng-featured-card:hover .peng-feat-hero-img {
    transform: scale(1.04);
}

.peng-feat-hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 65% at 65% 35%, rgba(232, 196, 90, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.peng-feat-hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg3), transparent);
    pointer-events: none;
}

/* Badge "Terbaru" di sudut hero */
.peng-feat-badge-live {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px 5px 8px;
    border-radius: 6px;
    background: rgba(10, 8, 0, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(232, 196, 90, 0.22);
    font-family: 'DM Sans', sans-serif;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.peng-feat-badge-live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    animation: pengDotBlink 2s ease-in-out infinite;
}

@keyframes pengDotBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

/* Body featured card */
.peng-feat-body {
    padding: 22px 24px 24px;
}

.peng-feat-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.peng-feat-date {
    font-family: 'DM Sans', sans-serif;
    font-size: 10.5px;
    color: var(--text3);
    letter-spacing: 0.04em;
    font-weight: 400;
}

.peng-feat-meta-dot {
    width: 2.5px;
    height: 2.5px;
    border-radius: 50%;
    background: var(--text3);
    flex-shrink: 0;
    opacity: 0.5;
}

.peng-feat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}

.peng-feat-excerpt {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--text2);
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 18px;
    font-weight: 300;
}

.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: 7px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: gap 0.2s, opacity 0.2s;
    opacity: 0.8;
}

.peng-featured-card:hover .peng-feat-read-more {
    gap: 12px;
    opacity: 1;
}

.peng-feat-read-more svg {
    transition: transform 0.2s;
}

.peng-featured-card:hover .peng-feat-read-more svg {
    transform: translateX(3px);
}

/* ══════════════════════════════════════════════════════════════
   SECTION DIVIDER
══════════════════════════════════════════════════════════════ */
.peng-section-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 28px 0 20px;
}

.peng-divider-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.peng-divider-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text3);
    white-space: nowrap;
    opacity: 0.7;
}

/* ══════════════════════════════════════════════════════════════
   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: 18px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    position: relative;
    transition: padding-left 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    animation: pengItemIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.peng-list-item:last-child {
    border-bottom: none;
}

/* Accent bar kiri yang muncul saat hover */
.peng-list-item::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 20%;
    bottom: 20%;
    width: 1.5px;
    background: var(--gold);
    border-radius: 2px;
    opacity: 0;
    transform: scaleY(0.3);
    transition: opacity 0.22s, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.peng-list-item:hover::before {
    opacity: 0.85;
    transform: scaleY(1);
}

@keyframes pengItemIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    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-family: 'DM Sans', sans-serif;
    font-size: 10.5px;
    color: var(--text3);
    letter-spacing: 0.03em;
    font-weight: 400;
}

.peng-list-meta-sep {
    color: var(--text3);
    font-size: 11px;
    line-height: 1;
    opacity: 0.4;
}

.peng-list-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color 0.2s;
}

.peng-list-item:hover .peng-list-title {
    color: #d4b358;
}

.peng-list-excerpt {
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    color: var(--text3);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
}

/* Thumbnail kanan */
.peng-list-thumb {
    width: 70px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg4);
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}

.peng-list-item:hover .peng-list-thumb {
    border-color: rgba(232, 196, 90, 0.2);
}

.peng-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.92);
    transition: transform 0.5s ease, filter 0.3s;
}

.peng-list-item:hover .peng-list-thumb img {
    transform: scale(1.07);
    filter: brightness(1);
}

/* ══════════════════════════════════════════════════════════════
   BADGE PENGUMUMAN
══════════════════════════════════════════════════════════════ */
.kom-pengumuman-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--bg4);
    border: 1px solid var(--border);
    color: var(--text3);
}

.kom-pengumuman-badge.penting,
.kom-pengumuman-badge[data-type="penting"] {
    background: rgba(232, 196, 90, 0.08);
    border-color: rgba(232, 196, 90, 0.22);
    color: #c9a84c;
}

/* ══════════════════════════════════════════════════════════════
   STATE WRAPPERS (loading / empty / error)
══════════════════════════════════════════════════════════════ */
.peng-state-wrap {
    padding: 0;
}

/* Skeleton featured */
.peng-skeleton-featured {
    width: 100%;
    height: 200px;
    border-radius: 14px;
    background: linear-gradient(90deg, var(--bg3) 25%, var(--bg4) 50%, var(--bg3) 75%);
    background-size: 200% 100%;
    animation: pengSkelShimmer 1.8s ease infinite;
    margin-bottom: 28px;
}

/* Skeleton items */
.peng-skeleton-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.peng-skeleton-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.peng-skeleton-strip {
    display: none;
}

.peng-skeleton-body {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.peng-skeleton-meta-row {
    display: flex;
    gap: 8px;
}

.peng-skel {
    border-radius: 4px;
    background: linear-gradient(90deg, var(--bg3) 25%, var(--bg4) 50%, var(--bg3) 75%);
    background-size: 200% 100%;
    animation: pengSkelShimmer 1.8s ease infinite;
}

.peng-skel-badge {
    width: 55px;
    height: 17px;
    border-radius: 4px;
}

.peng-skel-date {
    width: 75px;
    height: 11px;
}

.peng-skel-title {
    width: 88%;
    height: 17px;
}

.peng-skel-short {
    width: 62%;
    height: 17px;
}

.peng-skel-excerpt {
    width: 100%;
    height: 11px;
}

.peng-skel-thumb {
    width: 70px;
    height: 56px;
    border-radius: 8px;
    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: 60px 20px;
    text-align: center;
}

.peng-empty-icon-ring {
    width: 56px;
    height: 56px;
    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;
    opacity: 0.6;
}

.peng-empty-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text2);
    font-style: italic;
}

.peng-empty-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    color: var(--text3);
    font-weight: 300;
}

/* Error */
.peng-error-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 52px 20px;
    text-align: center;
}

.peng-error-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(200, 70, 70, 0.2);
    background: rgba(200, 70, 70, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(200, 70, 70, 0.6);
}

.peng-error-msg {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--text2);
    font-weight: 300;
}

.peng-retry-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-family: 'DM Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.18s ease;
    letter-spacing: 0.02em;
}

.peng-retry-btn:hover {
    border-color: var(--gold-border);
    color: var(--gold);
    background: var(--gold-dim);
}

/* ══════════════════════════════════════════════════════════════
   DETAIL VIEW
══════════════════════════════════════════════════════════════ */

/* ── Navigation 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: 7px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: all 0.18s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.peng-det-nav-back:hover {
    color: var(--text);
    background: var(--bg4);
    border-color: rgba(255, 255, 255, 0.12);
}

.peng-det-nav-share:hover {
    border-color: var(--gold-border);
    color: var(--gold);
    background: var(--gold-dim);
}

/* Breadcrumb tengah */
.peng-det-nav-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 10.5px;
    color: var(--text3);
    overflow: hidden;
    min-width: 0;
    font-weight: 400;
}

.peng-det-nav-crumb-parent {
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 0.7;
}

.peng-det-nav-breadcrumb svg {
    flex-shrink: 0;
    opacity: 0.4;
}

.peng-det-nav-crumb-current {
    color: var(--text2);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Artikel Wrapper ── */
.peng-det-article {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
    animation: pengDetIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes pengDetIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Hero Image ── */
.peng-det-hero {
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, #130f00 0%, #0d0a00 50%, #080d16 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 0.4s ease, transform 0.8s ease;
    transform: scale(1.04);
    filter: brightness(0.85) saturate(0.9);
}

.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 10%, rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Grain texture untuk premium feel */
.peng-det-hero-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.03;
    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: 32px 32px 26px;
    position: relative;
}

/* Subtle top glow */
.peng-det-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(232, 196, 90, 0.12), transparent);
    pointer-events: none;
}

/* ── 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: 12px;
    opacity: 0.4;
}

.peng-det-date {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--text3);
    letter-spacing: 0.04em;
    font-weight: 400;
}

/* Judul artikel */
.peng-det-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    font-style: italic;
}

/* Author pill */
.peng-det-author {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 8px 14px 8px 8px;
    border-radius: 10px;
    background: var(--bg3);
    border: 1px solid var(--border);
    margin-bottom: 26px;
}

.peng-det-author-ico {
    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;
    font-size: 15px;
    flex-shrink: 0;
}

.peng-det-author-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.peng-det-author-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 8.5px;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-weight: 600;
    line-height: 1;
    opacity: 0.7;
}

.peng-det-author-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.2;
}

/* ── Ornament divider ── */
.peng-det-ornament {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.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: 0.35;
    flex-shrink: 0;
}

/* ── Body konten ── */
.peng-det-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 300;
    color: var(--text2);
    line-height: 1.9;
    margin-bottom: 30px;
}

.peng-det-body p {
    margin-bottom: 1.15rem;
}

.peng-det-body p:last-child {
    margin-bottom: 0;
}

.peng-det-body strong,
.peng-det-body b {
    color: var(--text);
    font-weight: 600;
}

.peng-det-body em,
.peng-det-body i {
    font-style: italic;
    color: var(--text2);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05em;
}

.peng-det-body ul,
.peng-det-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.15rem;
}

.peng-det-body li {
    margin-bottom: 0.5rem;
}

.peng-det-body h3,
.peng-det-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text);
    margin: 1.8rem 0 0.65rem;
    letter-spacing: -0.01em;
}

.peng-det-body a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(232, 196, 90, 0.35);
    transition: text-decoration-color 0.15s, opacity 0.15s;
    font-weight: 400;
}

.peng-det-body a:hover {
    text-decoration-color: var(--gold);
    opacity: 0.85;
}

.peng-det-body blockquote {
    border-left: 1.5px solid rgba(232, 196, 90, 0.4);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(232, 196, 90, 0.04);
    border-radius: 0 10px 10px 0;
    color: var(--text2);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.65;
}

.peng-det-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-bottom: 1.15rem;
}

.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: 600;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
}

/* ── Action bar ── */
.peng-det-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 20px;
    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: 7px;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--text2);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.18s ease;
    letter-spacing: 0.01em;
}

.peng-det-act-btn:hover {
    color: var(--text);
    background: var(--bg4);
    border-color: rgba(255, 255, 255, 0.12);
}

.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 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pengLikePop {
    0% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.65);
    }

    100% {
        transform: scale(1);
    }
}

/* CTA Daftar Sekarang */
.peng-det-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 7px;
    background: var(--gold);
    color: #0d0900;
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(232, 196, 90, 0.18);
    transition: opacity 0.2s, transform 0.22s, box-shadow 0.22s;
}

.peng-det-cta-icon {
    font-size: 10px;
    opacity: 0.75;
}

.peng-det-cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(232, 196, 90, 0.28);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    .peng-tab-main-title {
        font-size: 1.7rem;
    }

    .peng-det-card {
        padding: 22px 20px 20px;
    }

    .peng-det-title {
        font-size: 1.6rem;
    }

    .peng-det-hero-inner {
        max-height: 200px;
    }

    .peng-det-body {
        font-size: 14px;
        line-height: 1.82;
    }

    .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 12px;
        font-size: 11.5px;
    }

    .peng-feat-title {
        font-size: 1.3rem;
    }

    .peng-feat-hero {
        height: 175px;
    }

    .peng-feat-body {
        padding: 18px 18px 20px;
    }
}

@media (max-width: 400px) {
    .peng-det-card {
        padding: 18px 16px 16px;
    }

    .peng-det-title {
        font-size: 1.4rem;
    }

    .peng-filter-btn {
        padding: 5px 10px;
        font-size: 10.5px;
    }
}