/*
Theme Name: KahoApp
Theme URI: https://kahoapp.com
Author: KahoApp
Description: Custom Hindi News Portal Theme for KahoApp.
Version: 2.0.0
Text Domain: kahoapp
*/

/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}


/* =========================================================
   GLOBAL CONTAINER
   ========================================================= */

.kaho-container {
    width: min(1400px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}


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

.kaho-top-header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.kaho-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 30px;
}


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

.kaho-logo {
    flex-shrink: 0;
}

.kaho-logo a {
    display: inline-block;
    color: #d71920;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

.kaho-logo a::after {
    content: "";
    display: block;
    width: 32px;
    height: 3px;
    margin-top: 5px;
    background: #d71920;
    border-radius: 3px;
}


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

.kaho-desktop-search {
    flex: 1;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.kaho-search-form {
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
}

.kaho-search-form input {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 15px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #222222;
    font-size: 15px;
}

.kaho-search-form input::placeholder {
    color: #888888;
}

.kaho-search-form button {
    width: 48px;
    height: 44px;
    padding: 0;
    border: 0;
    background: #d71920;
    color: #ffffff;
    font-size: 17px;
}

.kaho-search-form button:hover {
    background: #b9141a;
}


/* =========================================================
   HEADER ACTIONS / LOGIN
   ========================================================= */

.kaho-header-actions {
    flex-shrink: 0;
}

.kaho-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    padding: 9px 18px;
    border: 1px solid #d71920;
    border-radius: 5px;
    background: #ffffff;
    color: #d71920;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.kaho-login-btn:hover {
    background: #d71920;
    color: #ffffff;
}


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

.kaho-navigation {
    background: #111111;
    border-bottom: 1px solid #222222;
}

.kaho-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: none;
}

.kaho-menu::-webkit-scrollbar {
    display: none;
}

.kaho-menu > li {
    flex-shrink: 0;
}

.kaho-menu > li > a {
    display: block;
    padding: 13px 17px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.kaho-menu > li > a:hover,
.kaho-menu > li.current-menu-item > a,
.kaho-menu > li.current-menu-ancestor > a {
    background: #d71920;
}


/* =========================================================
   BREAKING NEWS
   ========================================================= */

.kaho-breaking-bar {
    width: 100%;
    overflow: hidden;
    background: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
}

.kaho-breaking-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
}

.kaho-breaking-label {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    background: #d71920;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.kaho-breaking-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: kaho-pulse 1.2s infinite;
}

@keyframes kaho-pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.kaho-breaking-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.kaho-breaking-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 35px;
    padding-left: 25px;
    animation: kaho-breaking-scroll 35s linear infinite;
}

.kaho-breaking-track:hover {
    animation-play-state: paused;
}

.kaho-breaking-item {
    position: relative;
    display: block;
    white-space: nowrap;
    color: #222222;
    font-size: 14px;
    font-weight: 600;
}

.kaho-breaking-item::after {
    content: "•";
    position: absolute;
    right: -21px;
    color: #d71920;
}

@keyframes kaho-breaking-scroll {
    from {
        transform: translateX(0);
    }

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


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

.kaho-mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    padding: 7px;
    border: 0;
    background: transparent;
}

.kaho-mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background: #111111;
    transition: 0.2s ease;
}


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

.kaho-mobile-menu {
    display: none;
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.kaho-mobile-menu.is-open {
    display: block;
}

.kaho-mobile-menu-inner {
    padding: 18px 20px;
}

.kaho-mobile-search {
    display: flex;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.kaho-mobile-search input {
    flex: 1;
    min-width: 0;
    padding: 11px;
    border: 0;
    outline: 0;
    font-size: 14px;
}

.kaho-mobile-search button {
    width: 48px;
    border: 0;
    background: #d71920;
    color: #ffffff;
}

.kaho-mobile-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.kaho-mobile-menu-list li {
    border-bottom: 1px solid #eeeeee;
}

.kaho-mobile-menu-list li:last-child {
    border-bottom: 0;
}

.kaho-mobile-menu-list li a {
    display: block;
    padding: 12px 5px;
    color: #222222;
    font-size: 15px;
    font-weight: 700;
}


/* =========================================================
   HOMEPAGE
   ========================================================= */

.kaho-homepage {
    width: 100%;
    min-height: 500px;
    background: #f5f5f5;
}


/* =========================================================
   HOMEPAGE HERO
   ========================================================= */

.kaho-hero-section {
    padding: 30px 0 35px;
}

.kaho-section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.kaho-section-heading h1 {
    margin: 0;
    color: #111111;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
}

.kaho-section-heading span {
    display: block;
    width: 45px;
    height: 4px;
    background: #d71920;
    border-radius: 3px;
}


/* =========================================================
   HERO GRID
   ========================================================= */

.kaho-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(350px, 1fr);
    gap: 20px;
}


/* =========================================================
   MAIN HERO CARD
   ========================================================= */

.kaho-main-hero-card {
    overflow: hidden;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.kaho-main-hero-card > a {
    display: block;
}

.kaho-hero-image {
    width: 100%;
    height: 430px;
    overflow: hidden;
    background: #dddddd;
}

.kaho-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.kaho-main-hero-card:hover .kaho-hero-image img {
    transform: scale(1.03);
}

.kaho-hero-content {
    padding: 20px 22px 22px;
}

.kaho-category-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 9px;
    background: #d71920;
    color: #ffffff;
    border-radius: 3px;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
}

.kaho-hero-content h2 {
    margin: 0 0 10px;
    color: #111111;
    font-size: 30px;
    line-height: 1.28;
    font-weight: 800;
}

.kaho-hero-content p {
    margin: 0 0 15px;
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
}

.kaho-read-more {
    display: inline-block;
    color: #d71920;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   SIDE HERO STORIES
   ========================================================= */

.kaho-side-story {
    margin-bottom: 15px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.kaho-side-story:last-child {
    margin-bottom: 0;
}

.kaho-side-story > a {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    min-height: 135px;
}

.kaho-side-image {
    width: 150px;
    height: 135px;
    overflow: hidden;
    background: #dddddd;
}

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

.kaho-side-story:hover .kaho-side-image img {
    transform: scale(1.05);
}

.kaho-side-content {
    padding: 14px 15px;
}

.kaho-side-content .kaho-category-label {
    margin-bottom: 7px;
    padding: 5px 7px;
    font-size: 10px;
}

.kaho-side-content h3 {
    margin: 0 0 8px;
    color: #111111;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 750;
}

.kaho-side-content time {
    color: #888888;
    font-size: 11px;
}


/* =========================================================
   NO IMAGE
   ========================================================= */

.kaho-no-image,
.kaho-news-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222222;
    color: #ffffff;
    font-weight: 800;
}

.kaho-no-image {
    font-size: 22px;
}

.kaho-news-placeholder {
    font-size: 20px;
}


/* =========================================================
   LATEST + CATEGORY SECTIONS
   ========================================================= */

.kaho-latest-section,
.kaho-category-section {
    padding: 25px 0 35px;
}


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

.kaho-section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
}

.kaho-section-title {
    display: flex;
    align-items: center;
    gap: 9px;
}

.kaho-section-red-line {
    width: 5px;
    height: 27px;
    flex: 0 0 5px;
    background: #d71920;
    border-radius: 3px;
}

.kaho-section-title h2,
.kaho-section-title-row > h2 {
    position: relative;
    margin: 0;
    color: #111111;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
}

.kaho-view-all {
    color: #d71920;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.kaho-view-all:hover {
    text-decoration: underline;
}

.kaho-live-label {
    color: #d71920;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}


/* =========================================================
   LATEST NEWS GRID
   ========================================================= */

.kaho-latest-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}


/* =========================================================
   CATEGORY GRID
   ========================================================= */

.kaho-category-news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}


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

.kaho-news-card {
    overflow: hidden;
    background: #ffffff;
    border-radius: 7px;
    box-shadow: 0 2px 9px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.kaho-news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.11);
}

.kaho-news-card > a {
    display: block;
}

.kaho-news-card-image {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #e7e7e7;
}

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

.kaho-news-card:hover .kaho-news-card-image img {
    transform: scale(1.04);
}

.kaho-news-card-content {
    padding: 13px 14px 15px;
}

.kaho-card-category {
    display: inline-block;
    margin-bottom: 7px;
    color: #d71920;
    font-size: 11px;
    font-weight: 800;
}

.kaho-news-card-content h3 {
    margin: 0 0 8px;
    color: #111111;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 750;
}

.kaho-news-card-content p {
    margin: 0 0 10px;
    color: #666666;
    font-size: 13px;
    line-height: 1.5;
}

.kaho-news-card-content time {
    display: block;
    color: #999999;
    font-size: 11px;
}


/* =========================================================
   EMPTY NEWS
   ========================================================= */

.kaho-empty-news {
    padding: 45px 20px;
    background: #ffffff;
    border-radius: 8px;
    color: #666666;
    text-align: center;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    margin-top: 60px;
    padding: 30px 0;
    background: #111111;
    color: #ffffff;
    text-align: center;
}


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

@media (max-width: 1100px) {

    .kaho-hero-grid {
        grid-template-columns: 1fr;
    }

    .kaho-main-hero-card {
        margin-bottom: 5px;
    }

    .kaho-side-story > a {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .kaho-side-image {
        width: 180px;
        height: 145px;
    }

    .kaho-latest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kaho-category-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


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

@media (max-width: 768px) {

    .kaho-container {
        width: calc(100% - 24px);
    }

    .kaho-header-inner {
        min-height: 62px;
        gap: 12px;
        justify-content: space-between;
    }

    .kaho-mobile-menu-btn {
        display: block;
    }

    .kaho-logo {
        flex: 1;
        text-align: center;
    }

    .kaho-logo a {
        font-size: 25px;
    }

    .kaho-logo a::after {
        width: 25px;
        height: 2px;
        margin-left: auto;
        margin-right: auto;
    }

    .kaho-desktop-search {
        display: none;
    }

    .kaho-header-actions {
        width: 40px;
    }

    .kaho-login-btn {
        width: 40px;
        min-width: 40px;
        padding: 8px 0;
        border: 0;
        font-size: 0;
    }

    .kaho-login-btn::before {
        content: "👤";
        font-size: 18px;
    }

    .kaho-navigation {
        display: none;
    }

    .kaho-breaking-inner {
        min-height: 40px;
    }

    .kaho-breaking-label {
        min-height: 40px;
        padding: 0 10px;
        font-size: 10px;
    }

    .kaho-breaking-track {
        gap: 28px;
        padding-left: 15px;
        animation-duration: 28s;
    }

    .kaho-breaking-item {
        font-size: 12px;
    }

    .kaho-breaking-item::after {
        right: -17px;
    }


    /* HERO */

    .kaho-hero-section {
        padding: 20px 0 30px;
    }

    .kaho-section-heading {
        margin-bottom: 15px;
    }

    .kaho-section-heading h1 {
        font-size: 23px;
    }

    .kaho-section-heading span {
        width: 32px;
        height: 3px;
    }

    .kaho-hero-grid {
        gap: 12px;
    }

    .kaho-hero-image {
        height: 240px;
    }

    .kaho-hero-content {
        padding: 15px;
    }

    .kaho-hero-content h2 {
        font-size: 21px;
        line-height: 1.3;
    }

    .kaho-hero-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .kaho-side-story {
        margin-bottom: 12px;
    }

    .kaho-side-story > a {
        grid-template-columns: 115px minmax(0, 1fr);
        min-height: 110px;
    }

    .kaho-side-image {
        width: 115px;
        height: 110px;
    }

    .kaho-side-content {
        padding: 10px 11px;
    }

    .kaho-side-content h3 {
        font-size: 14px;
        line-height: 1.35;
    }

    .kaho-side-content time {
        font-size: 10px;
    }


    /* SECTIONS */

    .kaho-latest-section,
    .kaho-category-section {
        padding: 20px 0 28px;
    }

    .kaho-section-title-row {
        margin-bottom: 14px;
    }

    .kaho-section-title h2,
    .kaho-section-title-row > h2 {
        font-size: 21px;
    }

    .kaho-section-red-line {
        width: 4px;
        height: 23px;
        flex-basis: 4px;
    }

    .kaho-view-all {
        font-size: 12px;
    }

    .kaho-live-label {
        font-size: 9px;
    }


    /* NEWS */

    .kaho-latest-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .kaho-category-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .kaho-news-card-image {
        height: 145px;
    }

    .kaho-news-card-content {
        padding: 10px;
    }

    .kaho-news-card-content h3 {
        font-size: 14px;
        line-height: 1.35;
    }

    .kaho-card-category {
        margin-bottom: 5px;
        font-size: 10px;
    }

    .kaho-news-card-content time {
        font-size: 10px;
    }
}


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

@media (max-width: 480px) {

    .kaho-container {
        width: calc(100% - 20px);
    }

    .kaho-hero-image {
        height: 210px;
    }

    .kaho-hero-content h2 {
        font-size: 20px;
    }

    .kaho-side-story > a {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    .kaho-side-image {
        width: 100px;
        height: 105px;
    }

    .kaho-side-content h3 {
        font-size: 13px;
    }

    .kaho-category-news-grid {
        grid-template-columns: 1fr;
    }

    .kaho-news-card-image {
        height: 190px;
    }

    .kaho-news-card-content h3 {
        font-size: 16px;
    }
}


/* =========================================================
   STEP 8C
   LOCAL NEWS
   ========================================================= */

.kaho-local-news-section {
    padding: 25px 0 35px;
    background: #ffffff;
}

.kaho-local-label {
    color: #777777;
    font-size: 12px;
    font-weight: 700;
}


/* State Grid */

.kaho-local-state-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}


/* State Block */

.kaho-local-state-block {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}


/* State Header */

.kaho-local-state-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 15px;
    background: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
}

.kaho-local-state-header h3 {
    margin: 0;
    color: #111111;
    font-size: 19px;
    font-weight: 800;
}

.kaho-local-state-header a {
    color: #d71920;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}


/* Local News List */

.kaho-local-news-list {
    padding: 8px 14px;
}


/* Local News Item */

.kaho-local-news-item {
    border-bottom: 1px solid #eeeeee;
}

.kaho-local-news-item:last-child {
    border-bottom: 0;
}

.kaho-local-news-item > a {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 12px;
    padding: 11px 0;
}


/* Image */

.kaho-local-news-image {
    width: 105px;
    height: 75px;
    overflow: hidden;
    background: #e5e5e5;
    border-radius: 5px;
}

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

.kaho-local-news-item:hover
.kaho-local-news-image img {
    transform: scale(1.05);
}


/* Placeholder */

.kaho-local-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222222;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}


/* Content */

.kaho-local-news-content {
    min-width: 0;
}

.kaho-local-news-content h4 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 6px;
    color: #111111;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.kaho-local-news-content time {
    color: #999999;
    font-size: 10px;
}


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

@media (max-width: 900px) {

    .kaho-local-state-grid {
        grid-template-columns: 1fr;
    }

}


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

@media (max-width: 768px) {

    .kaho-local-news-section {
        padding: 20px 0 28px;
    }

    .kaho-local-label {
        font-size: 10px;
    }

    .kaho-local-state-grid {
        gap: 12px;
    }

    .kaho-local-state-header {
        padding: 11px 12px;
    }

    .kaho-local-state-header h3 {
        font-size: 17px;
    }

    .kaho-local-news-list {
        padding: 6px 12px;
    }

    .kaho-local-news-item > a {
        grid-template-columns: 90px minmax(0, 1fr);
        gap: 10px;
    }

    .kaho-local-news-image {
        width: 90px;
        height: 68px;
    }

    .kaho-local-news-content h4 {
        font-size: 14px;
    }

}


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

@media (max-width: 480px) {

    .kaho-local-state-header h3 {
        font-size: 16px;
    }

    .kaho-local-news-item > a {
        grid-template-columns: 85px minmax(0, 1fr);
    }

    .kaho-local-news-image {
        width: 85px;
        height: 65px;
    }

}


/* =========================================================
   STEP 8C FIX
   DISTRICT + CITY LOCAL NEWS
   ========================================================= */

.kaho-local-districts {
    padding: 0 14px 14px;
    border-top: 1px solid #eeeeee;
}

.kaho-local-district-block {
    margin-top: 14px;
    padding: 13px;
    background: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 7px;
}

.kaho-local-district-header,
.kaho-local-city-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.kaho-local-district-header {
    margin-bottom: 9px;
}

.kaho-local-district-header h4 {
    margin: 0;
    color: #222222;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
}

.kaho-local-district-header a,
.kaho-local-city-header a {
    color: #d71920;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.kaho-local-district-news {
    display: grid;
    gap: 7px;
}

.kaho-local-mini-news {
    margin: 0;
    padding: 0 0 7px;
    border-bottom: 1px solid #e8e8e8;
}

.kaho-local-mini-news:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.kaho-local-mini-news a {
    display: block;
    color: #222222;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
}

.kaho-local-mini-news a:hover {
    color: #d71920;
}

.kaho-local-city-list {
    display: grid;
    gap: 9px;
    margin-top: 12px;
}

.kaho-local-city-block {
    padding: 10px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
}

.kaho-local-city-header {
    padding-bottom: 7px;
    margin-bottom: 7px;
    border-bottom: 1px solid #eeeeee;
}

.kaho-local-city-header strong {
    color: #111111;
    font-size: 13px;
    font-weight: 800;
}

.kaho-local-city-news {
    display: grid;
    gap: 6px;
}


/* =========================================================
   LOCAL NEWS RESPONSIVE FIX
   ========================================================= */

@media (max-width: 768px) {

    .kaho-local-districts {
        padding: 0 12px 12px;
    }

    .kaho-local-district-block {
        margin-top: 10px;
        padding: 10px;
    }

    .kaho-local-district-header h4 {
        font-size: 15px;
    }

    .kaho-local-mini-news a {
        font-size: 12px;
    }

    .kaho-local-city-list {
        gap: 7px;
        margin-top: 10px;
    }

    .kaho-local-city-block {
        padding: 8px;
    }

}

@media (max-width: 480px) {

    .kaho-local-district-header a,
    .kaho-local-city-header a {
        font-size: 9px;
    }

    .kaho-local-district-header h4 {
        font-size: 14px;
    }

    .kaho-local-mini-news a {
        font-size: 12px;
    }

}


/* =========================================================
   STEP 8D
   LOCAL ARCHIVE PAGINATION
   ========================================================= */

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    background: #ffffff;
    color: #222222;
    font-size: 13px;
    font-weight: 700;
}

.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
    background: #d71920;
    border-color: #d71920;
    color: #ffffff;
}

.nav-links .page-numbers.dots {
    border: 0;
    background: transparent;
}

@media (max-width: 768px) {

    .nav-links {
        margin-top: 20px;
    }

    .nav-links .page-numbers {
        min-width: 34px;
        height: 34px;
        font-size: 12px;
    }

}

/* =========================================================
   STEP 8E
   SINGLE NEWS ARTICLE
   ========================================================= */

.kaho-article-page {
    padding: 35px 0 50px;
    background: #f5f5f5;
}

.kaho-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 25px;
    align-items: start;
}

.kaho-single-article {
    min-width: 0;
    padding: 28px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.kaho-article-category {
    margin-bottom: 12px;
}

.kaho-article-category a {
    color: #d71920;
    font-size: 13px;
    font-weight: 800;
}

.kaho-article-breaking {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 10px;
    background: #d71920;
    color: #ffffff;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
}

.kaho-article-title {
    margin: 0 0 15px;
    color: #111111;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 900;
}

.kaho-article-description {
    margin-bottom: 18px;
    color: #555555;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 500;
}

.kaho-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    color: #777777;
    font-size: 12px;
}

.kaho-article-author strong {
    color: #222222;
}

.kaho-article-date {
    white-space: nowrap;
}

.kaho-article-location {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 15px 0;
    color: #777777;
    font-size: 12px;
}

.kaho-article-location a {
    color: #d71920;
    font-weight: 700;
}

.kaho-article-featured-image {
    margin: 20px 0 25px;
}

.kaho-article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 7px;
}

.kaho-article-content {
    color: #222222;
    font-size: 17px;
    line-height: 1.85;
}

.kaho-article-content p {
    margin: 0 0 20px;
}

.kaho-article-content h2,
.kaho-article-content h3 {
    margin: 28px 0 12px;
    line-height: 1.35;
}

.kaho-article-content img {
    max-width: 100%;
    height: auto;
}

.kaho-article-source {
    margin-top: 30px;
    padding: 12px 15px;
    background: #f7f7f7;
    border-left: 4px solid #d71920;
    color: #555555;
    font-size: 13px;
}

.kaho-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 20px;
}

.kaho-article-tags a {
    padding: 5px 9px;
    background: #f2f2f2;
    border-radius: 4px;
    color: #555555;
    font-size: 11px;
    font-weight: 700;
}

.kaho-article-tags a:hover {
    background: #d71920;
    color: #ffffff;
}


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

.kaho-related-box {
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.kaho-related-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
    padding-bottom: 11px;
    border-bottom: 2px solid #eeeeee;
}

.kaho-related-title span {
    width: 4px;
    height: 23px;
    background: #d71920;
    border-radius: 3px;
}

.kaho-related-title h2 {
    margin: 0;
    color: #111111;
    font-size: 20px;
    font-weight: 800;
}

.kaho-related-list {
    display: grid;
    gap: 13px;
}

.kaho-related-item {
    padding-bottom: 13px;
    border-bottom: 1px solid #eeeeee;
}

.kaho-related-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.kaho-related-item > a {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 10px;
}

.kaho-related-image {
    width: 90px;
    height: 68px;
    overflow: hidden;
    background: #222222;
    border-radius: 5px;
}

.kaho-related-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.kaho-related-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
}

.kaho-related-content {
    min-width: 0;
}

.kaho-related-content h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 5px;
    color: #222222;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.kaho-related-content time {
    color: #999999;
    font-size: 10px;
}

.kaho-related-empty {
    margin: 0;
    color: #777777;
    font-size: 13px;
}


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

@media (max-width: 1000px) {

    .kaho-article-layout {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .kaho-article-page {
        padding: 20px 0 30px;
    }

    .kaho-single-article {
        padding: 18px;
    }

    .kaho-article-title {
        font-size: 27px;
    }

    .kaho-article-description {
        font-size: 15px;
    }

    .kaho-article-content {
        font-size: 16px;
        line-height: 1.75;
    }

    .kaho-article-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .kaho-related-box {
        padding: 16px;
    }

}

@media (max-width: 480px) {

    .kaho-article-title {
        font-size: 23px;
    }

    .kaho-article-description {
        font-size: 14px;
    }

    .kaho-article-content {
        font-size: 15px;
    }

}
