/* Bias cahaya berlapis dari berbagai arah */
body::before,
body::after,
body::backdrop,
body::marker,
body::selection {
    pointer-events: none;
    position: fixed;
    left: 0; top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    content: "";
}

body::before {
    background: linear-gradient(90deg, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0.00) 60%);
}
body::after {
    background: linear-gradient(270deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0.00) 60%);
}
body::backdrop {
    background: linear-gradient(90deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.00) 60%);
}
body::marker {
    background: linear-gradient(270deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.00) 60%);
}
body::selection {
    background: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.00) 60%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', Arial, sans-serif;
    background: #0f17f5;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 1;
}

.bg-yellow { background: #ffe000 !important; }
.text-blue { color: #005be4 !important; }
.text-yellow { color: #ffe000 !important; }

.btn-yellow { background: #ffe000; color: #222; font-weight: bold; }
.btn-yellow:hover { background: #ffd000; color: #222; }
.btn-blue { background: #005be4; color: #fff; font-weight: bold; }
.btn-blue:hover { background: #003e99; color: #fff; }

.card {
    border-radius: 16px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    /* max-width: unset; */
}

/* Untuk judul link di Video Podcast, Indepth Report, dan Opini */
.card h5 a,
.card-horizontal .card-title a {
    color: #222;
    text-decoration: none !important;
    transition: color 0.2s;
    cursor: pointer;
}
.card h5 a:hover,
.card-horizontal .card-title a:hover {
    color: #ffe000;
    text-decoration: none !important;
    cursor: pointer;
}

.card-img-top, .rounded-img { border-radius: 10px; }
.rounded-img { border-radius: 50%; width: 100px; height: 100px; object-fit: cover; }

.footer-socials img { width: 32px; height: 32px; border-radius: 50%; background: #fff; object-fit: cover; }
.footer-socials a { margin: 0 0.5rem; }

.section-bg { background: rgba(255,255,255,0.08); border-radius: 18px; }
.supported-logos img { background: #fff; border-radius: 10px; padding: 0.5rem 1rem; height: 60px; object-fit: contain; margin: 0 1rem; }

.form-gabung-wrapper {
    background: #fff;
    border-radius: 22px;
    max-width: 440px;
    box-shadow: 0 6px 36px 0 rgba(0,0,0,0.09);
}

.form-control, textarea {
    background: #f2f2f2 !important;
    color: #222 !important;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-size: 1.05rem;
}

.form-control.is-invalid {
    border-color: #dc3545 !important;
    background-color: #ffeaea;
}

.form-label {
    font-weight: 500;
}

.navbar-brand span { font-weight: bold; color: #000; }
.navbar { background: #ffe000; }
.footer { background: #ffe000 !important; color: #000; width: 100vw; margin-bottom: 0; padding-bottom: 0; }

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 0.2em;
}

.hero-section .mb-1 {
    font-size: 2rem;
    color: #fff !important;
    margin-bottom: 0.2em !important;
}

.hero-section .fst-italic {
    font-size: 1.5rem;
    color: #fff !important;
    margin-bottom: 0;
}

.hero-mic-wrapper {
    min-width: 320px;
    min-height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: 0;
}

.hero-salju-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120%;
    max-width: 420px;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.hero-mic {
    position: relative;
    z-index: 2;
    width: 102%;
    max-width: 408px;
    min-width: 240px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.12));
}

.container {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Untuk card horizontal (Indepth & Opini) agar tidak terlalu lebar */
@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
        max-width: 410px;
    }
}

/* Card horizontal: gambar square di kiri, teks di kanan */
.card-horizontal {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 200px;
    height: 100%;
}

.card-horizontal-img {
    width: 200px;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    border-radius: 16px 0 0 16px;
    flex-shrink: 0;
    display: block;
    align-self: stretch;
}

.card-horizontal .card-body {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

@media (max-width: 767px) {
    .card-horizontal {
        flex-direction: column;
        min-height: unset;
    }
    .card-horizontal-img {
        width: 100%;
        height: 180px;
        min-height: unset;
        border-radius: 16px 16px 0 0;
        align-self: auto;
    }
}

@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .hero-section .mb-1 { font-size: 1.2rem; }
    .hero-section .fst-italic { font-size: 1rem; }
    .hero-mic-wrapper { min-width: 180px; min-height: 180px; }
    .hero-mic { width: 70%; max-width: 180px; min-width: 100px; }
    .hero-salju-bg { max-width: 200px; }
    .card-horizontal-img {
        width: 100%;
        height: 180px;
        min-height: unset;
        border-radius: 16px 16px 0 0;
    }
    .card-horizontal {
        flex-direction: column;
        min-height: unset;
    }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2rem; }
}

.artikel-wrapper {
    background: #fff;
    color: #222;
    border-radius: 1.5rem;
    box-shadow: 0 6px 36px 0 rgba(0,0,0,0.07);
}

.artikel-wrapper h1, .artikel-wrapper h2, .artikel-wrapper h3, .artikel-wrapper h4 {
    color: #222;
    font-weight: 700;
}

.artikel-wrapper .artikel-body {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #222;
}

.artikel-caption {
    text-align: center;
    color: #888;
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
}

.breadcrumb-wrapper {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    font-size: 1.05rem;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
