#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 6px 12px;
}

main {
    margin-top: 69px;
    min-height: 70vh;
}

.gray-gradient {
    background: radial-gradient(circle at top left, #ebebeb 30%, #cccccc 100%);
}

.gray-bottom-gradient {
    background: radial-gradient(circle at bottom, #e0e0e0 30%, #f0f0f0 70%);
}

.light-gray-gradient {
    background: radial-gradient(circle at top right, #ebebeb 100%, #efefef 30%);
}

.red-gradient {
    background: linear-gradient(135deg, #29B6F6 0%, #0D47A1 100%);
}

.red-gradient-reverse {
    background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
}

.baca-juga-container {
    border-left: 4px solid #1565C0;
    background-color: rgb(249 250 251);
    padding: 0 10px;
    padding-top: 5px;
    font-weight: 600;
    margin: 18px 0;
}

.baca-juga-container span {
    display: block;
}

.baca-juga-container a {
    padding-top: 2px;
    padding-bottom: 5px;
    display: block;
}

@media (max-width: 992px) {
    #header {
        padding: 4px 12px;
    }

    main {
        margin-top: 58px;
    }
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
}

.post-thumbnail img {
    transition: transform 0.35s ease;
}

.post-category {
    color: #1565C0;
    font-weight: 700;
    text-transform: uppercase;
}

.post-timestamp {
    color: rgb(92, 91, 91);
    font-size: 13px;
    font-weight: 400;
}

.post-content-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.post-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
}

.post-title-lg {
    font-size: 28px;
    line-height: 35px;
}

.post-description {
    font-weight: 400;
    color: rgb(92, 90, 90);
    font-size: 16px;
    line-height: 24px;
}

.post-similar-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.search-container {
    position: absolute;
    width: 100%;
    top: 0;
    /* Overflow ke atas */
    left: 0;
    /* transform: translateX(-50%); */
    background: white;
    /* padding: 10px; */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    display: none;
    /* Awalnya disembunyikan */
}

.post-similar-home {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-similar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-similar-thumbnail {
    width: 196px;
    min-width: 196px;
    aspect-ratio: 16/11;
}

.post-similar-title {
    font-weight: 400;
    color: rgb(92, 90, 90);
    font-size: 16px;
    line-height: 24px;
}

.category-post-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding-top: 8px;
}

.category-post-content-top {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
}

.category-post-content-bottom {
    margin-top: 10px;
    margin-bottom: 4px;
}

.video-section-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    padding-top: 8px;
}

@media (max-width: 576px) {
    .post-title-lg {
        font-size: 24px;
        line-height: 30px;
    }

    .post-title {
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
    }

    .post-description {
        font-size: 14px;
        line-height: 22px;
    }

    .post-content-top {
        margin-top: 10px;
        margin-bottom: 3px;
    }

    .post-category {
        font-size: 12px;
    }

    .category-post-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 18px;
    }

    .category-post-content-top {
        margin-top: 8px;
        margin-bottom: 2px;
    }

    .category-post-content-bottom {
        margin-top: -4px;
    }

    .sorotan .post-similar-container {
        margin-top: 16px;
    }

    .post-similar-home {
        flex-direction: column;
    }

    .post-similar-thumbnail {
        width: 100%;
        min-width: none;
        margin-bottom: -24px;
    }

    .post-similar-home .post-description {
        margin-top: -4px;
    }

    .video-section-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 22px;
    }
}

.truncate-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.see-more a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 20px;
    background: linear-gradient(135deg, #29B6F6, #1565C0);
    color: white !important;
    border-radius: 20px;
    font-weight: 500;
    font-size: 13px;
    transition: opacity 0.2s, transform 0.2s;
}

.see-more a:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.see-more svg path {
    fill: white !important;
}


/* TIME */
.border-section-bottom {
    border-bottom: 1px solid rgb(146, 144, 144);
}

.sidebar-section {
    margin-top: 24px;
    border-bottom: 1px solid rgb(146, 144, 144);
    padding-bottom: 22px;
}

.local-time-container {
    /* background-color: rgb(238, 235, 235); */
    padding: 10px 16px;
    padding-bottom: 17px;
    border-radius: 4px;
}

.local-time-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid gray;
    padding-bottom: 6px;
}

.local-time-header span {
    font-size: 13px;
    color: rgb(101, 101, 101);
}

.local-time-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.local-time-date {
    font-size: 19px;
    font-weight: 400;
    color: rgb(101, 101, 101);
    line-height: 24px;
}

.local-time-label {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.local-time-label .clock-number {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(247, 244, 244);
    border-radius: 6px;
}

.clock-number span {
    font-size: 26px;
    padding: 2px 6px;
    font-stretch: 10%;
    font-weight: 500;
    color: rgb(101, 101, 101);
}

.news-heading h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    border-bottom: 0px !important;
    border-left: 4px solid #1565C0;
    padding-left: 10px;
    margin: 0 !important;
}

.popular-tags {
    display: flex;
    flex-direction: column;
    gap: 6px;
    /* margin-top: -4px; */
}

.popular-tags a {
    font-size: 20px;
    font-weight: 400;
    color: rgb(40, 39, 39);
}

@media (max-width: 576px) {

    /* .popular-tags {
        gap
    } */
    .popular-tags a {
        font-size: 16px;
    }
}

/* FOOTER */
footer {
    /* background-color: #ebebeb; */
    margin-top: 24px;
    padding: 0 16px;
    padding-bottom: 50px;
    padding-top: 1px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-top: 26px !important;
    margin-top: 26px !important;
    /* border: 1px solid black; */
}

.footer-right-content {
    flex-basis: 60%;
    display: flex;
    gap: 20px;
}

.footer-right-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    /* border: 1px solid black; */
    margin: 0;
    padding: 0;
}

.footer-right-content ul li a {
    text-decoration: none;
    color: #1565C0;
    font-weight: 500;
    font-size: 15px !important;
}

.footer-left-content {
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-left-content .address {
    font-size: 17px;
    font-weight: 500;
}

.footer-left-content .copyright {
    font-size: 14px;
    color: rgb(114, 113, 113);
    font-weight: 500;
}

.footer-left-content .social {
    list-style: none;
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.footer-info {
    margin-top: 8px;
    text-align: end;
}

.footer-logo img {
    margin-right: 10px;
    padding-bottom: -24px;
    margin-bottom: -50px;
}

.footer-description {
    width: 400px;
    font-size: 13px;
    color: rgb(53, 53, 53);
    font-weight: 400;
}

.social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #1565C0;
}

.social li a i {
    font-size: 20px;
    color: white;
}

@media (max-width: 1200px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-left-content {
        align-items: center;
        margin-top: 32px;
    }

    .footer-info {
        text-align: center;
    }

    .footer-right-content {
        justify-content: center;
    }

}

@media (max-width: 768px) {
    .footer-right-content {
        flex-direction: column;
        gap: 10px;
    }

    .footer-right-content ul {
        margin-top: -12px;
    }

    .footer-left-content {
        align-items: start;
        margin-top: 26px;
        gap: 8px;
    }

    .footer-info {
        text-align: start;
    }

    .footer-info .address {
        font-size: 15px;
    }

    .footer-description {
        width: 100%;
    }

    .footer-left-content .copyright {
        font-size: 12px;
    }
}

/* HOME SECTION */

.search-inner {
    margin: 24px 0;
    margin-bottom: 28px;
}

.headline {
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 4px 16px;
}

.typing-container {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 600px;
    font-size: 16px !important;
}

.daerah-container {
    padding: 8px 0px;
}

.daerah-container ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    margin: 0;
}

.daerah-container ul a {
    text-decoration: none;
    color: black;
    font-weight: 400;
}

.daerah-content {
    padding: 0 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.daerah-more {
    gap: 10px;
}

.daerah-more span {
    color: #1565C0;
    font-weight: 400;
}

.daerah-more button {
    border: none;
    background: white;
    aspect-ratio: 1/1;
    border-radius: 4px;
}

.headline-container {
    padding: 0px 8px;
}

.headline-container .headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.headline-label {
    flex-basis: fit-content;
    padding: 8px 18px;
    border-radius: 2px;
}

.headline-label span {
    display: inline-block;
    font-weight: 400;
    word-spacing: 4px;
    font-size: 13px;
}

.headline-post {
    max-width: 50%;
    width: 50%;
    overflow: hidden;
}

.truncate-1 {
    width: 612px;
}

@media (max-width: 992px) {
    .home-content {
        margin-top: 32px;
    }

    .daerah-content {
        padding: 0;
    }

    .headline-container {
        padding: 4px 8px;
    }

    .headline-container .headline {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .headline-post {
        max-width: 100%;
        width: 100%;
    }

    .headline-label {
        padding: 4px 12px;
    }

    .headline-label span {
        font-size: 12px;
    }

    .truncate-1 {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .home-content {
        margin-top: 24px;
    }

    .daerah-container {
        display: none;
    }
}

.date-user-2 {
    display: flex;
    margin-top: 5px;
    margin-bottom: 5px;
}

.date-user-2 .user {
    margin-right: 20px;
    position: relative;
    padding-left: 12px;
    color: #898989;
    font-size: 12px;
}

.date-user-2 .date {
    position: relative;
    padding-left: 12px;
    color: #898989;
    font-size: 12px;
}

.date-user-2 .time {
    position: relative;
    padding-left: 4px;
    color: #898989;
    font-size: 12px;
}

.date-user-2 .user:before,
.date-user-2 .date:before {
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 1px;
    left: 0;
    font-size: 10px;
}

.date-user-2 .user a,
.date-user-2 .date a,
.date-user-2 .time a {
    color: #898989;
}

.date-user-2 .user a:hover,
.date-user-2 .date a:hover,
.date-user-2 .time a:hover {
    color: #5374d3;
}

.date-user-2 .user:before {
    content: "\f007";
}

.date-user-2 .date:before {
    content: "\f073";
}


/* Loading Spinner */
.loading-spinner-container {
    display: flex;
    align-items: center;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1565C0;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    animation: spin 2s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===== HERO POST ===== */
.hero-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(13,71,161,0.18);
}

.hero-thumbnail .cover-image {
    transition: transform 0.4s ease;
}

.hero-thumbnail:hover .cover-image {
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 20px;
    background: linear-gradient(to top, rgba(5,15,45,0.92) 0%, rgba(5,15,45,0.5) 55%, transparent 100%);
}

.post-category-hero {
    display: inline-block;
    background: linear-gradient(135deg, #29B6F6, #1565C0);
    color: white;
    font-weight: 700;
    font-size: 11px;
    padding: 3px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 26px;
    line-height: 34px;
    font-weight: 700;
    color: white !important;
    margin: 0 0 10px;
}

.hero-title a {
    color: white !important;
    text-decoration: none;
}

.hero-title a:hover {
    color: #29B6F6 !important;
}

.hero-meta {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 19px;
        line-height: 27px;
    }
    .hero-overlay {
        padding: 30px 14px 14px;
    }
    .post-category-hero {
        font-size: 10px;
        padding: 2px 8px;
        margin-bottom: 6px;
    }
}

/* ===== CARD HOVER EFFECTS ===== */
.category-post-container > div {
    transition: transform 0.25s ease;
}

.category-post-container > div:hover {
    transform: translateY(-3px);
}

.category-post-container > div:hover .post-thumbnail img {
    transform: scale(1.04);
}

.video-section-container > div {
    transition: transform 0.25s ease;
}

.video-section-container > div:hover {
    transform: translateY(-3px);
}

/* ============================================================
   MODERN REDESIGN 2026 — Lensa Nuansa
   Font: Inter | Palette: #29B6F6 (light) → #1565C0 (dark)
   ============================================================ */

/* Base */
body {
    background-color: #EEF2F7;
    font-family: 'Inter', 'Roboto', sans-serif;
    color: #1A202C;
}

* {
    font-family: 'Inter', 'Roboto', sans-serif;
}

/* Header: white + shadow */
#header,
#header.gray-gradient {
    background: #FFFFFF !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.09) !important;
}

/* Footer: light */
footer,
footer.gray-gradient {
    background: #F1F5F9 !important;
    border-top: 1px solid #E2E8F0 !important;
    margin-top: 40px;
}

/* Nav */
.nav-list a,
.nav-list li button {
    color: #1A202C;
    font-weight: 500;
    font-size: 14px;
}

.nav-list a:hover,
.nav-list li button:hover {
    color: #1565C0;
}

/* Home content */
.home-content {
    padding-top: 20px;
    padding-bottom: 32px;
}

/* Left col — main sections as cards */
.left .border-section-bottom {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border-bottom: none !important;
    margin-bottom: 20px;
}

.left .sidebar-section {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 18px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border-bottom: none !important;
    padding-bottom: 18px !important;
    margin-top: 20px !important;
}

/* Section headings */
.news-heading {
    display: flex;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 8px;
    border-bottom: 2px solid #EFF6FF !important;
}

.news-heading h2 {
    font-size: 18px !important;
    font-weight: 700 !important;
    border-left: 4px solid #1565C0 !important;
    padding-left: 10px !important;
    margin: 0 !important;
    color: #0F172A;
    border-bottom: none !important;
    letter-spacing: -0.2px;
}

/* Post category badge */
.post-category {
    display: inline-block;
    background: #EFF6FF;
    color: #1565C0 !important;
    font-weight: 600;
    font-size: 11px !important;
    padding: 3px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: 1px solid #BFDBFE;
}

/* Post title typography */
.post-title-lg {
    font-size: 26px;
    line-height: 1.33;
    font-weight: 700;
    color: #0F172A;
    margin-top: 6px;
}

.post-title {
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
}

.post-description {
    color: #4B5563 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    margin-top: 10px;
}

.post-similar-title {
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #374151 !important;
}

/* Date/user meta */
.date-user-2 {
    gap: 4px;
    flex-wrap: wrap;
    align-items: center;
}

/* Thumbnail base */
.post-thumbnail {
    border-radius: 10px;
    overflow: hidden;
}

.post-thumbnail img {
    transition: transform 0.35s ease;
}

/* See more button */
.see-more {
    margin-top: 18px;
}

.see-more a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 22px;
    background: linear-gradient(135deg, #29B6F6, #1565C0);
    color: white !important;
    border-radius: 24px;
    font-weight: 600;
    font-size: 13px;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 3px 12px rgba(21,101,192,0.28);
}

.see-more a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(21,101,192,0.38);
}

.see-more svg path {
    fill: white !important;
}

/* Card hover */
.category-post-container > div {
    transition: transform 0.22s ease;
    cursor: pointer;
}

.category-post-container > div:hover {
    transform: translateY(-4px);
}

.category-post-container > div:hover .post-thumbnail img {
    transform: scale(1.05);
}

.video-section-container > div {
    transition: transform 0.22s ease;
}

.video-section-container > div:hover {
    transform: translateY(-4px);
}

/* Sidebar widget cards */
.widget {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    margin-bottom: 20px;
}

/* Reset sidebar-section styling inside widget — card look comes from .widget */
.widget.sidebar-section {
    border-bottom: none !important;
    margin-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Clock widget */
.local-time-container,
.local-time-container.gray-gradient {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%) !important;
    border-radius: 10px !important;
    padding: 14px 16px 18px !important;
}

.local-time-header {
    border-bottom: 1px solid #BFDBFE !important;
    padding-bottom: 8px;
}

.local-time-header span {
    font-size: 12px !important;
    color: #1565C0 !important;
    font-weight: 600 !important;
}

.clock-number {
    background: #DBEAFE !important;
    border-radius: 6px;
}

.clock-number span {
    color: #1565C0 !important;
    font-weight: 700 !important;
    font-size: 24px !important;
}

.local-time-date {
    color: #1565C0 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
}

/* Popular tags */
.popular-tags {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 14px;
}

.popular-tags a {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: #EFF6FF;
    color: #1565C0 !important;
    border-radius: 20px;
    font-size: 13px !important;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #BFDBFE;
}

.popular-tags a:hover {
    background: linear-gradient(135deg, #29B6F6, #1565C0);
    color: white !important;
    border-color: transparent;
    transform: translateY(-1px);
}

/* Popular posts list */
.post-similar {
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 10px 0;
    border-bottom: 1px solid #F1F5F9;
}

.post-similar:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Footer */
.footer-right-content ul li a {
    color: #1E88E5 !important;
    transition: color 0.2s;
}

.footer-right-content ul li a:hover {
    color: #0D47A1 !important;
}

.footer-description {
    color: #4B5563 !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
}

.footer-left-content .address {
    color: #475569 !important;
    font-size: 15px !important;
}

/* Scroll to top */
.scroll-top {
    border-radius: 50% !important;
    background: linear-gradient(135deg, #29B6F6, #1565C0) !important;
    box-shadow: 0 4px 14px rgba(21,101,192,0.4) !important;
}

/* Gradients */
.red-gradient {
    background: linear-gradient(135deg, #1E88E5 0%, #0D47A1 100%) !important;
}

.red-gradient-reverse {
    background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%) !important;
}

/* Responsive */
@media (max-width: 992px) {
    .left .sidebar-section,
    .left .border-section-bottom {
        border-radius: 10px;
        padding: 14px !important;
    }

    .widget {
        border-radius: 10px;
    }
}

@media (max-width: 576px) {
    .left .sidebar-section,
    .left .border-section-bottom {
        border-radius: 8px;
        padding: 12px !important;
    }

    .widget {
        border-radius: 8px;
        padding: 12px;
    }

    .home-content {
        padding-top: 14px;
    }
}

/* ===== FOOTER NEW ===== */
footer,
footer.gray-gradient {
    background: #F1F5F9 !important;
    border-top: 2px solid #E2E8F0 !important;
    margin-top: 40px;
    padding: 0 !important;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding: 44px 0 36px;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.footer-tagline {
    font-style: italic;
    color: #64748B;
    font-size: 13px;
    margin: 6px 0 14px;
    letter-spacing: 0.2px;
}

.footer-desc-text {
    font-size: 13.5px;
    color: #64748B;
    line-height: 1.65;
    margin: 0;
    max-width: 320px;
}

.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #1565C0;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #DBEAFE;
}

.footer-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4B5563;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s, gap 0.15s;
}

.footer-links-list li a::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #93C5FD;
    flex-shrink: 0;
    transition: background 0.15s;
}

.footer-links-list li a:hover {
    color: #1565C0;
}

.footer-links-list li a:hover::before {
    background: #1565C0;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13.5px;
    color: #4B5563;
    line-height: 1.5;
}

.footer-contact-item i {
    color: #1565C0;
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
    font-size: 13px;
}

.footer-contact-item a {
    color: #4B5563;
    text-decoration: none;
    transition: color 0.15s;
}

.footer-contact-item a:hover { color: #1565C0; }

.footer-bottom {
    background: #E2E8F0;
    padding: 13px 0;
    text-align: center;
    border-top: 1px solid #CBD5E1;
}

.footer-bottom span {
    font-size: 13px;
    color: #64748B;
    font-weight: 500;
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        padding: 32px 0 24px;
    }
    .footer-brand-col {
        grid-column: 1 / -1;
    }
    .footer-desc-text {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 0 20px;
    }
    .footer-brand-col {
        grid-column: auto;
    }
    .footer-logo-img {
        height: 40px;
    }
}

/* ============================================================
   MODERN REDESIGN v2 — More editorial, more visual depth
   ============================================================ */

/* Gradient accent bar fixed at very top */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #29B6F6 0%, #1565C0 55%, #0D47A1 100%);
    z-index: 99999;
}

/* Push header down 3px to account for bar */
#header,
#header.gray-gradient {
    padding-top: 9px !important;
}

main {
    margin-top: 72px !important;
}

@media (max-width: 992px) {
    main { margin-top: 61px !important; }
}

/* Page background */
body {
    background-color: #F0F4F8 !important;
}

/* ===== FEATURED 2-COLUMN HERO GRID ===== */
.featured-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 14px;
    margin-bottom: 20px;
}

.featured-primary-link {
    display: block;
    text-decoration: none;
}

.featured-primary-link .hero-thumbnail {
    aspect-ratio: 4/3 !important;
}

.featured-secondary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.featured-secondary-item {
    display: flex;
    gap: 0;
    align-items: stretch;
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    flex: 1;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid #E2E8F0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.featured-secondary-item:hover {
    box-shadow: 0 6px 20px rgba(21,101,192,0.12);
    transform: translateY(-2px);
    border-color: #BFDBFE;
}

.featured-secondary-thumb {
    width: 112px;
    min-width: 112px;
    overflow: hidden;
    flex-shrink: 0;
}

.featured-secondary-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.featured-secondary-item:hover .featured-secondary-thumb img {
    transform: scale(1.06);
}

.featured-secondary-content {
    flex: 1;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    justify-content: center;
}

.featured-secondary-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1A202C;
    line-height: 1.45;
    margin: 0;
}

.featured-secondary-meta {
    font-size: 11.5px;
    color: #9CA3AF;
    font-weight: 500;
}

/* ===== EDITORIAL SECTION HEADINGS ===== */
.news-heading {
    position: relative;
    padding-bottom: 14px !important;
    margin-bottom: 16px;
    border-bottom: none !important;
    display: flex !important;
    align-items: center;
    gap: 0;
}

.news-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1565C0 0%, #93C5FD 35%, transparent 70%);
    border-radius: 2px;
}

.news-heading h2 {
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    color: #0F172A !important;
    border-left: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 9px;
}

.news-heading h2::before {
    content: '';
    display: inline-flex;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #29B6F6, #1565C0);
    border-radius: 3px;
    flex-shrink: 0;
}

/* ===== CARD HOVER SHADOW ===== */
.category-post-container > div {
    border-radius: 10px;
    padding: 4px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-post-container > div:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(21,101,192,0.11);
}

/* ===== SECTION CARDS: stronger shadow on hover ===== */
.left .sidebar-section:hover,
.left .featured-grid:hover ~ .sidebar-section {
    box-shadow: 0 4px 20px rgba(0,0,0,0.09) !important;
}

/* ===== LEFT COL SECTION CARDS: featured grid no card wrapper ===== */
.featured-grid {
    background: transparent;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* ===== TICKER: pulse on label ===== */
.headline-label span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 600 !important;
    font-size: 12px !important;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.headline-label span::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 1.4s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ===== SIDEBAR POPULAR POSTS: bigger rank number ===== */
.post-similar .flex-center span {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #E2E8F0 !important;
    line-height: 1 !important;
}

.post-similar:first-child .flex-center span { color: #BFDBFE !important; }
.post-similar:nth-child(2) .flex-center span { color: #DBEAFE !important; }

/* ===== FEATURED GRID RESPONSIVE ===== */
@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    .featured-secondary {
        flex-direction: row;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .featured-secondary-item {
        min-width: 270px;
    }
    .featured-primary-link .hero-thumbnail {
        aspect-ratio: 16/9 !important;
    }
}

@media (max-width: 576px) {
    .featured-secondary {
        flex-direction: column;
        overflow-x: visible;
    }
    .featured-secondary-item {
        min-width: auto;
    }
    .news-heading h2 {
        font-size: 13px !important;
    }
}

/* ===== TICKER BAR ===== */
/* ===== TICKER BAR — redesign ===== */
.ticker-bar {
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.ticker-inner {
    display: flex;
    align-items: center;
    height: 42px;
    gap: 0;
}

/* Badge "TERKINI" — pill merah urgent */
.ticker-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #DC2626;
    color: white;
    padding: 0 14px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    height: 26px;
    border-radius: 20px;
    flex-shrink: 0;
    margin-right: 14px;
    white-space: nowrap;
}

/* Live dot dengan ripple */
.ticker-live-dot {
    position: relative;
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}

.ticker-live-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.6);
    animation: ticker-ripple 1.4s ease-out infinite;
}

@keyframes ticker-ripple {
    0%   { transform: scale(.6); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Separator kiri */
.ticker-separator {
    width: 1px;
    height: 20px;
    background: #E2E8F0;
    flex-shrink: 0;
    margin-right: 14px;
}

/* Konten bergulir */
.ticker-content {
    flex: 1;
    overflow: hidden;
    height: 26px;
    min-width: 0;
}

.ticker-link {
    color: #1A202C !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: color .15s;
}

.ticker-link:hover {
    color: #1565C0 !important;
    text-decoration: underline !important;
}

/* Tanggal di kanan */
.ticker-date {
    flex-shrink: 0;
    font-size: 11.5px;
    font-weight: 500;
    color: #94A3B8;
    white-space: nowrap;
    padding-left: 14px;
    border-left: 1px solid #E2E8F0;
    margin-left: 12px;
}

/* Tombol lihat semua */
.ticker-more {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 600;
    color: #1565C0;
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #BFDBFE;
    background: #EFF6FF;
    margin-left: 12px;
    white-space: nowrap;
    transition: background .15s, color .15s;
}

.ticker-more:hover {
    background: #1565C0;
    color: #fff;
    border-color: #1565C0;
}

@media (max-width: 768px) {
    .ticker-date  { display: none; }
    .ticker-more  { display: none; }
}

@media (max-width: 576px) {
    .ticker-badge { font-size: 9.5px; padding: 0 10px; letter-spacing: .9px; margin-right: 10px; }
    .ticker-link  { font-size: 12.5px !important; }
    .ticker-inner { height: 38px; }
}

/* ===== NEWS CARD ===== */
.news-card {
    display: flex;
    flex-direction: column;
}

.news-card-thumb {
    display: block;
    text-decoration: none;
}

.news-card-thumb .post-thumbnail img {
    transition: transform 0.35s ease;
}

.news-card-thumb:hover .post-thumbnail img {
    transform: scale(1.05);
}

.news-card-body {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.news-card-time {
    font-size: 11.5px;
    color: #9CA3AF;
    font-weight: 500;
}

.news-card-title {
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
    margin: 0 !important;
    font-family: 'Lora', Georgia, serif !important;
}

.news-card-title a {
    color: #1A202C;
    text-decoration: none;
    transition: color 0.15s;
}

.news-card-title a:hover {
    color: #1565C0;
}

.news-card-footer {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: #9CA3AF;
    font-weight: 500;
    flex-wrap: wrap;
}

/* ===== VIDEO CARD ===== */
.video-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease;
}

.video-card:hover {
    transform: translateY(-4px);
}

.video-card-thumb {
    display: block;
    position: relative;
    text-decoration: none;
}

.video-card-thumb .post-thumbnail {
    border-radius: 10px;
    overflow: hidden;
}

.video-card-thumb .post-thumbnail img {
    filter: brightness(75%);
    transition: filter 0.3s ease, transform 0.35s ease;
}

.video-card-thumb:hover .post-thumbnail img {
    filter: brightness(65%);
    transform: scale(1.04);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.5);
    transition: background 0.2s, transform 0.2s;
}

.video-card-thumb:hover .video-play-btn {
    background: rgba(255,255,255,0.35);
    transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================================
   HOME NEW — hn-* prefix (2026 redesign, v4)
   ============================================================ */

/* HERO */
.hn-hero { padding: 18px 0 0; }

.hn-hero-wrap {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 12px;
    height: 460px;
}

/* Berita utama — gambar absolut agar selalu mengisi */
.hn-hero-main {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    background: #05101e;
    /* grid auto-stretch ke 460px */
}

.hn-hero-main > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition: opacity .35s, transform .45s;
}

.hn-hero-main:hover > img { opacity: .68; transform: scale(1.025); }

.hn-hero-main-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 100px 24px 24px;
    background: linear-gradient(to top, rgba(4,8,26,.95) 0%, rgba(4,8,26,.45) 55%, transparent 100%);
}

/* Secondary — grid rows agar 2 kartu sama tinggi */
.hn-hero-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.hn-hero-sub {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    background: #05101e;
    min-height: 0;
}

.hn-hero-sub > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .78;
    transition: opacity .3s, transform .4s;
}

.hn-hero-sub:hover > img { opacity: .62; transform: scale(1.04); }

.hn-hero-sub-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 50px 14px 14px;
    background: linear-gradient(to top, rgba(4,8,26,.92) 0%, transparent 100%);
}

/* Badges */
.hn-badge {
    display: inline-block;
    background: linear-gradient(135deg, #29B6F6, #1565C0);
    color: #fff !important;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    padding: 3px 11px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.hn-badge-sm { font-size: 9px; padding: 2px 8px; margin-bottom: 7px; }

/* Hero titles */
.hn-hero-main-title {
    font-family: 'Lora', Georgia, serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1.38 !important;
    margin: 0 0 10px !important;
    letter-spacing: -.3px;
}

.hn-hero-sub-title {
    font-family: 'Lora', Georgia, serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #fff !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

/* Meta line */
.hn-meta {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(255,255,255,.6);
}

.hn-meta-sm { font-size: 11px; margin-top: 4px; }

/* BODY */
.hn-body { padding: 20px 0 0; }

.hn-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 22px;
    align-items: start;
}

/* Cegah grid item overflow — wajib untuk semua child grid */
.hn-layout > * { min-width: 0; }

.hn-sidebar {
    position: sticky;
    top: 84px;
}

/* SECTION CARD */
.hn-section {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 1px 8px rgba(0,0,0,.055);
    margin-bottom: 18px;
}

.hn-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #F1F5F9;
}

.hn-section-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 1.3px !important;
    text-transform: uppercase !important;
    color: #0F172A !important;
    margin: 0 !important;
    border-left: 4px solid #1565C0 !important;
    padding-left: 10px !important;
}

.hn-see-all {
    font-size: 12px;
    font-weight: 600;
    color: #1565C0;
    text-decoration: none;
    white-space: nowrap;
}

.hn-see-all:hover { color: #0D47A1; }

/* Category badge (dalam card) */
.hn-cat {
    display: inline-block;
    background: #EFF6FF;
    color: #1565C0;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid #BFDBFE;
    margin-bottom: 6px;
}

/* LIST (Berita Terbaru) */
.hn-list { display: flex; flex-direction: column; }

.hn-list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 13px 0;
    border-bottom: 1px solid #F8FAFC;
    text-decoration: none;
}

.hn-list-item:first-child { padding-top: 0; }
.hn-list-item:last-child { border-bottom: none; padding-bottom: 0; }

.hn-list-thumb {
    width: 96px;
    min-width: 96px;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    background: #EFF6FF;
    flex-shrink: 0;
}

.hn-list-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}

.hn-list-item:hover .hn-list-thumb img { transform: scale(1.06); }

.hn-list-body { flex: 1; min-width: 0; }

.hn-list-title {
    font-family: 'Lora', Georgia, serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #0F172A !important;
    line-height: 1.45 !important;
    margin: 0 0 6px !important;
    transition: color .15s;
}

.hn-list-item:hover .hn-list-title { color: #1565C0 !important; }

.hn-list-item .hn-meta { color: #94A3B8; }

/* GRID (Nasional dll) */
.hn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hn-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform .22s;
}

.hn-card:hover { transform: translateY(-3px); }

.hn-card-top {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.hn-card-top .hn-cat { margin-bottom: 0; }

.hn-card-author {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    color: #64748B;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hn-card-author svg {
    flex-shrink: 0;
    color: #94A3B8;
}

.hn-card-author::before {
    content: '·';
    margin-right: 3px;
    color: #CBD5E1;
}

.hn-card-thumb {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    background: #EFF6FF;
    margin-bottom: 8px;
}

.hn-card-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}

.hn-card:hover .hn-card-thumb img { transform: scale(1.05); }

.hn-card-title {
    font-family: 'Lora', Georgia, serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #0F172A !important;
    line-height: 1.45 !important;
    margin: 0 0 5px !important;
    transition: color .15s;
}

.hn-card:hover .hn-card-title { color: #1565C0 !important; }
.hn-card .hn-meta { color: #94A3B8; }

/* VIDEO */
.hn-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.hn-vid {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform .22s;
}

.hn-vid:hover { transform: translateY(-3px); }

.hn-vid-thumb {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
}

.hn-vid-thumb img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(.72);
    transition: filter .3s, transform .35s;
}

.hn-vid:hover .hn-vid-thumb img { filter: brightness(.58); transform: scale(1.04); }

.hn-vid-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 44px; height: 44px;
    background: rgba(255,255,255,.22);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,.45);
    transition: background .2s, transform .2s;
}

.hn-vid:hover .hn-vid-play {
    background: rgba(255,255,255,.36);
    transform: translate(-50%,-50%) scale(1.1);
}

.hn-vid .hn-meta { color: #94A3B8; }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .hn-layout { grid-template-columns: 1fr 260px; }
}

@media (max-width: 992px) {
    .hn-hero-wrap {
        grid-template-columns: 1fr;
        height: auto;
        gap: 10px;
    }
    .hn-hero-main { height: 360px; }
    .hn-hero-side {
        grid-template-rows: none;
        grid-template-columns: 1fr 1fr;
        height: 190px;
    }
    .hn-layout { grid-template-columns: 1fr; }
    .hn-sidebar { position: static; }
    .hn-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hn-hero-main { height: 300px; }
    .hn-hero-main-title { font-size: 20px !important; }
    .hn-hero-main-body { padding: 80px 18px 18px; }
    .hn-hero-side { height: 160px; }
}

@media (max-width: 576px) {
    .hn-hero { padding: 12px 0 0; }
    .hn-hero-wrap { gap: 8px; }
    .hn-hero-main { height: 240px; }
    .hn-hero-main-title { font-size: 17px !important; }
    .hn-hero-main-body { padding: 60px 14px 14px; }
    .hn-badge { font-size: 9px; padding: 2px 9px; }
    .hn-hero-side {
        grid-template-columns: 1fr;
        grid-template-rows: 150px 150px;
        height: auto;
    }
    .hn-section { padding: 14px; border-radius: 12px; }
    .hn-section-head { margin-bottom: 12px; padding-bottom: 10px; }
    .hn-list-thumb { width: 78px; min-width: 78px; }
    .hn-list-title { font-size: 14px !important; }
    .hn-list-item { gap: 10px; padding: 11px 0; }
    .hn-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .hn-card-title { font-size: 13px !important; }
    .hn-video-grid { grid-template-columns: 1fr; }
}

/* ===== VIDEO SECTION REDESIGN ===== */
.hn-video-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Featured video */
.hn-vid-featured {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    background: #05101e;
    aspect-ratio: 16/7;
}

.hn-vid-featured > img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(.68);
    transition: filter .3s, transform .45s;
}

.hn-vid-featured:hover > img {
    filter: brightness(.55);
    transform: scale(1.03);
}

.hn-vid-featured-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(4,8,26,.92) 0%, rgba(4,8,26,.2) 50%, transparent 100%);
}

.hn-vid-play-lg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -55%);
    width: 58px; height: 58px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,.5);
    transition: background .2s, transform .2s;
}

.hn-vid-featured:hover .hn-vid-play-lg {
    background: rgba(255,255,255,.3);
    transform: translate(-50%, -55%) scale(1.1);
}

.hn-vid-featured-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 20px 18px;
}

.hn-vid-yt-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 3px 10px 3px 7px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.25);
    margin-bottom: 8px;
}

.hn-vid-featured-title {
    font-family: 'Lora', Georgia, serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1.4 !important;
    margin: 0 0 8px !important;
}

.hn-vid-featured-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,.6);
}

/* Small video grid */
.hn-vid-sm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hn-vid-sm {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform .22s;
}

.hn-vid-sm:hover { transform: translateY(-3px); }

.hn-vid-sm-thumb {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    margin-bottom: 9px;
}

.hn-vid-sm-thumb img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(.72);
    transition: filter .3s, transform .35s;
}

.hn-vid-sm:hover .hn-vid-sm-thumb img {
    filter: brightness(.55);
    transform: scale(1.04);
}

.hn-vid-play-sm {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 34px; height: 34px;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255,255,255,.45);
    transition: background .2s, transform .2s;
}

.hn-vid-sm:hover .hn-vid-play-sm {
    background: rgba(255,255,255,.35);
    transform: translate(-50%,-50%) scale(1.1);
}

.hn-vid-sm-body { display: flex; flex-direction: column; gap: 4px; }

.hn-vid-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.hn-vid-sm-title {
    font-family: 'Lora', Georgia, serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #0F172A !important;
    line-height: 1.45 !important;
    margin: 0 !important;
    transition: color .15s;
}

.hn-vid-sm:hover .hn-vid-sm-title { color: #1565C0 !important; }

.hn-vid-sm-meta {
    font-size: 11px;
    color: #94A3B8;
}

/* Responsive video */
@media (max-width: 768px) {
    .hn-vid-featured { aspect-ratio: 16/9; }
    .hn-vid-featured-title { font-size: 15px !important; }
    .hn-vid-sm-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .hn-vid-featured { aspect-ratio: 4/3; }
    .hn-vid-featured-title { font-size: 14px !important; }
    .hn-vid-featured-body { padding: 14px; }
    .hn-vid-play-lg { width: 46px; height: 46px; }
    .hn-vid-sm-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .hn-vid-sm-title { font-size: 12px !important; }
}

/* ===== ADS ===== */
.hn-ad-wrap {
    position: relative;
    margin: 18px 0;
    border-radius: 12px;
    overflow: hidden;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hn-ad-label {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #94A3B8;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(4px);
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    z-index: 1;
    pointer-events: none;
}

.hn-ad-img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity .2s;
}

.hn-ad-link { display: block; width: 100%; }
.hn-ad-link:hover .hn-ad-img { opacity: .92; }

@media (max-width: 576px) {
    .hn-ad-wrap { border-radius: 8px; margin: 14px 0; }
}

/* ===== SIDEBAR NEW — sb-* prefix ===== */

.sb-widget {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 1px 8px rgba(0,0,0,.055);
    margin-bottom: 16px;
}

.sb-widget-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F1F5F9;
}

.sb-widget-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    color: #0F172A !important;
    margin: 0 !important;
    border: none !important;
    padding-left: 9px !important;
    border-left: 3px solid #1565C0 !important;
}

.sb-see-all {
    font-size: 11.5px;
    font-weight: 600;
    color: #1565C0;
    text-decoration: none;
    white-space: nowrap;
    transition: color .15s;
}
.sb-see-all:hover { color: #0D47A1; }

/* Clock widget */
.sb-clock {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: 10px;
    padding: 14px 16px 16px;
}
.sb-clock-header {
    display: flex;
    justify-content: space-between;
    font-size: 11.5px;
    font-weight: 600;
    color: #1565C0;
    padding-bottom: 8px;
    border-bottom: 1px solid #BFDBFE;
    margin-bottom: 12px;
}
.sb-clock-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sb-clock-date {
    font-size: 15px;
    font-weight: 600;
    color: #1565C0;
    line-height: 1.4;
}
.sb-clock-digits {
    display: flex;
    align-items: center;
    gap: 3px;
    font-family: 'Inter', monospace;
}
.sb-clock-digit {
    background: #DBEAFE;
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 24px;
    font-weight: 700;
    color: #1565C0;
    line-height: 1.3;
}
.sb-clock-colon {
    font-size: 22px;
    font-weight: 700;
    color: #1565C0;
    line-height: 1;
}

/* Tag cloud */
.sb-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding-top: 2px;
}
.sb-tag-cloud a {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: #EFF6FF;
    color: #1565C0;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #BFDBFE;
    transition: all .2s;
}
.sb-tag-cloud a:hover {
    background: linear-gradient(135deg, #29B6F6, #1565C0);
    color: #fff;
    border-color: transparent;
    transform: translateY(-1px);
}

/* Featured post (top card with image) */
.sb-post-main {
    display: block;
    text-decoration: none;
    margin-bottom: 12px;
}
.sb-post-main-thumb {
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    background: #EFF6FF;
    margin-bottom: 8px;
}
.sb-post-main-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}
.sb-post-main:hover .sb-post-main-thumb img { transform: scale(1.05); }

.sb-post-main-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}
.sb-post-main-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #94A3B8;
}
.sb-post-main-title {
    font-family: 'Lora', Georgia, serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #0F172A !important;
    line-height: 1.45 !important;
    margin: 0 0 5px !important;
    transition: color .15s;
}
.sb-post-main:hover .sb-post-main-title { color: #1565C0 !important; }
.sb-post-main-author {
    font-size: 11px;
    color: #94A3B8;
}

/* Post list (small items below featured) */
.sb-post-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #F8FAFC;
}
.sb-post-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #F8FAFC;
    text-decoration: none;
}
.sb-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.sb-post-item-thumb {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 7px;
    overflow: hidden;
    background: #EFF6FF;
    flex-shrink: 0;
}
.sb-post-item-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}
.sb-post-item:hover .sb-post-item-thumb img { transform: scale(1.07); }
.sb-post-item-title {
    font-family: 'Lora', Georgia, serif !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: #1A202C !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    transition: color .15s;
}
.sb-post-item:hover .sb-post-item-title { color: #1565C0 !important; }

/* See more button */
.sb-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    padding: 7px 18px;
    background: linear-gradient(135deg, #29B6F6, #1565C0);
    color: #fff !important;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .2s, transform .15s;
    box-shadow: 0 2px 10px rgba(21,101,192,.25);
}
.sb-more-btn:hover { opacity: .88; transform: translateY(-1px); }

/* Popular numbered list */
.sb-popular-list {
    display: flex;
    flex-direction: column;
}
.sb-popular-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #F8FAFC;
    text-decoration: none;
}
.sb-popular-item:first-child { padding-top: 0; }
.sb-popular-item:last-child { border-bottom: none; padding-bottom: 0; }
.sb-popular-num {
    font-size: 28px;
    font-weight: 800;
    color: #E2E8F0;
    line-height: 1;
    min-width: 28px;
    flex-shrink: 0;
}
.sb-popular-item:nth-child(1) .sb-popular-num { color: #BFDBFE; }
.sb-popular-item:nth-child(2) .sb-popular-num { color: #DBEAFE; }
.sb-popular-item:nth-child(3) .sb-popular-num { color: #EFF6FF; }
.sb-popular-title {
    font-family: 'Lora', Georgia, serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1A202C !important;
    line-height: 1.45 !important;
    margin: 0 !important;
    transition: color .15s;
}
.sb-popular-item:hover .sb-popular-title { color: #1565C0 !important; }

/* Sidebar ads */
.sb-ad-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
}
.sb-ad-wrap .hn-ad-label { top: 6px; right: 8px; }
.sb-ad-wrap img { width: 100%; height: auto; display: block; }

@media (max-width: 576px) {
    .sb-widget { border-radius: 12px; padding: 14px; }
}

/* ===== FOOTER NEW — ft-* prefix ===== */
.ft-root,
footer.ft-root {
    background: #0F172A !important;
    border-top: none !important;
    margin-top: 48px;
    padding: 0 !important;
}

.ft-accent-line {
    height: 4px;
    background: linear-gradient(90deg, #29B6F6 0%, #1565C0 50%, #0D47A1 100%);
}

.ft-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: 44px 0 36px;
}

/* Brand col */
.ft-logo {
    height: 48px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: .92;
    margin-bottom: 10px;
}

.ft-tagline {
    font-style: italic;
    font-family: 'Lora', Georgia, serif;
    color: #64748B;
    font-size: 13px;
    margin: 0 0 14px;
}

.ft-desc {
    font-size: 13px;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 18px;
    max-width: 280px;
}

.ft-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ft-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    color: #94A3B8;
    border: 1px solid rgba(255,255,255,.1);
    font-size: 14px;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
}

.ft-social-btn:hover {
    background: #1565C0;
    color: #fff;
    border-color: #1565C0;
}

/* Column headings */
.ft-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: #94A3B8;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Links list */
.ft-links {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ft-links li a {
    font-size: 13.5px;
    color: #94A3B8;
    text-decoration: none;
    transition: color .15s, padding-left .15s;
    display: flex;
    align-items: center;
    gap: 7px;
}

.ft-links li a::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #334155;
    flex-shrink: 0;
    transition: background .15s;
}

.ft-links li a:hover {
    color: #fff;
    padding-left: 4px;
}

.ft-links li a:hover::before { background: #29B6F6; }

/* Contact list */
.ft-contact {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ft-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: #94A3B8;
    line-height: 1.55;
}

.ft-contact li i {
    color: #1565C0;
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
}

.ft-contact li a {
    color: #94A3B8;
    text-decoration: none;
    transition: color .15s;
}

.ft-contact li a:hover { color: #29B6F6; }

/* Bottom bar */
.ft-bottom {
    background: rgba(0,0,0,.25);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 14px 0;
}

.ft-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12.5px;
    color: #475569;
}

.ft-bottom-sep { color: #334155; }

/* Responsive */
@media (max-width: 992px) {
    .ft-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 36px 0 28px;
    }
    .ft-brand { grid-column: 1 / -1; }
    .ft-desc { max-width: 100%; }
}

@media (max-width: 576px) {
    .ft-main {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 0 22px;
    }
    .ft-brand { grid-column: auto; }
    .ft-bottom-sep { display: none; }
    .ft-bottom-inner { justify-content: center; text-align: center; }
}

/* ===== STATIC PAGES — sp-* (about, privacy, terms, disclaimer) ===== */

/* Container tanpa sidebar — max-width agar tidak terlalu lebar */
.sp-single {
    max-width: 860px;
    margin: 0 auto;
}

.sp-wrap {
    padding: 28px 0 52px;
}

.sp-article {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 1px 10px rgba(0,0,0,.055);
    max-width: 860px;
    margin: 0 auto;
}

.sp-article-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 2px solid #F1F5F9;
}

.sp-article-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; height: 50px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-radius: 12px;
    border: 1px solid #BFDBFE;
    color: #1565C0;
    flex-shrink: 0;
}

.sp-title {
    font-family: 'Lora', Georgia, serif !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    letter-spacing: -.3px;
}

.sp-content { margin-top: 0; }

/* Related pages nav */
.sp-related {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 2px solid #F1F5F9;
}

.sp-related-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94A3B8;
    margin-bottom: 12px;
}

.sp-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sp-related-links a {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: #EFF6FF;
    color: #1565C0;
    border: 1px solid #BFDBFE;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
}

.sp-related-links a:hover {
    background: linear-gradient(135deg, #29B6F6, #1565C0);
    color: white;
    border-color: transparent;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .sp-article { padding: 28px; }
    .sp-title { font-size: 22px !important; }
}

@media (max-width: 576px) {
    .sp-article { padding: 18px; border-radius: 12px; }
    .sp-title { font-size: 19px !important; }
    .sp-article-head { gap: 12px; }
    .sp-article-icon { width: 40px; height: 40px; }
}

/* ===== CONTACT PAGE — ct-* ===== */

.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 4px;
}

.ct-section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: #64748B !important;
    margin: 0 0 16px !important;
    border: none !important;
    padding: 0 !important;
}

.ct-section-label svg { color: #1565C0; }

/* Form */
.ct-form { display: flex; flex-direction: column; gap: 16px; }

.ct-field { display: flex; flex-direction: column; gap: 6px; }

.ct-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.ct-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    font-size: 14px;
    color: #1A202C;
    background: #F8FAFC;
    transition: border-color .15s, background .15s;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.ct-input:focus {
    border-color: #1565C0;
    background: white;
    box-shadow: 0 0 0 3px rgba(21,101,192,.08);
}

.ct-textarea { resize: vertical; min-height: 140px; }

.ct-error {
    font-size: 12px;
    margin-top: -2px;
}

.ct-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: linear-gradient(135deg, #29B6F6, #1565C0);
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
    box-shadow: 0 3px 12px rgba(21,101,192,.28);
    align-self: flex-start;
}

.ct-submit:hover { opacity: .88; transform: translateY(-1px); }

/* Map */
.ct-map {
    border-radius: 12px;
    overflow: hidden;
    background: #EFF6FF;
    margin-bottom: 16px;
}

.ct-map iframe {
    width: 100% !important;
    height: 240px !important;
    display: block;
    border: none;
}

/* Contact info */
.ct-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ct-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #4B5563;
    line-height: 1.5;
}

.ct-info-item i {
    color: #1565C0;
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
}

.ct-info-item a {
    color: #4B5563;
    text-decoration: none;
    transition: color .15s;
}

.ct-info-item a:hover { color: #1565C0; }

@media (max-width: 768px) {
    .ct-grid { grid-template-columns: 1fr; gap: 24px; }
    .ct-map iframe { height: 220px !important; }
}

@media (max-width: 576px) {
    .ct-submit { width: 100%; justify-content: center; }
}

/* ===== LISTING PAGES — lp-* (tag, search, category) ===== */

.lp-page-head {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #F1F5F9;
}

.lp-page-title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lp-tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-radius: 10px;
    flex-shrink: 0;
    border: 1px solid #BFDBFE;
    color: #1565C0;
}

.lp-page-title {
    font-family: 'Lora', Georgia, serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

.lp-page-sub {
    font-size: 13px;
    color: #94A3B8;
    margin: 3px 0 0;
}

.lp-grid { margin-top: 4px; }

.lp-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 48px 0;
    color: #CBD5E1;
    text-align: center;
}

.lp-empty p { font-size: 15px; color: #64748B; margin: 0; }
.lp-empty strong { color: #1565C0; }

.lp-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #29B6F6, #1565C0);
    color: #fff !important;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .2s;
    margin-top: 4px;
}

.lp-back-btn:hover { opacity: .88; }

.lp-pagination {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #F1F5F9;
}

.lp-pagination .pagination { gap: 4px; flex-wrap: wrap; }

.lp-pagination .page-link {
    border-radius: 8px !important;
    border: 1px solid #E2E8F0;
    color: #1565C0;
    font-size: 13.5px;
    font-weight: 500;
    padding: 6px 12px;
    transition: all .15s;
}

.lp-pagination .page-link:hover { background: #EFF6FF; border-color: #BFDBFE; }

.lp-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #29B6F6, #1565C0) !important;
    border-color: transparent !important;
    color: #fff !important;
}

.lp-pagination .page-item.disabled .page-link { color: #CBD5E1; background: #F8FAFC; }

@media (max-width: 576px) {
    .lp-page-title { font-size: 18px !important; }
    .lp-tag-icon { width: 36px; height: 36px; }
}

/* ===== POST DETAIL — pd-* prefix ===== */

/* Breadcrumb bar */
.pd-breadcrumb-bar {
    background: #fff;
    border-bottom: 1px solid #F1F5F9;
    padding: 9px 0;
}

.pd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0; padding: 0;
    font-size: 12.5px;
    flex-wrap: nowrap;
    overflow: hidden;
}

.pd-breadcrumb li a {
    color: #1565C0;
    text-decoration: none;
    white-space: nowrap;
    transition: color .15s;
}

.pd-breadcrumb li a:hover { color: #0D47A1; }

.pd-breadcrumb li svg { color: #CBD5E1; flex-shrink: 0; }

.pd-breadcrumb-active {
    color: #64748B;
    min-width: 0;
}

/* Article wrapper — min-width: 0 wajib agar grid item tidak overflow */
.pd-article {
    margin-bottom: 0;
    min-width: 0;
    overflow: hidden;
}

/* Hero image — proporsi alami, tidak di-crop */
.pd-hero {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.pd-hero img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 576px) {
    .pd-hero { border-radius: 10px; }
}

/* Head (kategori + judul) */
.pd-head { margin-bottom: 16px; }
.pd-head .hn-cat { margin-bottom: 10px; display: inline-block; }

.pd-title {
    font-family: 'Lora', Georgia, serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    line-height: 1.38 !important;
    margin: 0 !important;
    letter-spacing: -.3px;
}

/* Meta bar */
.pd-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 4px;
    padding: 14px 0;
    border-top: 1px solid #F1F5F9;
    border-bottom: 2px solid #F1F5F9;
    margin-bottom: 28px;
}

.pd-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #64748B;
}

.pd-meta-item svg { color: #1565C0; flex-shrink: 0; }

.pd-meta-sep {
    color: #CBD5E1;
    font-size: 13px;
    line-height: 1;
}

/* Article body */
.pd-content {
    font-size: 16.5px !important;
    line-height: 1.85 !important;
    color: #1E293B !important;
    font-weight: 400 !important;
}

.pd-content p { margin-bottom: 22px; }

.pd-content h2, .pd-content h3, .pd-content h4 {
    font-family: 'Lora', Georgia, serif !important;
    font-weight: 700;
    color: #0F172A;
    margin: 32px 0 14px;
    line-height: 1.35;
}

.pd-content h2 { font-size: 22px !important; }
.pd-content h3 { font-size: 19px !important; }
.pd-content h4 { font-size: 17px !important; }

/* Semua elemen embed di artikel tidak boleh overflow */
.pd-content img,
.pd-content video,
.pd-content iframe,
.pd-content embed,
.pd-content object {
    max-width: 100% !important;
    height: auto;
}

.pd-content img {
    border-radius: 10px;
    margin: 22px 0;
    display: block;
}

.pd-content table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
    border-collapse: collapse;
}

.pd-content pre {
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

.pd-content a { color: #1565C0; text-decoration: underline; text-underline-offset: 3px; }
.pd-content a:hover { color: #0D47A1; }

.pd-content blockquote {
    border-left: 4px solid #1565C0;
    margin: 26px 0;
    padding: 12px 20px;
    background: #EFF6FF;
    border-radius: 0 8px 8px 0;
    color: #374151;
    font-style: italic;
}

/* Tags section */
.pd-tags-section {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 2px solid #F1F5F9;
}

.pd-sub-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #0F172A;
    margin-bottom: 14px;
}

.pd-sub-heading svg { color: #1565C0; flex-shrink: 0; }

/* Berita terkait */
.pd-related {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #F1F5F9;
}

.pd-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.pd-related-loading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94A3B8;
    font-size: 13px;
    padding: 12px 0;
}

.pd-related-empty {
    grid-column: 1 / -1;
    color: #94A3B8;
    font-size: 13px;
    padding: 12px 0;
    margin: 0;
}

@media (max-width: 768px) {
    .pd-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .pd-related-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* Mobile */
@media (max-width: 768px) {
    .pd-title { font-size: 22px !important; }
    .pd-content { font-size: 15.5px !important; }
}

@media (max-width: 576px) {
    .pd-breadcrumb { font-size: 11.5px; }
    .pd-breadcrumb-active { max-width: 140px; }
    .pd-title { font-size: 19px !important; line-height: 1.35 !important; }
    .pd-meta-bar { gap: 6px 4px; padding: 12px 0; margin-bottom: 20px; }
    .pd-meta-item { font-size: 12px; }
    .pd-content { font-size: 15px !important; line-height: 1.75 !important; }
    .pd-content h2 { font-size: 18px !important; }
    .pd-content h3 { font-size: 16px !important; }
}

/* Lama (biarkan agar tidak broken di halaman lain) */
.page-content .featured-photo img {
    border-radius: 12px;
}

.page-content .sub {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    border-top: 1px solid #F1F5F9;
    border-bottom: 2px solid #F1F5F9;
    padding: 12px 0;
    margin-bottom: 20px;
    overflow: visible;
}

.page-content .sub .item {
    float: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748B;
    margin: 0;
}

.page-content .sub .item a {
    color: #64748B;
    text-decoration: none;
}

.page-content .sub .item a:hover { color: #1565C0; }

.page-content .sub .item b i {
    color: #1565C0;
    font-size: 12px;
}

/* ===== MOBILE RESPONSIVE — home & post-detail ===== */
@media (max-width: 992px) {
    .home-content .left-col { padding-right: 12px !important; }
    .home-content .sidebar-col { padding-left: 8px; }
}

@media (max-width: 576px) {
    .featured-grid { grid-template-columns: 1fr !important; }
    .featured-secondary { flex-direction: column; overflow-x: visible; }
    .featured-secondary-item { min-width: auto; }
    .featured-primary-link .hero-thumbnail { aspect-ratio: 16/9 !important; }
    .category-post-container { grid-template-columns: 1fr !important; }
    .video-section-container { grid-template-columns: 1fr !important; }
    .news-card-title { font-size: 14px !important; }
    .hero-title { font-size: 18px !important; line-height: 1.35 !important; }
    .home-content { padding-top: 14px; }
    .left .sidebar-section { padding: 14px !important; }
}

/* ===== PHOTO GALLERY — gl-* prefix ===== */

.gl-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
}

.gl-photo-item {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    background: #F8FAFC;
    border: 1px solid #F1F5F9;
    transition: box-shadow .2s, transform .2s;
}

.gl-photo-item:hover {
    box-shadow: 0 6px 24px rgba(21,101,192,.13);
    transform: translateY(-3px);
}

.gl-photo-thumb {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #E2E8F0;
}

.gl-photo-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.gl-photo-item:hover .gl-photo-thumb img { transform: scale(1.06); }

.gl-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(21,101,192,.38);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s;
}

.gl-photo-item:hover .gl-photo-overlay { opacity: 1; }

.gl-photo-caption {
    font-size: 12.5px;
    color: #475569;
    padding: 8px 10px 9px;
    margin: 0;
    line-height: 1.4;
    background: #fff;
    border-top: 1px solid #F1F5F9;
}

@media (max-width: 992px) {
    .gl-photo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .gl-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gl-photo-caption { font-size: 11.5px; padding: 6px 8px; }
}

/* ===== FAQ — fq-* prefix ===== */

.fq-intro {
    margin-bottom: 20px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

.fq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.fq-item {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
}

.fq-item--open {
    border-color: #BFDBFE;
    box-shadow: 0 2px 12px rgba(21,101,192,.09);
}

.fq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1E293B;
    transition: background .15s, color .15s;
}

.fq-question:hover { background: #F8FAFC; }

.fq-item--open .fq-question {
    background: linear-gradient(90deg, #EFF6FF 0%, #F8FAFC 100%);
    color: #1565C0;
}

.fq-num {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #EFF6FF;
    color: #1565C0;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #BFDBFE;
    transition: background .2s, color .2s;
}

.fq-item--open .fq-num {
    background: #1565C0;
    color: #fff;
    border-color: #1565C0;
}

.fq-q-text { flex: 1; }

.fq-chevron {
    flex-shrink: 0;
    color: #94A3B8;
    transition: transform .25s, color .2s;
    display: flex;
}

.fq-item--open .fq-chevron {
    transform: rotate(180deg);
    color: #1565C0;
}

.fq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.fq-answer-inner {
    padding: 4px 18px 18px 62px;
    font-size: 14.5px;
    line-height: 1.75;
    color: #475569;
}

.fq-answer-inner p:last-child { margin-bottom: 0; }

.fq-answer-inner a { color: #1565C0; }
.fq-answer-inner a:hover { color: #0D47A1; text-decoration: underline; }

@media (max-width: 576px) {
    .fq-question { font-size: 14px; padding: 13px 14px; gap: 10px; }
    .fq-num { width: 26px; height: 26px; font-size: 11px; }
    .fq-answer-inner { padding: 4px 14px 14px 50px; font-size: 13.5px; }
}

/* ===== VIDEO GALLERY — vg-* prefix ===== */

/* Featured video besar */
.vg-featured {
    display: block;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
    text-decoration: none;
    background: #0F172A;
    box-shadow: 0 4px 20px rgba(0,0,0,.14);
}

.vg-featured-thumb {
    position: relative;
    aspect-ratio: 16/7;
    overflow: hidden;
}

.vg-featured-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s, opacity .3s;
    opacity: .9;
}

.vg-featured:hover .vg-featured-thumb img {
    transform: scale(1.03);
    opacity: .75;
}

.vg-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 28px;
}

.vg-play-lg {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    border: 2px solid rgba(255,255,255,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    transition: background .2s, transform .2s;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vg-featured:hover .vg-play-lg {
    background: rgba(255,255,255,.3);
    transform: translate(-50%, -50%) scale(1.1);
}

.vg-featured-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 26px;
}

.vg-yt-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.2);
    margin-bottom: 8px;
    letter-spacing: .3px;
}

.vg-featured-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 0 8px !important;
    line-height: 1.35 !important;
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

.vg-featured-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.75);
    font-size: 12.5px;
}

/* Video grid */
.vg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.vg-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #F1F5F9;
    transition: box-shadow .2s, transform .2s;
}

.vg-card:hover {
    box-shadow: 0 6px 24px rgba(21,101,192,.12);
    transform: translateY(-3px);
}

.vg-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #0F172A;
}

.vg-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s, opacity .3s;
    opacity: .92;
}

.vg-card:hover .vg-thumb img {
    transform: scale(1.05);
    opacity: .78;
}

.vg-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    border: 1.5px solid rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
    transition: background .2s, transform .2s;
}

.vg-card:hover .vg-play {
    background: rgba(255,255,255,.32);
    transform: translate(-50%, -50%) scale(1.1);
}

.vg-yt-pill {
    position: absolute;
    bottom: 8px;
    left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0,0,0,.6);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: .3px;
}

.vg-body {
    padding: 11px 13px 13px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vg-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #1E293B !important;
    margin: 0 !important;
    line-height: 1.45 !important;
    transition: color .15s;
}

.vg-card:hover .vg-title { color: #1565C0 !important; }

.vg-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: #94A3B8;
}

@media (max-width: 992px) {
    .vg-grid { grid-template-columns: repeat(2, 1fr); }
    .vg-featured-thumb { aspect-ratio: 16/9; }
    .vg-featured-title { font-size: 17px !important; }
}

@media (max-width: 576px) {
    .vg-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .vg-featured-title { font-size: 14px !important; }
    .vg-featured-body { padding: 14px 16px; }
    .vg-play-lg { width: 48px; height: 48px; }
    .vg-title { font-size: 12px !important; }
    .vg-body { padding: 8px 10px 10px; gap: 3px; }
}
