/* ══════════════════════════════════════════════════════
   Halaman Promosi — utilitas Tailwind dari kode asli
   (class arbitrary tidak ada di bundle gwp/gwproot remote)
   ══════════════════════════════════════════════════════ */

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Background & border */
.bg-\[var\(--color-6\)\] {
    background-color: var(--color-6);
}

.bg-\[var\(--color-6\)\]\/40 {
    background-color: color-mix(in srgb, var(--color-6) 40%, transparent);
}

.bg-\[var\(--color-3\)\] {
    background-color: var(--color-3);
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.hover\:bg-\[var\(--color-form\)\]:hover {
    background-color: var(--color-form);
}

/* Layout banner */
.flex-\[1\.25\] {
    flex: 1.25 1 0%;
}

.min-h-\[120px\] {
    min-height: 120px;
}

/* Teks detail */
.text-\[var\(--color-4\)\] {
    color: var(--color-4);
}

/* Margin responsive detail scroll */
.-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .md\:mx-0 {
        margin-left: 0;
        margin-right: 0;
    }

    .md\:px-0 {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Prose invert (typography plugin tidak ada di bundle) */
.prose-invert {
    color: var(--color-4);
    font-size: 0.875rem;
    line-height: 1.65;
}

.prose-invert :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.prose-invert :where(strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
    color: #fff;
    font-weight: 700;
}

.prose-invert :where(ul, ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
}

.prose-invert :where(li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
    margin-bottom: 0.35rem;
}

.prose-invert :where(h2):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #fff;
}

.prose-invert :where(table):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    margin: 0.75rem 0;
}

/* Banner promo — sama seperti situs asli, tanpa overlay */
.promotion-content .skeleton-img-wrapper {
    border-radius: 0;
}

.promotion-content .skeleton-img-wrapper img.skeleton-img {
    display: block;
    width: 100%;
    min-height: 120px;
    object-fit: cover;
    border-radius: 0;
}

/* Tombol samping: flex-col + hidden md:flex */
.promotion-content .hidden.md\:flex {
    display: none;
}

@media (min-width: 768px) {
    .promotion-content .hidden.md\:flex {
        display: flex;
        flex-direction: column;
    }
}