/* ==========================================================
   ROOT
========================================================== */

:root{

    --primary:#2563EB;
    --primary-dark:#1D4ED8;

    --dark:#0F172A;
    --text:#475569;
    --border:#E2E8F0;

    --background:#F8FAFC;
    --white:#FFFFFF;

    --radius:18px;

    --shadow:0 10px 30px rgba(15,23,42,.08);

    --transition:.3s ease;

}

/* ==========================================================
   RESET
========================================================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--background);
    color:var(--text);
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    list-style:none;
    margin:0;
    padding:0;

}

/* ==========================================================
   SECTION
========================================================== */

section{

    padding:90px 0;

}

.section-title{

    margin-bottom:50px;
    text-align:center;

}

.section-title h2{

    font-size:38px;
    font-weight:700;
    color:var(--dark);
    margin-bottom:12px;

}

.section-title p{

    max-width:650px;
    margin:auto;
    color:#64748B;

}

/* ==========================================================
   BUTTON
========================================================== */

.btn-primary-custom{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:50px;

    padding:0 28px;

    background:var(--primary);

    color:#fff;

    border-radius:12px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary-custom:hover{

    background:var(--primary-dark);

    color:#fff;

    transform:translateY(-2px);

}

.btn-outline-custom{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:50px;

    padding:0 28px;

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:12px;

    font-weight:600;

}

.btn-outline-custom:hover{

    background:var(--primary);

    color:#fff;

}

/* ==========================================================
   CARD
========================================================== */

.card-custom{

    background:#fff;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:var(--transition);

    overflow:hidden;

}

.card-custom:hover{

    transform:translateY(-6px);

}

/* ==========================================================
   NAVBAR
========================================================== */

.navbar-custom{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    padding:18px 0;

    transition:.35s ease;

}

.navbar-custom.scrolled{

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(16px);

    box-shadow:0 10px 25px rgba(15,23,42,.08);

}

.navbar-brand{

    display:flex;

    align-items:center;

    gap:14px;

}

.navbar-brand img{

    width:52px;

}

.brand-text h5{

    margin:0;

    font-size:18px;

    font-weight:700;

    color:#fff;

}

.brand-text span{

    font-size:13px;

    color:rgba(255,255,255,.85);

}

.navbar-custom.scrolled .brand-text h5{

    color:var(--dark);

}

.navbar-custom.scrolled .brand-text span{

    color:#64748B;

}

.nav-link{

    color:#fff;

    font-weight:500;

    margin-left:18px;

    position:relative;

}

.nav-link:hover{

    color:#fff;

}

.nav-link.active{

    font-weight:600;

}

.navbar-custom.scrolled .nav-link{

    color:var(--dark);

}

.navbar-toggler{

    border:none;

    box-shadow:none;

    color:#fff;

}

.navbar-custom.scrolled .navbar-toggler{

    color:var(--dark);

}

/* ==========================================================
   FOOTER
========================================================== */

.footer{

    background:#0F172A;

    color:#CBD5E1;

    padding:70px 0 25px;

}

.footer-brand{

    display:flex;

    gap:18px;

}

.footer-brand img{

    width:60px;

    height:60px;

}

.footer h4,
.footer h5{

    color:#fff;

    margin-bottom:18px;

}

.footer p{

    line-height:1.8;

}

.footer-menu li{

    margin-bottom:12px;

}

.footer-menu a{

    color:#CBD5E1;

}

.footer-menu a:hover{

    color:#fff;

}

.footer-contact li{

    display:flex;

    gap:12px;

    margin-bottom:16px;

}

.footer hr{

    border-color:rgba(255,255,255,.08);

    margin:45px 0 25px;

}

.footer-bottom{

    text-align:center;

}

.footer-bottom p{

    margin:0;

    font-size:14px;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:991px){

.nav-link{

    color:var(--dark);

    margin-left:0;

    margin-top:12px;

}

.brand-text h5{

    color:var(--dark);

}

.brand-text span{

    color:#64748B;

}

.navbar-collapse{

    margin-top:20px;

    background:#fff;

    padding:20px;

    border-radius:16px;

    box-shadow:var(--shadow);

}

}

@media(max-width:768px){

section{

    padding:70px 0;

}

.section-title h2{

    font-size:30px;

}

.footer-brand{

    flex-direction:column;

}

}
/* ==========================================================
   HERO
========================================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:url("../images/hero.jpeg") center center/cover no-repeat;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(15,23,42,.82),
        rgba(15,23,42,.55),
        rgba(15,23,42,.30)
    );

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-badge{

    display:inline-block;

    padding:10px 18px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(12px);

    color:#fff;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.hero-title{

    font-size:64px;

    font-weight:700;

    color:#fff;

    line-height:1.15;

    margin-bottom:25px;

}

.hero-description{

    max-width:620px;

    color:rgba(255,255,255,.88);

    font-size:18px;

    line-height:1.9;

    margin-bottom:40px;

}

.hero-button{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero .btn-outline-custom{

    border:2px solid rgba(255,255,255,.8);

    color:#fff;

}

.hero .btn-outline-custom:hover{

    background:#fff;

    color:#2563EB;

}

@media(max-width:992px){

.hero{

    text-align:center;

}

.hero-description{

    margin:auto auto 35px;

}

.hero-button{

    justify-content:center;

}

.hero-title{

    font-size:46px;

}

}

@media(max-width:576px){

.hero-title{

    font-size:36px;

}

.hero-description{

    font-size:16px;

}

}
/* ==========================================================
   PAGE HEADER
========================================================== */

.page-header{

    position:relative;

    overflow:hidden;

    padding:180px 0 110px;

    background:url("../images/hero.jpeg") center center/cover no-repeat;

    text-align:center;

    color:#fff;

}

.page-header::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(15,23,42,.82),
        rgba(15,23,42,.68),
        rgba(15,23,42,.58)
    );

}

.page-header .container{

    position:relative;

    z-index:2;

}

.page-header h1{

    font-size:56px;

    font-weight:700;

    margin-bottom:18px;

}

.page-header p{

    font-size:20px;

    color:rgba(255,255,255,.92);

    margin:0;

}
/* ==========================
   FOOTER SOCIAL
========================== */

.footer-social{

    display:flex;

    gap:14px;

    margin-top:10px;

}

.footer-social a{

    width:48px;

    height:48px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:20px;

    transition:.3s;

}

.footer-social a:hover{

    background:#2563EB;

    color:#fff;

    transform:translateY(-4px);

}

/* ==========================================================
   PROFIL
========================================================== */

.profil-section{

    padding:90px 0;

}

.profil-logo-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    border:1px solid #E2E8F0;

    box-shadow:0 15px 40px rgba(15,23,42,.08);

    text-align:center;

    transition:.3s;

}

.profil-logo-card:hover{

    transform:translateY(-6px);

    box-shadow:0 22px 45px rgba(15,23,42,.12);

}

.profil-logo-card img{

    width:100%;

    max-width:260px;

    margin:auto;

    object-fit:contain;

}

.profil-content{

    background:#fff;

    padding:40px;

    border-radius:24px;

    border:1px solid #E2E8F0;

    box-shadow:0 15px 40px rgba(15,23,42,.08);

}

.profil-content h2{

    color:#0F172A;

    font-size:36px;

    font-weight:700;

    margin-bottom:25px;

}

.profil-content p{

    color:#475569;

    font-size:17px;

    line-height:2;

    text-align:justify;

    margin-bottom:0;

}

/* ==========================================================
   INFO CARD
========================================================== */

.info-card{

    background:#fff;

    padding:30px;

    border-radius:20px;

    border:1px solid #E2E8F0;

    box-shadow:0 10px 30px rgba(15,23,42,.06);

    height:100%;

    transition:.3s;

}

.info-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(15,23,42,.10);

}

.info-card h5{

    color:#2563EB;

    font-size:18px;

    font-weight:600;

    margin-bottom:12px;

}

.info-card p{

    color:#475569;

    margin:0;

    line-height:1.8;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:992px){

.page-header{

    padding:150px 0 90px;

}

.page-header h1{

    font-size:42px;

}

.page-header p{

    font-size:18px;

}

.profil-logo-card{

    margin-bottom:25px;

}

.profil-content{

    padding:30px;

}

.profil-content h2{

    font-size:30px;

}

}

@media(max-width:768px){

.page-header{

    padding:130px 0 80px;

}

.page-header h1{

    font-size:34px;

}

.page-header p{

    font-size:16px;

}

.profil-content{

    padding:25px;

}

.profil-content h2{

    font-size:26px;

}

.profil-content p{

    font-size:16px;

    text-align:left;

}

.info-card{

    padding:24px;

}

}
/* ==========================================================
   PEMERINTAHAN
========================================================== */

.pemerintahan-section{

    padding:90px 0;

}

/* ==========================
   LEADER CARD
========================== */

.leader-card{

    display:flex;

    align-items:center;

    gap:35px;

    background:#fff;

    border:1px solid #E2E8F0;

    border-radius:22px;

    padding:30px;

    margin-bottom:25px;

    box-shadow:0 12px 35px rgba(15,23,42,.06);

    transition:.35s;

}

.leader-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(15,23,42,.10);

}

/* ==========================
   FOTO
========================== */

.leader-photo{

    width:180px;

    min-width:180px;

    height:180px;

    border-radius:18px;

    overflow:hidden;

    background:#F8FAFC;

    border:1px solid #E2E8F0;

    display:flex;

    justify-content:center;

    align-items:center;

}

.leader-photo img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/* ==========================
   AVATAR
========================== */

.leader-avatar{

    width:120px;

    height:120px;

    border-radius:50%;

    background:#E2E8F0;

    display:flex;

    justify-content:center;

    align-items:center;

}

.leader-avatar i{

    font-size:70px;

    color:#94A3B8;

}

/* ==========================
   CONTENT
========================== */

.leader-content{

    flex:1;

}

.leader-content h3{

    font-size:30px;

    font-weight:700;

    color:#0F172A;

    margin-bottom:18px;

}

/* ==========================
   META
========================== */

.leader-meta{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.leader-position{

    padding:8px 18px;

    border-radius:30px;

    background:#DBEAFE;

    color:#2563EB;

    font-size:14px;

    font-weight:600;

}

.leader-period{

    padding:8px 18px;

    border-radius:30px;

    background:#F1F5F9;

    color:#475569;

    font-size:14px;

    font-weight:600;

}

.leader-active{

    padding:8px 18px;

    border-radius:30px;

    background:#DCFCE7;

    color:#16A34A;

    font-size:14px;

    font-weight:600;

}

/* ==========================================================
   LEMBAGA NAGARI
========================================================== */

.lembaga-card{

    background:#fff;

    border:1px solid #E2E8F0;

    border-radius:22px;

    padding:30px;

    display:flex;

    gap:20px;

    align-items:flex-start;

    height:100%;

    box-shadow:0 12px 35px rgba(15,23,42,.06);

    transition:.35s;

}

.lembaga-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(15,23,42,.10);

}

.lembaga-icon{

    width:70px;

    min-width:70px;

    height:70px;

    border-radius:18px;

    background:#2563EB;

    display:flex;

    justify-content:center;

    align-items:center;

}

.lembaga-icon i{

    color:#fff;

    font-size:30px;

}

.lembaga-content{

    flex:1;

}

.lembaga-content h4{

    color:#0F172A;

    font-size:22px;

    font-weight:700;

    margin-bottom:12px;

}

.lembaga-content p{

    color:#64748B;

    line-height:1.9;

    text-align:justify;

    margin:0;

}

/* ==========================
   EMPTY
========================== */

.alert-info{

    border:none;

    border-radius:20px;

    padding:30px;

    background:#EFF6FF;

    color:#2563EB;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:992px){

.leader-card{

    flex-direction:column;

    text-align:center;

}

.leader-photo{

    width:170px;

    min-width:170px;

    height:170px;

}

.leader-meta{

    justify-content:center;

}

.lembaga-card{

    flex-direction:column;

    align-items:center;

    text-align:center;

}

.lembaga-content p{

    text-align:center;

}

}

@media(max-width:768px){

.pemerintahan-section{

    padding:70px 0;

}

.leader-card{

    padding:25px;

}

.leader-photo{

    width:150px;

    min-width:150px;

    height:150px;

}

.leader-avatar{

    width:100px;

    height:100px;

}

.leader-avatar i{

    font-size:60px;

}

.leader-content h3{

    font-size:24px;

}

.lembaga-card{

    padding:25px;

}

.lembaga-icon{

    width:60px;

    min-width:60px;

    height:60px;

}

.lembaga-icon i{

    font-size:26px;

}

.lembaga-content h4{

    font-size:20px;

}

.lembaga-content p{

    text-align:left;

}

}
/* ==========================================================
   FASILITAS
========================================================== */

.fasilitas-section{

    padding:90px 0;

}

/* ==========================
   KATEGORI
========================== */

.facility-category{

    margin-bottom:70px;

}

.facility-category:last-child{

    margin-bottom:0;

}

.facility-title{

    display:flex;

    align-items:center;

    justify-content:space-between;

    font-size:32px;

    font-weight:700;

    color:#0F172A;

    margin-bottom:35px;

    padding-bottom:15px;

    border-bottom:3px solid #2563EB;

}

.facility-title span{

    display:flex;

    align-items:center;

    gap:12px;

}

.facility-title i{

    color:#2563EB;

    font-size:30px;

}

.facility-count{

    background:#2563EB;

    color:#fff;

    font-size:14px;

    font-weight:600;

    padding:6px 14px;

    border-radius:50px;

}

/* ==========================
   CARD
========================== */

.facility-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    border:1px solid #E2E8F0;

    box-shadow:0 12px 35px rgba(15,23,42,.06);

    transition:.35s;

    height:100%;

}

.facility-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 45px rgba(15,23,42,.12);

}

/* ==========================
   IMAGE
========================== */

.facility-image{

    width:100%;

    height:220px;

    overflow:hidden;

    background:#F8FAFC;

    position:relative;

}

.facility-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}

.facility-card:hover .facility-image img{

    transform:scale(1.08);

}

/* ==========================
   PLACEHOLDER
========================== */

.facility-placeholder{

    width:100%;

    height:220px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#F8FAFC;

}

.facility-placeholder i{

    font-size:72px;

    color:#CBD5E1;

}

/* ==========================
   BODY
========================== */

.facility-card-body{

    padding:28px;

}

.facility-card-body h4{

    font-size:22px;

    font-weight:700;

    color:#0F172A;

    margin-bottom:16px;

    line-height:1.4;

}

/* ==========================
   LOKASI
========================== */

.facility-location{

    display:flex;

    align-items:center;

    gap:10px;

    color:#2563EB;

    font-size:15px;

    font-weight:600;

    margin-bottom:18px;

}

.facility-location i{

    font-size:16px;

}

/* ==========================
   DESKRIPSI
========================== */

.facility-card-body p{

    color:#64748B;

    line-height:1.9;

    text-align:justify;

    margin:0;

}

/* ==========================
   EMPTY
========================== */

.alert-light{

    border:1px dashed #CBD5E1;

    border-radius:18px;

    background:#F8FAFC;

    color:#64748B;

    padding:35px;

    text-align:center;

    font-weight:500;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:992px){

.facility-title{

    font-size:28px;

}

.facility-image{

    height:200px;

}

}

@media(max-width:768px){

.fasilitas-section{

    padding:70px 0;

}

.facility-category{

    margin-bottom:55px;

}

.facility-title{

    font-size:24px;

    margin-bottom:25px;

    flex-direction:column;

    align-items:flex-start;

    gap:15px;

}

.facility-image{

    height:200px;

}

.facility-card-body{

    padding:22px;

}

.facility-card-body h4{

    font-size:20px;

}

.facility-card-body p{

    text-align:left;

}

}
/* ==========================================================
   PENDUDUK
========================================================== */

.penduduk-section{

    padding:90px 0;

}

/* ==========================
   POPULATION CARD
========================== */

.population-card{

    background:#fff;

    border:1px solid #E2E8F0;

    border-radius:22px;

    padding:30px;

    text-align:center;

    box-shadow:0 12px 35px rgba(15,23,42,.06);

    transition:.35s;

    height:100%;

}

.population-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(15,23,42,.10);

}

.population-card h5{

    color:#64748B;

    font-size:17px;

    font-weight:600;

    margin-bottom:18px;

}

.population-card h2{

    color:#2563EB;

    font-size:42px;

    font-weight:700;

    margin-bottom:8px;

}

.population-card span{

    color:#94A3B8;

    font-size:15px;

}

/* ==========================
   SECTION BOX
========================== */

.population-box{

    background:#fff;

    border:1px solid #E2E8F0;

    border-radius:22px;

    padding:35px;

    box-shadow:0 12px 35px rgba(15,23,42,.06);

}

.population-box h3{

    color:#0F172A;

    font-size:28px;

    font-weight:700;

    margin-bottom:25px;

    padding-bottom:15px;

    border-bottom:3px solid #2563EB;

}

/* ==========================
   TABLE
========================== */

.population-box .table{

    margin-bottom:0;

}

.population-box .table tbody tr{

    transition:.25s;

}

.population-box .table tbody tr:hover{

    background:#F8FAFC;

}

.population-box .table td{

    padding:16px 20px;

    vertical-align:middle;

    border-color:#E2E8F0;

}

.population-box .table td:first-child{

    color:#475569;

    font-weight:500;

}

.population-box .table td:last-child{

    width:170px;

    text-align:right;

    font-weight:700;

    color:#2563EB;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:992px){

.population-box{

    padding:28px;

}

.population-box h3{

    font-size:24px;

}

.population-card h2{

    font-size:36px;

}

}

@media(max-width:768px){

.penduduk-section{

    padding:70px 0;

}

.population-card{

    padding:25px;

}

.population-card h2{

    font-size:32px;

}

.population-box{

    padding:22px;

}

.population-box h3{

    font-size:22px;

}

.population-box .table td{

    padding:14px;

    font-size:14px;

}

.population-box .table td:last-child{

    width:100px;

}

}
/* ==========================================================
   BERITA
========================================================== */

.berita-section{

    padding:90px 0;

}

.news-card{

    background:#fff;

    border:1px solid #E2E8F0;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(15,23,42,.06);

    transition:.35s;

    height:100%;

}

.news-card:hover{

    transform:translateY(-6px);

    box-shadow:0 22px 45px rgba(15,23,42,.10);

}

.news-image{

    height:240px;

    overflow:hidden;

    background:#F8FAFC;

    display:flex;

    justify-content:center;

    align-items:center;

}

.news-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.35s;

}

.news-card:hover .news-image img{

    transform:scale(1.06);

}

.news-placeholder{

    width:120px;

    height:120px;

    border-radius:50%;

    background:#E2E8F0;

    display:flex;

    justify-content:center;

    align-items:center;

}

.news-placeholder i{

    font-size:55px;

    color:#94A3B8;

}

.news-body{

    padding:28px;

}

.news-date{

    color:#64748B;

    font-size:14px;

    margin-bottom:14px;

}

.news-date i{

    color:#2563EB;

    margin-right:6px;

}

.news-body h3{

    font-size:22px;

    color:#0F172A;

    font-weight:700;

    line-height:1.5;

    margin-bottom:15px;

}

.news-body p{

    color:#64748B;

    line-height:1.8;

    margin-bottom:25px;

    text-align:justify;

}

.news-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#2563EB;

    font-weight:600;

}

.news-link:hover{

    color:#1D4ED8;

}

.news-link i{

    transition:.3s;

}

.news-link:hover i{

    transform:translateX(5px);

}

/* ==========================================================
   DETAIL BERITA
========================================================== */

.berita-detail-section{

    padding:90px 0;

}

.news-detail-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid #E2E8F0;

    box-shadow:0 12px 35px rgba(15,23,42,.06);

}

.news-detail-image{

    width:100%;

    height:450px;

    object-fit:cover;

}

.news-detail-placeholder{

    height:450px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#F8FAFC;

}

.news-detail-placeholder i{

    font-size:90px;

    color:#CBD5E1;

}

.news-detail-body{

    padding:40px;

}

.news-detail-date{

    color:#64748B;

    margin-bottom:18px;

}

.news-detail-date i{

    color:#2563EB;

    margin-right:8px;

}

.news-detail-body h2{

    font-size:38px;

    color:#0F172A;

    font-weight:700;

    line-height:1.4;

    margin-bottom:30px;

}

.news-detail-content{

    color:#475569;

    line-height:2;

    text-align:justify;

}

/* ==========================================================
   SIDEBAR
========================================================== */

.news-sidebar{

    background:#fff;

    border:1px solid #E2E8F0;

    border-radius:24px;

    padding:30px;

    box-shadow:0 12px 35px rgba(15,23,42,.06);

}

.news-sidebar h4{

    color:#0F172A;

    font-size:24px;

    font-weight:700;

    margin-bottom:25px;

}

.sidebar-news{

    display:flex;

    gap:15px;

    margin-bottom:20px;

    padding-bottom:20px;

    border-bottom:1px solid #F1F5F9;

    color:inherit;

}

.sidebar-news:last-child{

    margin-bottom:0;

    padding-bottom:0;

    border:none;

}

.sidebar-news img{

    width:95px;

    height:80px;

    border-radius:14px;

    object-fit:cover;

}

.sidebar-placeholder{

    width:95px;

    height:80px;

    border-radius:14px;

    background:#E2E8F0;

    display:flex;

    justify-content:center;

    align-items:center;

}

.sidebar-placeholder i{

    color:#94A3B8;

    font-size:32px;

}

.sidebar-news h6{

    color:#0F172A;

    font-size:16px;

    font-weight:600;

    line-height:1.5;

    margin-bottom:8px;

    transition:.3s;

}

.sidebar-news:hover h6{

    color:#2563EB;

}

.sidebar-news small{

    color:#64748B;

}

/* ==========================================================
   PAGINATION
========================================================== */

.pagination{

    gap:8px;

}

.page-link{

    border-radius:10px !important;

    border:1px solid #E2E8F0;

    color:#2563EB;

    padding:10px 16px;

}

.page-item.active .page-link{

    background:#2563EB;

    border-color:#2563EB;

}

.page-link:focus{

    box-shadow:none;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:992px){

.news-detail-image,

.news-detail-placeholder{

    height:320px;

}

.news-detail-body{

    padding:30px;

}

.news-detail-body h2{

    font-size:30px;

}

.news-sidebar{

    margin-top:40px;

}

}

@media(max-width:768px){

.berita-section,

.berita-detail-section{

    padding:70px 0;

}

.news-image{

    height:220px;

}

.news-body{

    padding:22px;

}

.news-body h3{

    font-size:20px;

}

.news-detail-image,

.news-detail-placeholder{

    height:240px;

}

.news-detail-body{

    padding:22px;

}

.news-detail-body h2{

    font-size:26px;

}

.sidebar-news{

    flex-direction:column;

}

.sidebar-news img,

.sidebar-placeholder{

    width:100%;

    height:180px;

}

}
/* ==========================================================
   POTENSI
========================================================== */

.potensi-section{

    padding:90px 0;

}

/* ==========================
   CARD
========================== */

.potensi-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid #E2E8F0;

    box-shadow:0 12px 35px rgba(15,23,42,.06);

    transition:.35s;

    height:100%;

}

.potensi-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 45px rgba(15,23,42,.12);

}

/* ==========================
   IMAGE
========================== */

.potensi-image{

    width:100%;

    height:240px;

    overflow:hidden;

    background:#F8FAFC;

}

.potensi-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}

.potensi-card:hover .potensi-image img{

    transform:scale(1.08);

}

/* ==========================
   NO IMAGE
========================== */

.potensi-no-image{

    width:100%;

    height:240px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#F1F5F9;

}

.potensi-no-image i{

    font-size:70px;

    color:#94A3B8;

}

/* ==========================
   BODY
========================== */

.potensi-body{

    padding:28px;

}

.potensi-body h4{

    font-size:24px;

    font-weight:700;

    color:#0F172A;

    margin-bottom:15px;

}

/* ==========================
   LOKASI
========================== */

.potensi-location{

    display:flex;

    align-items:center;

    gap:8px;

    color:#2563EB;

    font-size:15px;

    font-weight:600;

    margin-bottom:18px;

}

.potensi-location i{

    font-size:16px;

}

/* ==========================
   DESKRIPSI
========================== */

.potensi-body p{

    color:#64748B;

    line-height:1.9;

    text-align:justify;

    margin:0;

}

/* ==========================
   SECTION TITLE
========================== */

.section-title{

    text-align:center;

    margin-bottom:40px;

}

.section-title h2{

    font-size:36px;

    font-weight:700;

    color:#0F172A;

    margin-bottom:15px;

}

.section-title h2 i{

    color:#2563EB;

    margin-right:10px;

}

.section-title p{

    color:#64748B;

    font-size:17px;

    max-width:720px;

    margin:auto;

    line-height:1.8;

}

/* ==========================
   EMPTY
========================== */

.alert-light{

    border:1px dashed #CBD5E1;

    background:#F8FAFC;

    border-radius:18px;

    padding:35px;

    text-align:center;

    color:#64748B;

    font-weight:500;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:992px){

.section-title h2{

    font-size:30px;

}

.potensi-image{

    height:220px;

}

}

@media(max-width:768px){

.potensi-section{

    padding:70px 0;

}

.section-title{

    margin-bottom:30px;

}

.section-title h2{

    font-size:26px;

}

.section-title p{

    font-size:16px;

}

.potensi-image{

    height:200px;

}

.potensi-body{

    padding:22px;

}

.potensi-body h4{

    font-size:22px;

}

.potensi-body p{

    text-align:left;

}

}