/* ========================================
   BERITA6.COM
   MAIN STYLESHEET
======================================== */


/* ========================================
   RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #222222;
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input {
    font-family: inherit;
}

.container {
    width: 1180px;
    max-width: calc(100% - 40px);
    margin: auto;
}


/* ========================================
   TOP BAR
======================================== */

.top-bar {
    background: #111111;
    color: #cccccc;
    font-size: 13px;
}

.top-bar-inner {
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a {
    transition: color 0.2s ease;
}

.top-links a:hover {
    color: #ffffff;
}


/* ========================================
   HEADER
======================================== */

.main-header {
    background: #ffffff;
    padding: 24px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* ========================================
   LOGO BERITA6
======================================== */

/* ========================================
   BERITA6 GLOBAL LOGO
======================================== */

.brand-logo {
    display: flex;
    align-items: center;
}

.brand-logo a {
    display: inline-flex;
    align-items: center;
}

.brand-logo-image {
    display: block;
    width: clamp(160px, 18vw, 250px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.header-ad {
    width: 728px;
    height: 90px;
    max-width: 65%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f4f4f4;
    border: 1px solid #e5e5e5;

    color: #999999;
    font-size: 13px;
}


/* ========================================
   NAVIGATION
======================================== */

.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: #e30613;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-container {
    min-height: 52px;

    display: flex;
    align-items: center;
}

.nav-menu {
    flex: 1;

    display: flex;
    align-items: center;
}

.nav-menu li a {
    display: block;

    padding: 16px 15px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    transition: background 0.2s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(0, 0, 0, 0.14);
}

.mobile-menu-button,
.search-button {
    border: 0;

    background: transparent;
    color: #ffffff;

    cursor: pointer;
}

.mobile-menu-button {
    display: none;
    font-size: 23px;
}

.search-button {
    padding: 10px 12px;
    font-size: 18px;
}


/* ========================================
   SEARCH DROPDOWN
======================================== */

.search-area {
    display: none;

    padding: 18px 0;

    background: #f6f6f6;
    border-bottom: 1px solid #eeeeee;
}

.search-area.active {
    display: block;
}

.search-area form {
    display: flex;
}

.search-area input {
    flex: 1;

    height: 45px;

    padding: 0 15px;

    border: 1px solid #dddddd;

    outline: none;
}

.search-area input:focus {
    border-color: #e30613;
}

.search-area button {
    width: 100px;

    border: 0;

    background: #e30613;
    color: #ffffff;

    font-weight: 700;

    cursor: pointer;
}


/* ========================================
   BREAKING NEWS
======================================== */

.breaking-news {
    border-bottom: 1px solid #eeeeee;
}

.breaking-inner {
    height: 46px;

    display: flex;
    align-items: center;
}

.breaking-label {
    height: 46px;

    display: flex;
    align-items: center;

    padding: 0 20px;

    background: #161616;
    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    flex-shrink: 0;
}

.breaking-content {
    min-width: 0;

    padding-left: 20px;

    font-size: 14px;
    font-weight: 600;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.breaking-content a:hover {
    color: #e30613;
}


/* ========================================
   MAIN LAYOUT
======================================== */

.main-layout {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 320px;

    gap: 35px;

    padding-top: 30px;
    padding-bottom: 50px;
}

.main-content {
    min-width: 0;
}

.sidebar {
    min-width: 0;
}


/* ========================================
   HOME HEADLINE
======================================== */

/* HEADLINE BESAR */

.headline-main {
    min-width: 0;

    background: #ffffff;

    border-radius: 5px;

    overflow: hidden;
}

.headline-image {
    display: block;

    width: 100%;
    height: 360px;

    overflow: hidden;

    border-radius: 5px;

    background: #eeeeee;
}

.headline-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.headline-main:hover .headline-image img {
    transform: scale(1.02);
}

.headline-content {
    padding-top: 14px;
}

.headline-content .news-category {
    display: inline-block;

    margin-bottom: 5px;

    color: #e30613;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
}

.headline-content h1 {
    margin: 0 0 8px;

    font-size: 29px;
    font-weight: 800;
    line-height: 1.27;
}

.headline-content h1 a {
    color: #171717;

    transition: color 0.2s ease;
}

.headline-content h1 a:hover {
    color: #e30613;
}

.news-meta {
    color: #999999;

    font-size: 11px;
}

.headline-content p {
    margin-top: 8px;

    color: #666666;

    font-size: 14px;
    line-height: 1.7;
}


/* ========================================
   3 HEADLINE SAMPING
   Horizontal bertumpuk ke bawah
======================================== */

.headline-section {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 40px;
}


/* ========================================
   KOLOM 3 BERITA
======================================== */

.headline-side {
    display: flex;
    flex-direction: column;

    gap: 0;

    min-width: 0;
}


/* ========================================
   ITEM BERITA
======================================== */

.side-news {
    display: grid;

    grid-template-columns: 125px minmax(0, 1fr);

    gap: 14px;

    align-items: start;

    padding: 0 0 16px;
    margin: 0 0 16px;

    border-bottom: 1px solid #eeeeee;

    min-width: 0;
}

.side-news:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}


/* reset link lama */

.side-news a {
    display: block;
}


/* ========================================
   GAMBAR
======================================== */

.side-news-image {
    display: block;

    width: 125px;
    height: 90px;

    overflow: hidden;

    margin: 0;

    border-radius: 5px;

    background: #eeeeee;
}

.side-news-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 5px;

    transition: transform 0.3s ease;
}

.side-news:hover .side-news-image img {
    transform: scale(1.04);
}


/* ========================================
   CONTENT
======================================== */

.side-news-content {
    min-width: 0;
}


/* KATEGORI */

.side-news .news-category {
    display: block;

    margin: 0 0 4px;

    color: #e30613;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}


/* JUDUL */

.side-news h3 {
    margin: 0 0 7px;

    color: #222222;

    font-size: 15px;
    font-weight: 800;

    line-height: 1.4;
}

.side-news h3 a {
    color: #222222;

    display: -webkit-box;

    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;

    transition: color 0.2s ease;
}

.side-news h3 a:hover {
    color: #e30613;
}


/* WAKTU */

.side-news .news-meta {
    display: block;

    color: #999999;

    font-size: 10px;
}


/* ========================================
   GENERAL CATEGORY
======================================== */

.news-category,
.mini-category {
    color: #e30613;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
}

.article-meta {
    margin-top: 5px;

    color: #999999;

    font-size: 12px;
}


/* ========================================
   SECTION HEADING
======================================== */

.news-section {
    margin-bottom: 45px;
}

.section-heading {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;

    border-bottom: 2px solid #222222;
}

.section-heading h2 {
    position: relative;

    padding-bottom: 10px;

    color: #171717;

    font-size: 22px;
    font-weight: 800;
}

.section-heading h2::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -2px;

    width: 70px;
    height: 3px;

    background: #e30613;
}

.section-heading > a,
.section-more {
    color: #777777;

    font-size: 13px;

    transition: color 0.2s ease;
}

.section-heading > a:hover,
.section-more:hover {
    color: #e30613;
}


/* ========================================
   BERITA TERBARU
======================================== */

.news-list {
    width: 100%;
}

.news-list-item {
    display: grid;

    grid-template-columns: 240px minmax(0, 1fr);

    gap: 20px;

    padding-bottom: 22px;

    margin-bottom: 22px;

    border-bottom: 1px solid #eeeeee;
}

.news-list-image {
    display: block;

    width: 240px;
    height: 155px;

    overflow: hidden;

    border-radius: 5px;

    background: #eeeeee;
}

.news-list-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.news-list-item:hover .news-list-image img {
    transform: scale(1.03);
}

.news-list-content {
    min-width: 0;
}

.news-list-content .news-category {
    display: inline-block;

    margin-bottom: 5px;
}

.news-list-content h3 {
    margin: 4px 0 5px;

    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
}

.news-list-content h3 a {
    color: #222222;

    transition: color 0.2s ease;
}

.news-list-content h3 a:hover {
    color: #e30613;
}

.news-list-content p {
    margin-top: 8px;

    color: #666666;

    font-size: 14px;
    line-height: 1.65;
}


/* SUPPORT CSS HTML LAMA */

.news-item {
    display: grid;

    grid-template-columns: 240px minmax(0, 1fr);

    gap: 20px;

    padding-bottom: 22px;

    margin-bottom: 22px;

    border-bottom: 1px solid #eeeeee;
}

.news-item img {
    height: 155px;

    object-fit: cover;

    border-radius: 5px;
}

.news-content h3 {
    margin: 5px 0;

    font-size: 20px;
    line-height: 1.35;
}

.news-content h3 a:hover {
    color: #e30613;
}

.news-content p {
    margin-top: 8px;

    color: #666666;

    font-size: 14px;
}


/* ========================================
   CATEGORY CARDS
======================================== */

.category-section {
    margin-bottom: 40px;
}

.card-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.news-card {
    min-width: 0;
}

.news-card > a {
    display: block;

    overflow: hidden;

    border-radius: 5px;

    background: #eeeeee;
}

.news-card img {
    width: 100%;
    height: 160px;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.news-card:hover img {
    transform: scale(1.03);
}

.news-card-content {
    padding-top: 10px;
}

.news-card-content .news-category {
    display: inline-block;

    margin-bottom: 5px;
}

.news-card h3 {
    margin-top: 4px;

    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;

    transition: color 0.2s ease;
}

.news-card h3 a:hover,
.news-card:hover h3 {
    color: #e30613;
}

.news-card .news-meta {
    display: block;

    margin-top: 6px;
}


/* ========================================
   SIDEBAR
======================================== */

.sidebar-widget {
    margin-bottom: 30px;
}

.widget-title {
    margin-bottom: 18px;

    padding-left: 10px;

    border-left: 4px solid #e30613;

    font-size: 20px;
    font-weight: 800;
}


/* ========================================
   POPULAR
======================================== */

.popular-item {
    display: flex;

    gap: 15px;

    padding-bottom: 16px;

    margin-bottom: 16px;

    border-bottom: 1px solid #eeeeee;
}

.popular-number {
    min-width: 38px;

    color: #e30613;

    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.popular-item a {
    display: block;

    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;

    transition: color 0.2s ease;
}

.popular-item a:hover {
    color: #e30613;
}

.popular-item div span {
    display: block;

    margin-top: 4px;

    color: #999999;

    font-size: 11px;
}


/* ========================================
   SIDEBAR AD
======================================== */

.sidebar-ad {
    width: 100%;
    height: 250px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    background: #f4f4f4;

    border: 1px solid #e5e5e5;

    color: #999999;

    text-align: center;

    font-size: 13px;
}


/* ========================================
   CATEGORY LIST
======================================== */

.category-list li {
    border-bottom: 1px solid #eeeeee;
}

.category-list a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 10px 0;

    font-size: 14px;

    transition: color 0.2s ease;
}

.category-list a:hover {
    color: #e30613;
}

.category-list span {
    padding: 2px 8px;

    border-radius: 10px;

    background: #f2f2f2;
    color: #777777;

    font-size: 11px;
}


/* ========================================
   BREADCRUMB
======================================== */

.breadcrumb {
    display: flex;
    align-items: center;

    gap: 8px;

    padding: 18px 0;

    color: #888888;

    font-size: 13px;
}

.breadcrumb a {
    color: #555555;
}

.breadcrumb a:hover {
    color: #e30613;
}


/* ========================================
   FOOTER
======================================== */

.footer {
    background: #161616;

    color: #bbbbbb;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 50px;

    padding-top: 45px;
    padding-bottom: 45px;
}

.footer-about .brand-logo {
    margin-bottom: 15px;
}

.footer-about p {
    max-width: 500px;

    color: #999999;

    font-size: 14px;
}

.footer h3 {
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 16px;
}

.footer li {
    margin-bottom: 8px;
}

.footer li a {
    color: #aaaaaa;

    font-size: 14px;

    transition: color 0.2s ease;
}

.footer li a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 17px 0;

    border-top: 1px solid #292929;

    color: #777777;

    text-align: center;

    font-size: 13px;
}


/* =========================================================
   BERITA6 - SEARCH PAGE
========================================================= */

/* Wrapper utama search page */
.search-page {
    width: 100%;
}

/* Header halaman pencarian */
.search-page-header {
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eeeeee;
}

.search-page-header .search-page-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #e30613;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.search-page-header h1 {
    margin: 0 0 10px;
    color: #171717;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
}

.search-page-header p {
    max-width: 760px;
    margin: 0;
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SEARCH FORM
========================================================= */

.search-page-form {
    margin-bottom: 26px;
    padding: 22px;
    background: #f7f7f7;
    border: 1px solid #eeeeee;
    border-radius: 6px;
}

.search-page-form form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-page-form input[type="search"] {
    flex: 1;
    min-width: 0;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    background: #ffffff;
    color: #222222;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-page-form input[type="search"]::placeholder {
    color: #999999;
}

.search-page-form input[type="search"]:focus {
    border-color: #e30613;
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.08);
}

.search-page-form button {
    height: 48px;
    padding: 0 25px;
    border: 0;
    border-radius: 4px;
    background: #e30613;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-page-form button:hover {
    background: #c9000c;
}


/* =========================================================
   SEARCH RESULT INFO
========================================================= */

.search-result-info {
    margin-bottom: 0;
    padding: 0 0 16px;
    border-bottom: 2px solid #eeeeee;
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

.search-result-info strong {
    color: #222222;
    font-weight: 700;
}


/* =========================================================
   SEARCH RESULT LIST
========================================================= */

.search-results {
    width: 100%;
}

.search-result-item {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid #eeeeee;
}

.search-result-image {
    display: block;
    width: 250px;
    height: 155px;
    overflow: hidden;
    border-radius: 5px;
    background: #eeeeee;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.search-result-item:hover .search-result-image img {
    transform: scale(1.035);
}

.search-result-content {
    min-width: 0;
}

.search-result-category {
    display: inline-block;
    margin-bottom: 6px;
    color: #e30613;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-result-content h2 {
    margin: 0 0 7px;
    color: #222222;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
}

.search-result-content h2 a {
    color: #222222;
    text-decoration: none;
    transition: color 0.2s ease;
}

.search-result-content h2 a:hover {
    color: #e30613;
}

.search-result-meta {
    color: #999999;
    font-size: 11px;
    line-height: 1.5;
}

.search-result-content p {
    margin: 10px 0 0;
    color: #666666;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   NO RESULT
========================================================= */

.search-no-result {
    margin-top: 30px;
    padding: 45px 25px;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    background: #fafafa;
    text-align: center;
}

.search-no-result h2 {
    margin: 0 0 10px;
    color: #222222;
    font-size: 23px;
    font-weight: 800;
}

.search-no-result p {
    max-width: 520px;
    margin: 0 auto;
    color: #777777;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SEARCH HIGHLIGHT
========================================================= */

.search-highlight {
    padding: 1px 3px;
    background: #fff3f4;
    color: #e30613;
    font-weight: 700;
}


/* =========================================================
   SEARCH PAGE SIDEBAR
========================================================= */

.search-sidebar {
    min-width: 0;
}

.search-sidebar .sidebar-widget {
    margin-bottom: 25px;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.search-page-form button:focus-visible,
.search-page-form input:focus-visible,
.search-result-content h2 a:focus-visible {
    outline: 2px solid #e30613;
    outline-offset: 2px;
}


/* ========================================
   STATIC PAGE / ABOUT
======================================== */

.static-page-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 320px;

    gap: 40px;

    padding-bottom: 60px;
}

.static-page-content {
    min-width: 0;
}


/* PAGE HEADER */

.static-page-header {
    padding-bottom: 25px;

    margin-bottom: 30px;

    border-bottom: 1px solid #eeeeee;
}

.static-page-label {
    display: inline-block;

    margin-bottom: 6px;

    color: #e30613;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
}

.static-page-header h1 {
    margin-bottom: 8px;

    color: #171717;

    font-size: 40px;
    line-height: 1.2;
}

.static-page-header p {
    max-width: 720px;

    color: #666666;

    font-size: 16px;
    line-height: 1.7;
}


/* ABOUT INTRO */

.about-intro {
    display: grid;

    grid-template-columns:
        280px 1fr;

    gap: 35px;

    align-items: center;

    margin-bottom: 45px;
}

.about-brand-box {
    display: flex;

    min-height: 210px;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 25px;

    border-radius: 8px;

    background: #161616;

    text-align: center;
}

.about-brand-box p {
    margin-top: 8px;

    color: #999999;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.about-intro-text h2 {
    margin-bottom: 12px;

    font-size: 28px;
}

.about-intro-text p {
    margin-bottom: 13px;

    color: #555555;

    font-size: 16px;
    line-height: 1.8;
}


/* ABOUT SECTION */

.about-section {
    margin-bottom: 45px;
}

.about-section-description {
    margin-top: -5px;
    margin-bottom: 20px;

    color: #666666;

    font-size: 15px;
    line-height: 1.7;
}


/* VISION MISSION */

.about-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.about-card {
    position: relative;

    padding: 28px;

    border: 1px solid #eeeeee;

    border-radius: 7px;

    background: #ffffff;
}

.about-number {
    display: block;

    margin-bottom: 10px;

    color: #e30613;

    font-size: 28px;
    font-weight: 900;
}

.about-card h3 {
    margin-bottom: 8px;

    font-size: 21px;
}

.about-card p {
    color: #666666;

    font-size: 14px;
    line-height: 1.7;
}


/* VALUES */

.values-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.value-card {
    padding: 24px;

    border: 1px solid #eeeeee;

    border-radius: 6px;

    transition: 0.2s;
}

.value-card:hover {
    transform: translateY(-2px);

    border-color: #dddddd;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.05);
}

.value-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    border-radius: 50%;

    background: #fff0f1;

    color: #e30613;

    font-size: 19px;
    font-weight: 900;
}

.value-card h3 {
    margin-bottom: 7px;

    font-size: 18px;
}

.value-card p {
    color: #666666;

    font-size: 14px;
    line-height: 1.7;
}


/* COVERAGE */

.coverage-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.coverage-card {
    display: block;

    min-height: 135px;

    padding: 20px;

    border: 1px solid #eeeeee;

    border-radius: 6px;

    transition: 0.2s;
}

.coverage-card:hover {
    border-color: #e30613;

    transform: translateY(-2px);
}

.coverage-card strong {
    display: block;

    margin-bottom: 8px;

    color: #222222;

    font-size: 16px;
}

.coverage-card span {
    display: block;

    color: #777777;

    font-size: 13px;
    line-height: 1.6;
}


/* EDITORIAL */

.editorial-section p {
    margin-bottom: 16px;

    color: #555555;

    font-size: 15px;
    line-height: 1.8;
}

.editorial-section a {
    color: #e30613;

    font-weight: 700;
}


/* CTA */

.about-cta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 30px;

    margin-top: 45px;

    border-radius: 8px;

    background: #161616;

    color: #ffffff;
}

.about-cta span {
    color: #e30613;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}

.about-cta h2 {
    margin: 5px 0 6px;

    font-size: 23px;
}

.about-cta p {
    color: #aaaaaa;

    font-size: 13px;
}

.about-cta > a {
    flex-shrink: 0;

    padding: 11px 18px;

    border-radius: 4px;

    background: #e30613;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    transition: 0.2s;
}

.about-cta > a:hover {
    background: #bd0010;
}


/* SIDEBAR ABOUT */

.sidebar-about-text {
    color: #666666;

    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   CONTACT PAGE
======================================== */

.contact-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    padding-bottom: 60px;
}

.contact-main {
    min-width: 0;
}


/* CONTACT INFO */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 45px;
}

.contact-info-card {
    padding: 24px;
    border: 1px solid #eeeeee;
    border-radius: 7px;
    background: #ffffff;
    transition: 0.2s;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    border-color: #dddddd;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 50%;
    background: #fff0f1;
    color: #e30613;
    font-size: 20px;
    font-weight: 800;
}

.contact-info-card h2 {
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-info-card p {
    min-height: 65px;
    margin-bottom: 12px;
    color: #666666;
    font-size: 13px;
    line-height: 1.65;
}

.contact-info-card a {
    color: #e30613;
    font-size: 13px;
    font-weight: 700;
    word-break: break-word;
}


/* FORM SECTION */

.contact-form-section {
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    background: #ffffff;
}

.contact-form-intro {
    margin-bottom: 22px;
    color: #666666;
    font-size: 14px;
}


/* FORM */

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: #333333;
    font-size: 13px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    background: #ffffff;
    color: #333333;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

.form-group input,
.form-group select {
    height: 47px;
}

.form-group textarea {
    resize: vertical;
    min-height: 170px;
    line-height: 1.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e30613;
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.06);
}

.form-group .input-error {
    border-color: #e30613;
}

.form-error {
    display: block;
    min-height: 17px;
    margin-top: 5px;
    color: #e30613;
    font-size: 11px;
}


/* CONSENT */

.contact-consent {
    margin-bottom: 22px;
}

.contact-consent label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #666666;
    font-size: 12px;
    line-height: 1.6;
}

.contact-consent input {
    margin-top: 3px;
}


/* BUTTON */

.contact-submit {
    min-width: 150px;
    padding: 12px 22px;
    border: none;
    border-radius: 5px;
    background: #e30613;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s;
}

.contact-submit:hover {
    background: #bd0010;
}


/* SUCCESS */

.contact-success {
    display: none;
    margin-top: 20px;
    padding: 15px 18px;
    border-left: 4px solid #178a40;
    border-radius: 4px;
    background: #eef9f1;
    color: #256a3c;
    font-size: 13px;
    line-height: 1.6;
}

.contact-success.active {
    display: block;
}


/* CONTACT NOTE */

.contact-note {
    margin-bottom: 25px;
}

.contact-note h2 {
    margin-bottom: 12px;
    font-size: 24px;
}

.contact-note p {
    margin-bottom: 13px;
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
}


/* SECURITY */

.contact-security {
    padding: 20px;
    border-left: 4px solid #e30613;
    background: #f8f8f8;
}

.contact-security strong {
    display: block;
    margin-bottom: 5px;
    color: #222222;
    font-size: 14px;
}

.contact-security p {
    color: #666666;
    font-size: 13px;
    line-height: 1.6;
}


/* SIDEBAR */

.contact-sidebar-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
}

.contact-sidebar-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.contact-sidebar-item span {
    display: block;
    margin-bottom: 4px;
    color: #999999;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-sidebar-item a {
    color: #333333;
    font-size: 13px;
    font-weight: 700;
    word-break: break-word;
}

.contact-sidebar-item a:hover {
    color: #e30613;
}

/* ========================================
   PRIVACY POLICY
======================================== */

.privacy-page-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 320px;

    gap: 40px;

    padding-bottom: 60px;
}

.privacy-content {
    min-width: 0;
}


/* LAST UPDATED */

.privacy-updated {
    display: inline-block;

    margin-top: 15px;

    padding: 7px 11px;

    border-radius: 4px;

    background: #f5f5f5;

    color: #777777;

    font-size: 12px;
}

.privacy-updated strong {
    color: #333333;
}


/* SECTIONS */

.privacy-section {
    margin-bottom: 35px;

    scroll-margin-top: 90px;
}

.privacy-section h2 {
    margin-bottom: 15px;

    color: #171717;

    font-size: 25px;
    line-height: 1.35;
}

.privacy-section h3 {
    margin-top: 24px;
    margin-bottom: 10px;

    color: #222222;

    font-size: 18px;
}

.privacy-section p {
    margin-bottom: 15px;

    color: #555555;

    font-size: 15px;
    line-height: 1.8;
}


/* LIST */

.privacy-section ul {
    margin: 10px 0 20px 20px;
}

.privacy-section li {
    position: relative;

    margin-bottom: 9px;

    color: #555555;

    font-size: 14px;
    line-height: 1.7;
}

.privacy-section li::marker {
    color: #e30613;
}


/* NOTE */

.privacy-note {
    margin-top: 20px;

    padding: 18px 20px;

    border-left: 4px solid #e30613;

    background: #f8f8f8;
}

.privacy-note strong {
    display: block;

    margin-bottom: 5px;

    color: #222222;

    font-size: 13px;
}

.privacy-note p {
    margin: 0;

    color: #666666;

    font-size: 13px;
    line-height: 1.7;
}


/* CONTACT BUTTON */

.privacy-contact-button {
    display: inline-block;

    margin-top: 5px;

    padding: 11px 18px;

    border-radius: 4px;

    background: #e30613;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    transition: 0.2s;
}

.privacy-contact-button:hover {
    background: #bd0010;
}


/* DISCLAIMER */

.privacy-disclaimer {
    margin-top: 45px;

    padding: 22px;

    border: 1px solid #eeeeee;

    border-radius: 6px;

    background: #fafafa;
}

.privacy-disclaimer strong {
    display: block;

    margin-bottom: 7px;

    color: #e30613;

    font-size: 13px;
    text-transform: uppercase;
}

.privacy-disclaimer p {
    margin: 0;

    color: #666666;

    font-size: 13px;
    line-height: 1.7;
}


/* SIDEBAR LINKS */

.privacy-sidebar-links {
    list-style: none;

    margin: 0;
    padding: 0;
}

.privacy-sidebar-links li {
    border-bottom: 1px solid #eeeeee;
}

.privacy-sidebar-links li:last-child {
    border-bottom: 0;
}

.privacy-sidebar-links a {
    display: block;

    padding: 11px 0;

    color: #555555;

    font-size: 13px;

    transition: 0.2s;
}

.privacy-sidebar-links a:hover {
    color: #e30613;

    padding-left: 4px;
}

/* =========================================================
   BERITA6 - CATEGORY PAGE
   Digunakan untuk:
   /nasional/
   /ekonomi/
   /olahraga/
   /lifestyle/
   /internasional/
========================================================= */


/* =========================================================
   CATEGORY MAIN LAYOUT
========================================================= */

.category-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;

    padding-top: 10px;
    padding-bottom: 60px;
}

.category-content {
    min-width: 0;
}


/* =========================================================
   CATEGORY HEADER
========================================================= */

.category-page-header {
    margin-bottom: 30px;
    padding-bottom: 20px;

    border-bottom: 1px solid #eeeeee;
}

.category-page-label {
    display: inline-block;

    margin-bottom: 8px;

    color: #e30613;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.category-page-header h1 {
    margin: 0 0 10px;

    color: #171717;

    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

.category-page-header p {
    max-width: 760px;

    margin: 0;

    color: #666666;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   FEATURED NEWS
========================================================= */

.category-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(260px, 1fr);
    gap: 25px;

    margin-bottom: 45px;
}


/* =========================================================
   MAIN FEATURED NEWS
========================================================= */

.category-featured-main {
    min-width: 0;
}

.category-featured-image {
    position: relative;

    display: block;

    width: 100%;
    aspect-ratio: 16 / 9;

    margin-bottom: 17px;

    overflow: hidden;

    border-radius: 6px;

    background: #eeeeee;
}

.category-featured-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.category-featured-main:hover
.category-featured-image img {
    transform: scale(1.025);
}

.category-featured-content {
    min-width: 0;
}

.mini-category {
    display: inline-block;

    margin-bottom: 7px;

    color: #e30613;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-featured-content h2 {
    margin: 0 0 8px;

    font-size: 27px;
    font-weight: 800;
    line-height: 1.3;
}

.category-featured-content h2 a {
    color: #171717;

    text-decoration: none;

    transition: color 0.2s ease;
}

.category-featured-content h2 a:hover {
    color: #e30613;
}

.category-featured-content p {
    margin: 10px 0 0;

    color: #666666;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   ARTICLE META
========================================================= */

.category-layout .article-meta {
    color: #999999;

    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   FEATURED SIDE NEWS
========================================================= */

.category-featured-side {
    display: flex;
    flex-direction: column;

    gap: 17px;
}

.category-mini-news {
    display: grid;
    grid-template-columns: 125px minmax(0, 1fr);
    gap: 13px;

    padding-bottom: 17px;

    border-bottom: 1px solid #eeeeee;
}

.category-mini-news:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}

.category-mini-news > a {
    display: block;

    width: 125px;
    height: 82px;

    overflow: hidden;

    border-radius: 4px;

    background: #eeeeee;
}

.category-mini-news img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.category-mini-news:hover img {
    transform: scale(1.04);
}

.category-mini-news h3 {
    margin: 0 0 6px;

    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.category-mini-news h3 a {
    color: #222222;

    text-decoration: none;

    transition: color 0.2s ease;
}

.category-mini-news h3 a:hover {
    color: #e30613;
}


/* =========================================================
   CATEGORY NEWS SECTION
========================================================= */

.category-news-section {
    margin-top: 10px;
}

.category-news-section .section-heading {
    position: relative;

    margin-bottom: 5px;
    padding-bottom: 12px;

    border-bottom: 2px solid #eeeeee;
}

.category-news-section .section-heading::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -2px;

    width: 65px;
    height: 2px;

    background: #e30613;
}

.category-news-section .section-heading h2 {
    margin: 0;

    color: #171717;

    font-size: 22px;
    font-weight: 800;
}


/* =========================================================
   NEWS LIST
========================================================= */

.category-news-list {
    width: 100%;
}

.category-list-item {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 20px;

    padding: 22px 0;

    border-bottom: 1px solid #eeeeee;
}

.category-list-image {
    display: block;

    width: 250px;
    height: 155px;

    overflow: hidden;

    border-radius: 5px;

    background: #eeeeee;
}

.category-list-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.category-list-item:hover
.category-list-image img {
    transform: scale(1.035);
}

.category-list-content {
    min-width: 0;
}

.category-list-content h2 {
    margin: 0 0 7px;

    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
}

.category-list-content h2 a {
    color: #222222;

    text-decoration: none;

    transition: color 0.2s ease;
}

.category-list-content h2 a:hover {
    color: #e30613;
}

.category-list-content p {
    margin: 10px 0 0;

    color: #666666;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   PAGINATION
========================================================= */

.pagination {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 30px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 36px;
    height: 36px;

    padding: 0 10px;

    border: 1px solid #e5e5e5;
    border-radius: 4px;

    background: #ffffff;

    color: #444444;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.pagination a:hover {
    border-color: #e30613;

    color: #e30613;
}

.pagination a.active {
    border-color: #e30613;

    background: #e30613;

    color: #ffffff;
}

.pagination a.disabled {
    pointer-events: none;

    opacity: 0.4;
}


/* =========================================================
   CATEGORY SIDEBAR ACTIVE LINK
========================================================= */

.category-list a.active {
    color: #e30613;

    font-weight: 700;
}


/* =========================================================
   NAVIGATION ACTIVE CATEGORY
========================================================= */

.nav-menu a.active {
    position: relative;

    font-weight: 700;
}

.nav-menu a.active::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 0;

    height: 3px;

    background: #ffffff;
}

/* ========================================
   BERITA6 - ARTICLE PAGE
======================================== */


/* ========================================
   LAYOUT
======================================== */

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;

    align-items: start;

    padding-top: 15px;
    padding-bottom: 60px;
}

.article-content {
    min-width: 0;
}


/* ========================================
   ARTICLE HEADER
======================================== */

.article-header {
    margin-bottom: 25px;
}

.article-category {
    display: inline-block;

    margin-bottom: 12px;

    color: #e30613;

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}

.article-category:hover {
    text-decoration: underline;
}


.article-header h1 {
    max-width: 900px;

    margin: 0 0 15px;

    color: #161616;

    font-size: 38px;
    font-weight: 800;

    line-height: 1.18;

    letter-spacing: -0.5px;
}


.article-lead {
    max-width: 850px;

    margin: 0 0 17px;

    color: #555;

    font-size: 18px;

    line-height: 1.65;
}


.article-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    align-items: center;

    color: #888;

    font-size: 13px;
}

.article-meta strong {
    color: #333;
}


/* ========================================
   FEATURED IMAGE
======================================== */

.article-featured-image {
    margin: 0 0 20px;
}

.article-featured-image img {
    display: block;

    width: 100%;

    aspect-ratio: 16 / 9;

    object-fit: cover;

    border-radius: 6px;
}

.article-featured-image figcaption {
    margin-top: 8px;

    color: #888;

    font-size: 12px;

    line-height: 1.5;
}


/* ========================================
   SHARE
======================================== */

.article-share {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    align-items: center;

    padding: 14px 0;

    margin-bottom: 20px;

    border-top: 1px solid #eee;

    border-bottom: 1px solid #eee;
}

.article-share span {
    margin-right: 5px;

    color: #555;

    font-size: 13px;

    font-weight: 700;
}

.article-share a {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 7px 12px;

    border: 1px solid #ddd;

    border-radius: 4px;

    color: #444;

    font-size: 12px;

    font-weight: 700;

    transition: 0.2s ease;
}

.article-share a:hover {
    border-color: #e30613;

    color: #e30613;
}


/* ========================================
   ARTICLE BODY
======================================== */

.article-body {
    color: #333;

    font-size: 17px;

    line-height: 1.85;
}

.article-body p {
    margin: 0 0 22px;
}

.article-body > p:first-child {
    font-size: 18px;
}

.article-body h2 {
    margin: 36px 0 15px;

    color: #1b1b1b;

    font-size: 26px;

    line-height: 1.3;
}

.article-body h3 {
    margin: 30px 0 14px;

    color: #222;

    font-size: 21px;

    line-height: 1.35;
}

.article-body a {
    color: #e30613;

    text-decoration: underline;
}

.article-body ul,
.article-body ol {
    margin: 5px 0 25px 25px;
}

.article-body li {
    margin-bottom: 8px;
}


/* ========================================
   BLOCKQUOTE
======================================== */

.article-body blockquote {
    position: relative;

    margin: 30px 0;

    padding: 22px 25px;

    border-left: 4px solid #e30613;

    background: #f7f7f7;
}

.article-body blockquote p {
    margin: 0 0 8px;

    color: #333;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.7;
}

.article-body blockquote cite {
    color: #777;

    font-size: 13px;

    font-style: normal;
}


/* ========================================
   TAG
======================================== */

.article-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    align-items: center;

    padding-top: 22px;

    margin-top: 30px;

    border-top: 1px solid #eee;
}

.article-tags span {
    color: #333;

    font-size: 13px;

    font-weight: 800;
}

.article-tags a {
    padding: 6px 11px;

    background: #f3f3f3;

    border-radius: 3px;

    color: #555;

    font-size: 12px;

    transition: 0.2s;
}

.article-tags a:hover {
    background: #e30613;

    color: #fff;
}


/* ========================================
   AUTHOR
======================================== */

.article-author {
    display: flex;

    gap: 17px;

    align-items: center;

    margin-top: 30px;

    padding: 20px;

    background: #f7f7f7;

    border-radius: 5px;
}

.article-author-icon {
    display: flex;

    flex: 0 0 55px;

    width: 55px;
    height: 55px;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e30613;

    color: #fff;

    font-size: 16px;

    font-weight: 800;
}

.article-author-label {
    display: block;

    margin-bottom: 3px;

    color: #999;

    font-size: 11px;

    text-transform: uppercase;
}

.article-author h3 {
    margin: 0 0 4px;

    color: #222;

    font-size: 16px;
}

.article-author p {
    margin: 0;

    color: #666;

    font-size: 13px;

    line-height: 1.5;
}


/* ========================================
   RELATED NEWS
======================================== */

.article-related {
    margin-top: 45px;
}

.article-related-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.article-related-card {
    min-width: 0;
}

.article-related-image {
    display: block;

    width: 100%;

    margin-bottom: 10px;

    overflow: hidden;

    border-radius: 5px;

    aspect-ratio: 16 / 9;
}

.article-related-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.article-related-card:hover img {
    transform: scale(1.04);
}

.article-related-card .news-category {
    display: block;

    margin-bottom: 5px;

    color: #e30613;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;
}

.article-related-card h3 {
    margin: 0 0 7px;

    font-size: 15px;

    line-height: 1.4;
}

.article-related-card h3 a {
    color: #222;
}

.article-related-card h3 a:hover {
    color: #e30613;
}

.article-related-card .news-meta {
    color: #999;

    font-size: 11px;
}

/* ========================================
   BERITA6 GLOBAL LOGO
======================================== */
