* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {

    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;

}


/* =========================
 navCustombarCustom
========================= */

.main-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.dropdown i {

    font-size: 11px;

}





.search {

    margin-left: 25px;

}


.search input {

    width: 135px;

    height: 36px;

    border: 1px solid #ddd;

    border-radius: 8px;

    padding: 10px;

}

.lang {

    margin-left: 10px;

}


.lang button {

    background: #194984;

    color: white;

    border: none;

    padding: 10px 18px;

    border-radius: 7px;

}


/* ==========================================================
   ARTICLE DETAIL
========================================================== */

.article-detail {
    padding: 70px 0;
    background: #f5f7fb;
}

/* ==========================================================
   BREADCRUMB
========================================================== */

.ad-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 14px;
}

.ad-breadcrumb a {
    color: #174b8a;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

.ad-breadcrumb a:hover {
    color: #0d6efd;
}

.ad-breadcrumb span {
    color: #888;
}

.ad-breadcrumb i {
    color: #999;
    font-size: 12px;
}

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

.ad-category {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #174b8a;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.ad-title {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
}

.ad-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    color: #777;
    font-size: 14px;
}

.ad-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ad-meta i {
    color: #174b8a;
}

.ad-cover {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

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

.ad-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
}

.ad-content h2 {
    margin: 35px 0 18px;
    color: #174b8a;
    font-size: 28px;
    font-weight: 700;
}

.ad-content p {
    font-size: 17px;
    line-height: 2;
    color: #444;
    margin-bottom: 22px;
    text-align: justify;
}

.ad-content img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

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

.ad-content blockquote {
    margin: 35px 0;
    padding: 30px;
    border-left: 5px solid #174b8a;
    background: #eef6ff;
    border-radius: 15px;
    color: #174b8a;
    font-size: 21px;
    line-height: 1.8;
    font-style: italic;
    font-weight: 600;
}

/* ==========================================================
   TAGS
========================================================== */

.ad-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.ad-tags a {
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 30px;
    background: #fff;
    color: #174b8a;
    border: 1px solid #dfe6ee;
    transition: .3s;
    font-size: 14px;
    font-weight: 600;
}

.ad-tags a:hover {
    background: #174b8a;
    color: #fff;
}

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

.ad-share {
    margin-top: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.ad-share span {
    font-weight: 700;
    color: #333;
}

.ad-share a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #174b8a;
    color: #fff;
    transition: .3s;
}

.ad-share a:hover {
    transform: translateY(-4px);
    background: #0d6efd;
}

/* ==========================================================
   SIDEBAR
========================================================== */

.ad-widget {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .05);
}

.ad-widget h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #174b8a;
    font-weight: 700;
}

/* ==========================================================
   SEARCH
========================================================== */

.ad-search {
    display: flex;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.ad-search input {
    width: 100%;
    border: none;
    padding: 12px 15px;
    outline: none;
}

.ad-search button {
    width: 55px;
    border: none;
    background: #174b8a;
    color: #fff;
    cursor: pointer;
}

/* ==========================================================
   LATEST POST
========================================================== */

.ad-post {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    text-decoration: none;
    transition: .3s;
}

.ad-post:last-child {
    margin-bottom: 0;
}

.ad-post:hover {
    transform: translateX(5px);
}

.ad-post img {
    width: 95px;
    height: 75px;
    object-fit: cover;
    border-radius: 10px;
}

.ad-post h5 {
    font-size: 15px;
    line-height: 1.5;
    color: #222;
    margin-bottom: 6px;
}

.ad-post small {
    color: #888;
}

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

.ad-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ad-category-list li {
    border-bottom: 1px solid #eee;
}

.ad-category-list li:last-child {
    border-bottom: none;
}

.ad-category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    text-decoration: none;
    color: #444;
    transition: .3s;
}

.ad-category-list a:hover {
    color: #174b8a;
    padding-left: 8px;
}

.ad-category-list span {
    background: #174b8a;
    color: #fff;
    min-width: 30px;
    text-align: center;
    padding: 3px 8px;
    border-radius: 30px;
    font-size: 12px;
}

/* ==========================================================
   RELATED
========================================================== */

.ad-related {
    margin-top: 70px;
}

.ad-related-header {
    margin-bottom: 30px;
}

.ad-related-header h2 {
    font-size: 34px;
    color: #174b8a;
    font-weight: 700;
}

.ad-related-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.ad-related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}

.ad-related-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.ad-related-body {
    padding: 22px;
}

.ad-related-body span {
    display: inline-block;
    background: #174b8a;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 12px;
}

.ad-related-body h4 {
    color: #222;
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.ad-related-body small {
    color: #888;
}

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

@media(max-width:991px) {

    .ad-title {
        font-size: 34px;
    }

    .ad-content {
        padding: 30px;
    }

    .ad-related {
        margin-top: 50px;
    }

}

@media(max-width:768px) {

    .article-detail {
        padding: 40px 0;
    }

    .ad-title {
        font-size: 28px;
    }

    .ad-content {
        padding: 22px;
    }

    .ad-content h2 {
        font-size: 24px;
    }

    .ad-content p {
        font-size: 16px;
        line-height: 1.9;
    }

    .ad-content blockquote {
        font-size: 18px;
        padding: 20px;
    }

    .ad-meta {
        gap: 12px;
        font-size: 13px;
    }

    .ad-related-header h2 {
        font-size: 28px;
    }

    .ad-related-card img {
        height: 190px;
    }

}

/* =========================================
   BERITA SAMPING
   ========================================= */

.side-news-item {
    margin-bottom: 20px;
}

.side-news-link {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.side-news-image {
    flex: 0 0 150px;
    width: 150px;
    height: 105px;
    overflow: hidden;
    border-radius: 10px;
}

.side-news-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.side-news-link:hover .side-news-image img {
    transform: scale(1.05);
}

.side-news-content {
    flex: 1;
    min-width: 0;
}

.side-news-content h4 {
    margin: 0 0 7px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.side-news-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
}

.side-news-meta i {
    margin-right: 4px;
}

.side-news-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #666;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


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

@media (max-width: 576px) {

    .side-news-link {
        gap: 12px;
    }

    .side-news-image {
        flex: 0 0 110px;
        width: 110px;
        height: 85px;
        border-radius: 8px;
    }

    .side-news-content h4 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .side-news-meta {
        font-size: 11px;
    }

    .side-news-content p {
        font-size: 12px;
    }
}