/* =========================================
   LOGO / CARD MARQUEE
========================================= */

.logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;

    /* BATAS ATAS & BAWAH 0 */
    padding: 0;

    background: #fff;
}

.logo-marquee__wrap {
    position: relative;
    width: 100%;
    overflow: hidden;

    /* BATAS ATAS & BAWAH 0 */
    padding: 0;
}


/* =========================================
   DEGRADASI PUTIH KIRI & KANAN
========================================= */

.logo-marquee__wrap::before,
.logo-marquee__wrap::after {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;

    width: 90px;

    z-index: 10;

    pointer-events: none;
}


/* KIRI */

.logo-marquee__wrap::before {
    left: 0;

    background: linear-gradient(
        to right,
        #fff 0%,
        rgba(255, 255, 255, 0.95) 20%,
        rgba(255, 255, 255, 0.65) 45%,
        rgba(255, 255, 255, 0) 100%
    );
}


/* KANAN */

.logo-marquee__wrap::after {
    right: 0;

    background: linear-gradient(
        to left,
        #fff 0%,
        rgba(255, 255, 255, 0.95) 20%,
        rgba(255, 255, 255, 0.65) 45%,
        rgba(255, 255, 255, 0) 100%
    );
}


/* =========================================
   MARQUEE GROUP
========================================= */

.logo-marquee__group {
    display: flex;
    align-items: center;

    width: max-content;

    /* JARAK ANTAR ITEM */
    gap: 24px;

    animation: logo-marquee-left 30s linear infinite;

    will-change: transform;
}

.logo-marquee__group.reverse {
    animation-name: logo-marquee-right;
}


/* =========================================
   LIST
========================================= */

.logo-marquee__list {
    display: flex;
    align-items: center;

    /* JARAK ANTAR LOGO */
    gap: 24px;

    flex-shrink: 0;
}


/* =========================================
   CARD
========================================= */

.logo-marquee__list .item {
    position: relative;

    width: 300px;
    height: 170px;

    /* margin DIHILANGKAN */
    margin: 0;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 20px;

    background: #ddd;

    display: block;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.08);

    cursor: pointer;
}


/* =========================================
   GAMBAR CARD
========================================= */

.logo-marquee__list .item img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


/* =========================================
   OVERLAY GRADIENT CARD
========================================= */

.logo-marquee__list .item::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 55%;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0)
    );

    z-index: 1;

    pointer-events: none;
}


/* =========================================
   JUDUL CARD
========================================= */

.logo-marquee__list .item .card-title {
    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 12px;

    z-index: 2;

    color: #fff;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.15;

    text-align: center;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5);

    margin: 0;
}


/* =========================================
   HOVER
========================================= */

.logo-marquee__list .item:hover img {
    transform: scale(1.08);
}


/* =========================================
   ANIMASI
========================================= */

@keyframes logo-marquee-left {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

@keyframes logo-marquee-right {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}


/* =========================================
   PAUSE SAAT HOVER
========================================= */

.logo-marquee:hover .logo-marquee__group {
    animation-play-state: paused;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .logo-marquee {
        padding: 0;
    }

    .logo-marquee__wrap {
        padding: 0;
    }


    /* GRADASI MOBILE LEBIH KECIL */

    .logo-marquee__wrap::before,
    .logo-marquee__wrap::after {
        width: 55px;
    }


    .logo-marquee__group {
        gap: 16px;

        animation-duration: 22s;
    }


    .logo-marquee__list {
        gap: 16px;
    }


    .logo-marquee__list .item {
        width: 220px;
        height: 125px;

        margin: 0;

        border-radius: 16px;
    }


    .logo-marquee__list .item .card-title {
        font-size: 16px;
        bottom: 9px;
    }

}

.mySwiper {
    width: 100%;
    padding: 30px 0 50px;
}

.mySwiper swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mySwiper swiper-slide img {
    display: block;

    width: 100%;
    height: 280px;

    object-fit: cover;

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12);
}


/* Mobile */

@media (max-width: 767.98px) {

    .mySwiper {
        padding: 20px 0 45px;
    }

    .mySwiper swiper-slide img {
        height: 220px;
        border-radius: 15px;
    }

}

/* =========================================
   FEATURE POST
========================================= */

.feature-post .card {
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


/* =========================================
   GAMBAR UTAMA
========================================= */

.feature-post .card > img {
    display: block;

    width: 100%;
    height: 300px;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* =========================================
   HOVER GAMBAR
========================================= */

.feature-post:hover .card > img {
    transform: scale(1.04);
}


/* =========================================
   HOVER CARD
========================================= */

.feature-post:hover .card {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15) !important;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .feature-post .card > img {
        height: 200px;
    }

}

/* =========================================
   VOICES OF TRUST
========================================= */

.voices-trust {
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    background: #f7f8f3;
}


/* =========================================
   HEADER
========================================= */

.voices-trust__header {
    text-align: center;
    margin-bottom: 55px;
}

.voices-trust__eyebrow {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.voices-trust__title {
    margin: 0;
    font-size: clamp(45px, 6vw, 72px);
    line-height: 1;
}

.voices-trust__subtitle {
    max-width: 600px;
    margin: 20px auto 0;
    color: #777;
    line-height: 1.7;
}


/* =========================================
   VIEWPORT
========================================= */

.voices-trust__viewport {
    width: 100%;
    overflow: hidden;
}


/* =========================================
   SLIDER
========================================= */

.voices-trust__slider {
    display: flex;
    gap: 25px;

    transform: translateX(0);

    transition: transform .6s cubic-bezier(.4, 0, .2, 1);

    will-change: transform;
}


/* =========================================
   CARD
========================================= */

.voices-trust__card {

    flex: 0 0 calc(
        (100% - 50px) / 3
    );

    min-height: 350px;

    padding: 38px;

    box-sizing: border-box;

    background: #fff;

    border-radius: 24px;

    border: 1px solid rgba(0, 0, 0, .06);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.voices-trust__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}


/* =========================================
   QUOTE
========================================= */

.voices-trust__quote {

    font-family: Georgia, serif;

    font-size: 75px;

    line-height: .6;

    margin-bottom: 25px;

    opacity: .15;
}


/* =========================================
   CONTENT
========================================= */

.voices-trust__content p {

    margin: 0;

    font-size: 16px;

    line-height: 1.8;

    color: #555;
}


/* =========================================
   AUTHOR
========================================= */

.voices-trust__author {

    margin-top: 30px;
}

.voices-trust__author strong {

    display: block;

    font-size: 15px;
}

.voices-trust__author span {

    display: block;

    margin-top: 4px;

    font-size: 13px;

    color: #888;
}


/* =========================================
   NAVIGATION
========================================= */

.voices-trust__navigation {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    margin-top: 40px;
}


/* BUTTON */

.voices-trust__prev,
.voices-trust__next {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    border: 1px solid #ddd;

    background: #fff;

    cursor: pointer;

    font-size: 20px;

    transition: .3s;
}

.voices-trust__prev:hover,
.voices-trust__next:hover {

    transform: scale(1.08);
}


/* =========================================
   DOT
========================================= */

.voices-trust__dots {

    display: flex;

    align-items: center;

    gap: 8px;
}

.voices-trust__dot {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #ccc;

    cursor: pointer;

    transition: .3s;
}

.voices-trust__dot.active {

    width: 25px;

    border-radius: 10px;

    background: #111;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .voices-trust__card {

        flex: 0 0 calc(
            (100% - 25px) / 2
        );

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .voices-trust {

        padding: 70px 0;

    }

    .voices-trust__card {

        flex: 0 0 100%;

        padding: 28px;

    }

}

/* =========================================
   INSTAGRAM FEEDER
========================================= */

.ig-feeder {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}


/* HEADER */

.ig-feeder__header {
    text-align: center;
    margin-bottom: 35px;
}

.ig-feeder__eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.ig-feeder__title {
    margin: 0;
    font-size: 42px;
    font-weight: 800;
}

.ig-feeder__subtitle {
    margin: 10px 0 0;
    color: #777;
}


/* =========================================
   SLIDER
========================================= */

.ig-feeder__slider {
    width: 100%;
    overflow: hidden;
}

.ig-feeder__track {
    display: flex;
    gap: 20px;
    width: max-content;

    animation: igSlide 25s linear infinite;
}

.ig-feeder__track:hover {
    animation-play-state: paused;
}


/* =========================================
   CARD
========================================= */

.ig-card {
    position: relative;

    display: block;

    width: 280px;
    height: 280px;

    flex: 0 0 280px;

    overflow: hidden;

    border-radius: 12px;

    background: #eee;

    text-decoration: none;
}


.ig-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .5s ease;
}


.ig-card:hover img {
    transform: scale(1.08);
}


/* =========================================
   OVERLAY
========================================= */

.ig-card__overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,.25);

    opacity: 0;

    transition: .3s ease;
}

.ig-card__overlay i {
    color: #fff;
    font-size: 38px;
}

.ig-card:hover .ig-card__overlay {
    opacity: 1;
}


/* =========================================
   BUTTON
========================================= */

.ig-feeder__action {
    text-align: center;
    margin-top: 35px;
}

.btn-instagram {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 12px 22px;

    border-radius: 30px;

    text-decoration: none;

    font-weight: 700;
}


/* =========================================
   MARQUEE
========================================= */

@keyframes igSlide {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .ig-feeder {
        padding: 60px 0;
    }

    .ig-feeder__title {
        font-size: 32px;
    }

    .ig-card {
        width: 220px;
        height: 220px;
        flex-basis: 220px;
    }

}

/* =========================================
   SCROLL TO TOP
========================================= */

.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: #111;
    color: #fff;

    font-size: 20px;
    line-height: 1;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;

    z-index: 9999;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* MUNCUL */
.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* HOVER */
.scroll-top:hover {
    background: #333;
    transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 767px) {

    .scroll-top {
        right: 15px;
        bottom: 15px;

        width: 42px;
        height: 42px;

        font-size: 18px;
    }

}

/* =========================================
   SOCIAL MEDIA
========================================= */

.social-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    font-size: 17px;
    line-height: 1;

    transition: all .3s ease;
}

/* =========================================
   WARNA SOCIAL MEDIA
========================================= */

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(
        45deg,
        #feda75,
        #fa7e1e,
        #d62976,
        #962fbf,
        #4f5bd5
    );
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon.tiktok {
    background: #000;
}

/* =========================================
   HOVER
========================================= */

.social-icon:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, .18);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {
    .social-bar {
        gap: 7px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 15px;
    }
}

/* =====================================================
   MAIN NAVBAR
===================================================== */

.main-navbar {
    width: 100%;
    background: #fff;

    position: sticky;
    top: 0;

    z-index: 9999;

    border-bottom: 1px solid #eee;
}


/* =====================================================
   WRAPPER
===================================================== */

.navbar-wrapper {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =====================================================
   LOGO
===================================================== */

.navbar-logo {
    display: inline-flex;
    align-items: center;

    text-decoration: none;

    flex-shrink: 0;
}

.navbar-logo img {
    display: block;

    max-width: 180px;
    max-height: 58px;

    width: auto;
    height: auto;

    object-fit: contain;
}


/* =====================================================
   MENU
===================================================== */

.navbar-menu {
    margin-left: auto;
}


/* =====================================================
   MAIN MENU
===================================================== */

.main-menu {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    list-style: none;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 28px 15px;

    color: #222;

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    transition: all .25s ease;
}

.main-menu > li > a:hover {
    color: #0d6efd;
}


/* =====================================================
   DROPDOWN
===================================================== */

.main-menu .submenu {
    position: absolute;

    top: calc(100% - 5px);
    left: 0;

    min-width: 220px;

    margin: 0;
    padding: 8px 0;

    list-style: none;

    background: #fff;

    border-radius: 8px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;
}


/* SHOW DROPDOWN */

.main-menu li:hover > .submenu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* =====================================================
   DROPDOWN LINK
===================================================== */

.main-menu .submenu li {
    position: relative;
}

.main-menu .submenu li > a {
    display: flex;
    align-items: center;

    width: 100%;

    padding: 10px 18px;

    color: #333;

    text-decoration: none;

    white-space: nowrap;

    transition: all .2s ease;
}

.main-menu .submenu li:hover > a {
    color: #0d6efd;
    background: #f7f8fa;
}


/* =====================================================
   LEVEL 3+
===================================================== */

.main-menu .submenu .submenu {
    top: 0;
    left: 100%;

    transform: translateX(10px);
}

.main-menu .submenu li:hover > .submenu {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}


/* =====================================================
   ARROW
===================================================== */

.menu-arrow {
    width: 7px;
    height: 7px;

    margin-left: 4px;

    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;

    transform: rotate(45deg);
}

.submenu .menu-arrow {
    margin-left: auto;

    transform: rotate(-45deg);
}


/* =====================================================
   MOBILE BUTTON
===================================================== */

.navbar-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 9px;

    border: 0;
    border-radius: 6px;

    background: transparent;

    cursor: pointer;
}

.navbar-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: #222;

    transition: all .25s ease;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991px) {

    .navbar-wrapper {
        min-height: 70px;
    }


    /* LOGO */

    .navbar-logo img {
        max-width: 150px;
        max-height: 50px;
    }


    /* TOGGLE */

    .navbar-toggle {
        display: block;
    }


    /* MENU */

    .navbar-menu {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        margin: 0;

        background: #fff;

        border-top: 1px solid #eee;

        box-shadow:
            0 10px 25px rgba(0, 0, 0, .08);

        display: none;
    }


    /* MENU OPEN */

    .navbar-menu.is-open {
        display: block;
    }


    /* MAIN MENU */

    .main-menu {
        display: block;

        width: 100%;
    }


    .main-menu > li {
        width: 100%;

        border-bottom: 1px solid #f1f1f1;
    }


    .main-menu > li > a {
        padding: 14px 20px;
    }


    /* =================================================
       MOBILE DROPDOWN
    ================================================= */

    .main-menu .submenu {
        position: static;

        display: none;

        width: 100%;

        padding: 0;

        opacity: 1;
        visibility: visible;

        transform: none;

        border-radius: 0;

        box-shadow: none;

        background: #f8f9fa;
    }


    .main-menu li.open > .submenu {
        display: block;
    }


    .main-menu .submenu li > a {
        padding: 12px 30px;
    }


    .main-menu .submenu .submenu {
        position: static;

        display: none;

        transform: none;
    }


    .main-menu .submenu li.open > .submenu {
        display: block;
    }


    /* ARROW */

    .main-menu > li.has-dropdown > a .menu-arrow {
        margin-left: auto;
    }


    /* =================================================
       HAMBURGER ACTIVE
    ================================================= */

    .navbar-toggle.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navbar-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

.btn-rounded {
    border-radius: 10px !important;
}

/* =====================================================
   PAGE SECTION HEADER
===================================================== */

.page-section {
    width: 100%;
    padding: 60px 0 35px;
    margin-top: 80px;
}


/* =====================================================
   HEADER
===================================================== */

.page-section__header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}


/* =====================================================
   EYEBROW
===================================================== */

.page-section__eyebrow {
    display: inline-block;

    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;

    color: #0d6efd;
}


/* =====================================================
   TITLE
===================================================== */

.page-section__title {
    margin: 0;

    font-size: 36px;
    line-height: 1.2;

    font-weight: 700;

    color: #222;
}


/* =====================================================
   SUBTITLE
===================================================== */

.page-section__subtitle {
    margin: 12px auto 0;

    max-width: 700px;

    font-size: 16px;
    line-height: 1.7;

    color: #6c757d;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .page-section {
        padding: 40px 0 25px;
    }

    .page-section__title {
        font-size: 28px;
    }

    .page-section__subtitle {
        font-size: 15px;
    }

}

/* =========================================
   SPACER
========================================= */

.spacer {
    width: 100%;
    height: 40px;
    display: block;
    clear: both;
}

/* Ukuran */
.spacer-xs {
    height: 10px;
}

.spacer-sm {
    height: 20px;
}

.spacer-md {
    height: 40px;
}

.spacer-lg {
    height: 70px;
}

.spacer-xl {
    height: 100px;
}

/* Mobile */
@media (max-width: 767px) {

    .spacer {
        height: 25px;
    }

    .spacer-xs {
        height: 8px;
    }

    .spacer-sm {
        height: 15px;
    }

    .spacer-md {
        height: 25px;
    }

    .spacer-lg {
        height: 40px;
    }

    .spacer-xl {
        height: 60px;
    }

}

.news-detail-section {
    width: 100%;
    padding: 25px 25px 60px;
    background: #fff;
}

.news-detail {
    width: 100%;
}


/* ========================================
   UNIT
======================================== */

.news-unit {
    margin-bottom: 8px;
    color: #111;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 400;
}


/* ========================================
   TITLE
======================================== */

.news-title {
    margin: 0 0 40px;
    color: #2693f5;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}


/* ========================================
   AUTHOR
======================================== */

.news-meta {
    margin-bottom: 30px;
}

.news-author {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* AVATAR BENAR-BENAR BULAT */

.news-author-avatar {
    width: 55px;
    height: 55px;

    /* jangan berubah ukuran */
    min-width: 55px;
    max-width: 55px;

    /* lingkaran sempurna */
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #a526bd;
    color: #fff;

    font-size: 24px;
    font-weight: 700;
    line-height: 1;

    text-align: center;
}


/* AUTHOR INFO */

.news-author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;

    color: #111;
    font-size: 16px;
    line-height: 1.4;
}

.news-author-info strong {
    font-weight: 700;
}

.news-author-info span {
    color: #222;
}


/* ========================================
   FEATURED IMAGE
======================================== */

.news-featured-image {
    width: 100%;

    /* full lebar content */
    margin: 30px 0 35px;

    overflow: hidden;

    /* rounded */
    border-radius: 15px;
}

.news-featured-image img {
    display: block;

    width: 100%;

    /* memenuhi lebar */
    max-width: 100%;

    height: auto;

    /* rounded mengikuti container */
    border-radius: 15px;

    object-fit: cover;
}


/* ========================================
   CONTENT
======================================== */

.news-content {
    width: 100%;

    color: #333;

    font-size: 17px;
    line-height: 1.8;

    /* RATA KIRI DAN KANAN */
    text-align: justify;
}

/* paragraf */

.news-content p {
    margin-top: 0;
    margin-bottom: 20px;

    text-align: justify;
}


/* heading */

.news-content h2,
.news-content h3,
.news-content h4 {
    text-align: left;
}


/* gambar di dalam artikel */

.news-content img {
    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;

    margin: 25px 0;

    border-radius: 12px;
}


/* ========================================
   SHARE
======================================== */

.news-share {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 40px;
    padding-top: 25px;

    border-top: 1px solid #eee;
}

.news-share a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    transition: .3s;
}

.news-share a:hover {
    transform: translateY(-3px);
}

.share-instagram {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        45deg,
        #feda75,
        #fa7e1e,
        #d62976,
        #962fbf,
        #4f5bd5
    );

    color: #fff;
    text-decoration: none;

    font-size: 20px;

    transition: all .3s ease;
}

.share-instagram:hover {
    transform: translateY(-3px) scale(1.05);
    color: #fff;
}

.share-copy {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #6466f3;
    color: #555;

    font-size: 20px;
    text-decoration: none;

    border: 1px solid #ddd;

    transition: all .3s ease;
}

.share-copy:hover {
    background: #2693f5;
    color: #fff;
    border-color: #2693f5;
    transform: translateY(-3px);
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #111;
}

.share-whatsapp {
    background: #25d366;
}


/* ========================================
   TABLE / CONTENT LAIN
======================================== */

.news-content table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
}

.news-content blockquote {
    margin: 25px 0;
    padding: 15px 20px;
    border-left: 4px solid #2693f5;
    background: #f7f7f7;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    .news-detail-section {
        padding: 20px 15px 50px;
    }

    .news-unit {
        font-size: 26px;
    }

    .news-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .news-author-avatar {
        width: 50px;
        height: 50px;
        min-width: 50px;
        max-width: 50px;

        font-size: 21px;
    }

    .news-author-info {
        font-size: 15px;
    }

    .news-content {
        font-size: 16px;
        line-height: 1.75;
        text-align: justify;
    }

    .news-content p {
        text-align: justify;
    }

    .news-featured-image {
        margin-top: 25px;
        border-radius: 12px;
    }

    .news-featured-image img {
        border-radius: 12px;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .news-detail-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .news-unit {
        font-size: 23px;
    }

    .news-title {
        font-size: 25px;
    }

    .news-author-avatar {
        width: 48px;
        height: 48px;
        min-width: 48px;
        max-width: 48px;

        font-size: 19px;
    }

    .news-author-info {
        font-size: 14px;
    }

}

/* ========================================
   PAGE SECTION
======================================== */
.page-section.bg-primary {
    position: relative;
    overflow: hidden;

    /* tinggi dikurangi lagi 30px */
    min-height: 200px;

    padding: 40px 0 35px !important;

    /* BLUE ISLAMIC */
    background-color: #0756a5;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Crect width='240' height='240' fill='%230756a5'/%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.16' stroke-width='1.6'%3E%3Cpath d='M120 0L240 120L120 240L0 120Z'/%3E%3Cpath d='M120 30L210 120L120 210L30 120Z'/%3E%3Cpath d='M120 60L180 120L120 180L60 120Z'/%3E%3Cpath d='M0 60L60 0L120 60L60 120Z'/%3E%3Cpath d='M120 60L180 0L240 60L180 120Z'/%3E%3Cpath d='M0 180L60 120L120 180L60 240Z'/%3E%3Cpath d='M120 180L180 120L240 180L180 240Z'/%3E%3Cpath d='M120 55L137 103L185 120L137 137L120 185L103 137L55 120L103 103Z'/%3E%3Cpath d='M120 72L132 108L168 120L132 132L120 168L108 132L72 120L108 108Z'/%3E%3Cpath d='M120 90L150 90L170 110L170 130L150 150L120 150L90 150L70 130L70 110L90 90Z'/%3E%3Ccircle cx='120' cy='120' r='9'/%3E%3Cpath d='M0 0L240 240M240 0L0 240'/%3E%3C/g%3E%3C/svg%3E");

    background-repeat: repeat;
    background-size: 240px 240px;

    isolation: isolate;
}


/* GRADIENT BIRU */
.page-section.bg-primary::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            rgba(34, 118, 236, 0.94) 0%,
            rgba(13, 105, 204, 0.82) 45%,
            rgba(34, 163, 238, 0.68) 100%
        );

    z-index: -1;
}


/* ORNAMEN BESAR */
.page-section.bg-primary::after {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -190px;
    top: 50%;

    transform:
        translateY(-50%)
        rotate(22.5deg);

    border: 2px solid rgba(255,255,255,.14);

    background:
        repeating-conic-gradient(
            from 0deg,
            transparent 0deg 22deg,
            rgba(255,255,255,.045) 22deg 24deg
        );

    box-shadow:
        0 0 0 18px rgba(255,255,255,.035),
        0 0 0 36px rgba(255,255,255,.025),
        0 0 0 54px rgba(255,255,255,.018);

    z-index: -1;
}


/* CONTENT */
.page-section.bg-primary .container {
    position: relative;
    z-index: 3;
}


.page-section__header {
    position: relative;
    max-width: 850px;
}


.page-section__header h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;

    line-height: 1.15;

    text-shadow:
        0 2px 8px rgba(0,0,0,.22);
}


/* GARIS JUDUL */
.page-section__header h2::after {
    content: "";

    display: block;

    width: 95px;
    height: 5px;

    margin: 18px auto 0;

    background:
        linear-gradient(
            90deg,
            #fff 0 65%,
            transparent 65% 72%,
            #fff 72% 100%
        );

    border-radius: 20px;
}


.page-section__header p {
    max-width: 700px;

    margin: 18px 0 0;

    color: rgba(255,255,255,.92);

    font-size: 17px;
    line-height: 1.7;
}


/* MOBILE */
@media (max-width: 768px) {

    .page-section.bg-primary {
        min-height: 160px;
        padding: 30px 20px 25px !important;

        background-size: 145px 145px;
    }

    .page-section.bg-primary::after {
        width: 280px;
        height: 280px;

        right: -170px;
    }

    .page-section__header h2 {
        font-size: 32px;
    }

    .page-section__header p {
        font-size: 15px;
    }
}
.youtube-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 14px;
    background: #000;
    cursor: pointer;
}

.youtube-player img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .3s ease;
}

.youtube-player:hover img {
    transform: scale(1.03);
}

.youtube-play {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 72px;
    height: 50px;

    border: 0;
    border-radius: 12px;

    background: #ff0000;
    color: #fff;

    font-size: 25px;
    line-height: 1;

    cursor: pointer;

    box-shadow: 0 4px 15px rgba(0,0,0,.3);

    transition:
        transform .2s ease,
        background .2s ease;
}

.youtube-player:hover .youtube-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: #d90000;
}

.icon-circle {
    width: 70px;
    height: 70px;
    min-width: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
}

.icon-circle i {
    font-size: 34px;
}

/* =========================================================
   SAMBUTAN KEPALA SEKOLAH
========================================================= */

.welcome-section {
    position: relative;
    padding: 80px 0;
    background: #f8fafc;
    overflow: hidden;
}

.welcome-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    align-items: center;
    gap: 70px;
}

/* ================================
   WELCOME PHOTO - MODERN STYLE
================================ */

.welcome-photo {
    position: relative;
    padding: 15px;
}

/* Decorative dot pattern */
.welcome-photo::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    left: -5px;
    bottom: -10px;

    background-image: radial-gradient(
        circle,
        rgba(13, 110, 253, .22) 2px,
        transparent 2.5px
    );

    background-size: 14px 14px;
    z-index: 0;
    opacity: .8;
}

/* Decorative blue shape */
.welcome-photo::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    top: -5px;
    right: -5px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        rgba(13, 110, 253, .20),
        rgba(13, 110, 253, .04)
    );

    z-index: 0;
}

/* PHOTO FRAME */
.welcome-photo-frame {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 480px;

    overflow: hidden;

    border-radius: 32px;

    background: #eaf3ff;

    border: 8px solid rgba(255, 255, 255, .9);

    box-shadow:
        0 25px 60px rgba(13, 110, 253, .14),
        0 8px 25px rgba(0, 0, 0, .08);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

/* Hover */
.welcome-photo-frame:hover {
    transform: translateY(-6px);

    box-shadow:
        0 35px 75px rgba(13, 110, 253, .20),
        0 12px 30px rgba(0, 0, 0, .10);
}

/* IMAGE */
.welcome-photo-frame img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;

    transform: scale(1.01);

    transition:
        transform .7s cubic-bezier(.2,.8,.2,1);
}

/* Image zoom */
.welcome-photo-frame:hover img {
    transform: scale(1.06);
}

/* IMAGE OVERLAY */
.welcome-photo-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 45, 100, 0) 45%,
            rgba(0, 45, 100, .05) 65%,
            rgba(0, 35, 80, .25) 100%
        );

    pointer-events: none;
}

/* Floating accent */
.welcome-photo-frame::before {
    content: "";

    position: absolute;

    width: 55px;
    height: 55px;

    right: 25px;
    top: 25px;

    border-radius: 18px;

    background: rgba(255, 255, 255, .18);

    border: 1px solid rgba(255, 255, 255, .35);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    z-index: 2;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .welcome-photo {
        padding: 10px;
    }

    .welcome-photo-frame {
        height: 420px;
        border-radius: 28px;
    }

}


@media (max-width: 767px) {

    .welcome-photo {
        padding: 5px;
    }

    .welcome-photo::before {
        width: 110px;
        height: 110px;
        left: -15px;
        bottom: -15px;

        background-size: 11px 11px;
    }

    .welcome-photo::after {
        width: 65px;
        height: 65px;
        right: -5px;
        top: -5px;
    }

    .welcome-photo-frame {
        height: 350px;
        border-radius: 24px;
        border-width: 6px;
    }

}

/* CONTENT */
.welcome-content {
    max-width: 760px;
}

.welcome-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0d6efd;
}

.welcome-content h2 {
    margin: 0;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    color: #172b4d;
}

.welcome-line {
    width: 70px;
    height: 4px;
    margin: 18px 0 25px;
    border-radius: 20px;
    background: #0d6efd;
}

.welcome-content p {
    margin-bottom: 15px;
    color: #5b6573;
    font-size: 16px;
    line-height: 1.85;
    text-align: justify;
}

.welcome-opening {
    color: #172b4d !important;
    font-weight: 700;
}

.welcome-closing {
    margin-top: 25px;
    color: #172b4d !important;
    font-weight: 600;
}

.welcome-signature {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    padding-left: 18px;
    border-left: 4px solid #0d6efd;
}

.welcome-signature strong {
    color: #172b4d;
    font-size: 18px;
}

.welcome-signature span {
    margin-top: 4px;
    color: #7b8794;
    font-size: 14px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .welcome-section {
        padding: 65px 0;
    }

    .welcome-wrapper {
        grid-template-columns: 320px 1fr;
        gap: 40px;
    }

    .welcome-photo-frame {
        height: 420px;
        border-radius: 0 60px 0 60px;
    }

    .welcome-content h2 {
        font-size: 34px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .welcome-section {
        padding: 50px 0;
    }

    .welcome-wrapper {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .welcome-photo {
        width: 85%;
        margin: 0 auto;
    }

    .welcome-photo-frame {
        height: 390px;
        border-radius: 0 50px 0 50px;
    }

    .welcome-content {
        width: 100%;
    }

    .welcome-content h2 {
        font-size: 30px;
    }

    .welcome-content p {
        font-size: 15px;
        line-height: 1.75;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .welcome-photo {
        width: 90%;
    }

    .welcome-photo-frame {
        height: 350px;
    }

    .welcome-content h2 {
        font-size: 27px;
    }

}
/* =========================================================
   PSB SECTION - WHITE
========================================================= */

.psb-section {
    position: relative;
    overflow: hidden;

    padding: 70px 20px;

    background: #fff;

    color: #1f79f0
}

.psb-pattern {
    display: none;
}

.psb-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: auto;

    text-align: center;
}


/* Badge */

.psb-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 8px 18px;

    border: 1px solid #1f79f0;
    border-radius: 50px;

    background: #1f79f0;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.psb-badge span {
    color: #d5ad3d;
}

.psb-badge:hover {
    background: #031577;

    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(7, 92, 104, .22);
}

/* Heading */

.psb-content h2 {
    margin: 20px 0 14px;

    color: #1f79f0;

    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.08;

    font-weight: 700;
    letter-spacing: -1.5px;
}

.psb-content h2 strong {
    color: #031577;
}


/* Description */

.psb-desc {
    max-width: 650px;

    margin: 0 auto;

    color: #666;

    font-size: 16px;
    line-height: 1.8;
}


/* Info */

.psb-info {
    display: flex;
    align-items: center;
    justify-content: center;

    width: fit-content;

    margin: 32px auto 28px;
    padding: 15px 25px;

    background: #fff;

    border: 1px solid #e8e8e8;
    border-radius: 16px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

.psb-info-item {
    display: flex;
    align-items: center;

    gap: 12px;

    text-align: left;
}

.psb-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eaeaea;

    color: #1f79f0;

    font-size: 19px;
}

.psb-info-item small {
    display: block;

    margin-bottom: 3px;

    color: #999;

    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.psb-info-item strong {
    display: block;

    color: #1f79f0;

    font-size: 15px;
}

.psb-divider {
    width: 1px;
    height: 40px;

    margin: 0 28px;

    background: #e5e5e5;
}


/* Buttons */

.psb-action {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 12px;
}

.btn-psb,
.btn-psb-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 50px;

    padding: 0 27px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}

.btn-psb {
    background: #1f79f0;

    color: #fff;

    box-shadow: 0 8px 20px rgba(7, 92, 104, .18);
}

.btn-psb:hover {
    background: #031577;

    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(7, 92, 104, .22);
}

.btn-psb i {
    transition: transform .3s ease;
}

.btn-psb:hover i {
    transform: translateX(4px);
}


.btn-psb-outline {
    color: #1f79f0;

    border: 1px solid #d8d8d8;

    background: #fff;
}

.btn-psb-outline:hover {
    border-color: #031577;

    background: #fff;

    color: #031577;

    transform: translateY(-2px);
}


/* Hilangkan dekorasi */

.psb-decoration {
    display: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .psb-section {
        padding: 55px 18px;
    }

    .psb-badge {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .psb-content h2 {
        font-size: 40px;
    }

    .psb-desc {
        font-size: 15px;
    }

    .psb-info {
        width: 100%;

        flex-direction: column;

        gap: 15px;

        padding: 18px;
    }

    .psb-divider {
        width: 100%;
        height: 1px;

        margin: 0;

        background: #e5e5e5;
    }

    .psb-info-item {
        width: 100%;
    }

    .psb-action {
        flex-direction: column;
    }

    .btn-psb,
    .btn-psb-outline {
        width: 100%;
    }
}
.psb-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;

    width: 100%;
    margin: 30px auto;
    text-align: center;
}

.psb-counter-item {
    width: 105px;
    height: 105px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    background: #0d6efd;
    border-radius: 20px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);

    position: relative;
}

.psb-counter-item strong {
    display: block;

    font-size: 38px;
    line-height: 1;

    font-weight: 800;

    color: #fff;

    text-align: center;
}

.psb-counter-item span {
    display: block;

    margin-top: 8px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #fff;

    text-align: center;
}

/* titik dua */
.psb-counter-item:not(:last-child)::after {
    content: ":";

    position: absolute;

    right: -15px;
    top: 50%;

    transform: translateY(-60%);

    font-size: 28px;
    font-weight: 800;

    color: #0d6efd;
}


/* MOBILE */
@media (max-width: 576px) {

    .psb-counter {
        gap: 10px;
    }

    .psb-counter-item {
        width: 72px;
        height: 78px;

        border-radius: 14px;
    }

    .psb-counter-item strong {
        font-size: 27px;
    }

    .psb-counter-item span {
        font-size: 8px;
        letter-spacing: .7px;
    }

    .psb-counter-item:not(:last-child)::after {
        right: -9px;
        font-size: 20px;
    }
}

/* =========================================
   JENJANG POST
========================================= */

.jenjang-post .card {
    position: relative;
    overflow: hidden;

    height: 300px;

    border: 0;
    border-radius: 25px;

    background: #0b4168;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


/* =========================================
   GAMBAR
========================================= */

.jenjang-post .card > img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}


/* =========================================
   GRADIENT BAWAH
========================================= */

.jenjang-post .card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 35%,
            rgba(0, 45, 80, .15) 50%,
            rgba(0, 45, 80, .90) 100%
        );

    z-index: 1;

    pointer-events: none;

    transition: .4s ease;
}


/* =========================================
   TITLE DI ATAS GAMBAR
========================================= */

.jenjang-post .card .card-body {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 25px 20px;

    color: #fff;

    font-size: 20px;
    font-weight: 700;

    text-align: center;

    background: transparent;
}


/* =========================================
   HOVER IMAGE
========================================= */

.jenjang-post:hover .card > img {
    transform: scale(1.07);
}


/* =========================================
   HOVER CARD
========================================= */

.jenjang-post:hover .card {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(0, 50, 90, .22) !important;
}


/* =========================================
   HOVER GRADIENT
========================================= */

.jenjang-post:hover .card::after {
    background:
        linear-gradient(
            to bottom,
            rgba(0, 70, 120, .05) 25%,
            rgba(0, 45, 80, .35) 50%,
            rgba(0, 25, 50, .95) 100%
        );
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .jenjang-post .card {
        height: 240px;
        border-radius: 20px;
    }

    .jenjang-post .card .card-body {
        padding: 18px 15px;

        font-size: 17px;
    }

}

/* =========================================
   PSB STICKY MENU
========================================= */

.psb-sticky-menu {
    position: sticky;
    top: 70px;
    z-index: 1030;

    background: rgba(255,255,255,.97);

    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);

    backdrop-filter: blur(8px);
}


/* CONTAINER */

.psb-sticky-menu .container {
    padding-top: 10px;
    padding-bottom: 10px;
}


/* MENU */

.psb-menu-scroll {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    overflow-x: auto;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.psb-menu-scroll::-webkit-scrollbar {
    display: none;
}


/* ITEM */

.psb-menu-item {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 9px 18px;

    border-radius: 8px;

    background: #f5f7fa;

    color: #333;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background-color .2s ease,
        color .2s ease,
        transform .2s ease;
}


/* HOVER */

.psb-menu-item:hover {
    background: #0d6efd;
    color: #fff;

    transform: translateY(-1px);
}


/* ACTIVE */

.psb-menu-item.active {
    background: #0d6efd;
    color: #fff;
}


/* =========================================
   CONTENT
========================================= */

.news-detail-section {
    padding-top: 35px;
}


/*
 * Agar ketika klik anchor:
 * konten tidak tertutup sticky menu
 */

#petunjuk,
#persyaratan,
#accordionKebijakan,
#biaya,
#agenda {
    scroll-margin-top: 140px;
}
@media (max-width: 767.98px) {

    .psb-sticky-menu .container {
        padding-left: 12px;
        padding-right: 12px;

        padding-top: 8px;
        padding-bottom: 8px;
    }

    .psb-menu-scroll {
        justify-content: flex-start;

        gap: 6px;
    }

    .psb-menu-item {
        min-height: 38px;

        padding: 8px 14px;

        font-size: 13px;

        border-radius: 7px;
    }

    .news-detail-section {
        padding-top: 25px;
    }

    #persyaratan,
    #accordionKebijakan,
    #biaya,
    #agenda {
        scroll-margin-top: 130px;
    }
}
.psb-menu-item {
    transition: all .25s ease;
}

.psb-menu-item.active {
    background: #0d6efd;
    color: #fff;
    box-shadow: 0 3px 8px rgba(13, 110, 253, .20);
}

