/**
 * New Host - Extra Features Styling
 * (Top Categories, Marquee Breaking News, WhatsApp Stories, 10 Frontpage Blocks, Container Widths)
 */

/* ==========================================================================
   0. TOP CATEGORIES BAR WITH LATEST POST IMAGE LOGO
   ========================================================================== */
.nh-top-cats-wrapper {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding: 10px 0;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.nh-top-cats-container {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nh-top-cats-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary-color, #161B2A);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nh-top-cats-label i {
    color: #e52d27;
}
.nh-top-cats-scroll {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}
.nh-top-cats-scroll::-webkit-scrollbar {
    height: 4px;
}
.nh-top-cats-scroll::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
}
.nh-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f4f6f9;
    border: 1px solid #e5e9f2;
    padding: 4px 12px 4px 5px;
    border-radius: 30px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.nh-cat-chip:hover {
    background: #fff;
    border-color: var(--pri-color, #052d6c);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.nh-cat-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #475569;
    overflow: hidden;
}
.nh-cat-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nh-cat-title {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}
.nh-cat-count {
    font-size: 11px;
    background: rgba(0,0,0,0.06);
    color: #64748b;
    padding: 1px 6px;
    border-radius: 10px;
    font-weight: 500;
}

/* ==========================================================================
   1. MARQUEE BREAKING NEWS
   ========================================================================== */
.nh-marquee-wrapper {
    background: #111827;
    color: #fff;
    margin-bottom: 15px;
    border-radius: var(--radius, 4px);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.nh-marquee-inner {
    display: flex;
    align-items: stretch;
}
.nh-marquee-badge {
    background: var(--grady-color, linear-gradient(300deg, #FF3726 30%, #CC0001 100%));
    color: #fff;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}
.nh-marquee-badge::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    border-left: 10px solid #CC0001;
    z-index: 3;
}
.nh-marquee-track {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 20px;
}
.nh-marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: nhMarqueeScroll 28s linear infinite;
}
.nh-marquee-track:hover .nh-marquee-content {
    animation-play-state: paused;
}
.nh-marquee-item {
    display: inline-block;
    color: #e2e8f0;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 500;
    margin-right: 35px;
    transition: color 0.2s ease;
}
.nh-marquee-item:hover {
    color: #ff9800;
}
.nh-marquee-item-bullet {
    color: #ef4444;
    margin-right: 8px;
}
.nh-marquee-item-time {
    font-size: 11px;
    color: #94a3b8;
    margin-left: 6px;
}
@keyframes nhMarqueeScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ==========================================================================
   3. WHATSAPP STORIES TRAY & MODAL VIEWER
   ========================================================================== */
.nh-stories-wrapper {
    background: #fff;
    padding: 15px 0 10px;
    margin-bottom: 20px;
    border-radius: var(--radius, 4px);
    border: 1px solid rgba(0,0,0,0.06);
}
.nh-stories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 10px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 12px;
}
.nh-stories-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nh-stories-title i {
    color: #25D366; /* WhatsApp Green */
    font-size: 16px;
}
.nh-stories-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 5px 15px 10px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}
.nh-story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 72px;
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: none !important;
}
.nh-story-ring {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    padding: 2.5px;
    background: linear-gradient(45deg, #25D366, #128C7E, #00BFA5);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nh-story-item:hover .nh-story-ring {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.nh-story-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    background: #cbd5e1;
    overflow: hidden;
}
.nh-story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nh-story-caption {
    margin-top: 6px;
    font-size: 11px;
    font-weight: 500;
    color: #334155;
    text-align: center;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
}

/* WhatsApp Stories Modal Popup Viewer */
.nh-story-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 25, 0.94);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}
.nh-story-modal.active {
    display: flex;
}
.nh-story-modal-card {
    width: 100%;
    max-width: 420px;
    height: 90vh;
    max-height: 720px;
    background: #000;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}
.nh-story-progress-bar {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    z-index: 10;
    overflow: hidden;
}
.nh-story-progress-fill {
    height: 100%;
    width: 0%;
    background: #25D366;
    transition: width 0.1s linear;
}
.nh-story-modal-header {
    position: absolute;
    top: 22px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    color: #fff;
}
.nh-story-modal-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}
.nh-story-modal-close {
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nh-story-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nh-story-modal-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    padding: 30px 20px 25px;
    color: #fff;
    z-index: 10;
}
.nh-story-modal-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    margin-bottom: 8px;
}
.nh-story-modal-desc {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.4;
    margin-bottom: 15px;
}
.nh-story-modal-btn {
    display: inline-block;
    background: #25D366;
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none !important;
    transition: background 0.2s ease;
}
.nh-story-modal-btn:hover {
    background: #1eb857;
}

/* ==========================================================================
   5. 10 FRONTPAGE CONTENT BLOCKS (GUARDPRESS / GENERATE NEW STYLE)
   ========================================================================== */
.nh-block-section {
    margin-bottom: 35px;
}
.nh-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 8px;
    margin-bottom: 20px;
    position: relative;
}
.nh-block-title {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--secondary-color, #161B2A);
    position: relative;
    margin: 0;
    padding-right: 15px;
}
.nh-block-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 3px;
    width: 60px;
    background: var(--grady-color, #FF3726);
}
.nh-block-view-all {
    font-size: 12px;
    font-weight: 700;
    color: var(--pri-color, #052d6c);
    text-transform: uppercase;
    text-decoration: none !important;
}
.nh-block-view-all:hover {
    color: #ff3726;
}

/* Common Card Styles (Gambar dan Judul) */
.nh-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.nh-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}
.nh-card-thumb {
    position: relative;
    width: 100%;
    padding-top: 65%;
    background-size: cover;
    background-position: center;
    background-color: #f1f5f9;
    overflow: hidden;
}
.nh-card-category {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--grady-color, #FF3726);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 3px;
    z-index: 2;
    text-decoration: none !important;
}
.nh-card-body {
    padding: 12px 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.nh-card-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nh-card-title a {
    color: #1e293b;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.nh-card-title a:hover {
    color: var(--pri-color, #052d6c);
}
.nh-card-excerpt {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    margin-top: 8px;
    margin-bottom: 0;
}

/* 5-COLUMN GRID (5 ITEMS PER ROW - GAMBAR & JUDUL) */
.nh-grid-5, .nh-grid-4 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
@media (max-width: 1200px) {
    .nh-grid-5, .nh-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 15px; }
}
@media (max-width: 991px) {
    .nh-grid-5, .nh-grid-4 { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 767px) {
    .nh-grid-5, .nh-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .nh-card-title { font-size: 13px; }
}
@media (max-width: 480px) {
    .nh-grid-5, .nh-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .nh-card-body { padding: 8px 10px 12px; }
    .nh-card-title { font-size: 12px; -webkit-line-clamp: 2; }
}

/* STYLE 2: HERO SPOTLIGHT + 3 SIDE LIST */
.nh-hero-list-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 20px;
}
.nh-hero-card {
    position: relative;
    border-radius: var(--radius, 4px);
    overflow: hidden;
    height: 380px;
    background-size: cover;
    background-position: center;
}
.nh-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
}
.nh-hero-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 10px;
}
.nh-hero-title a {
    color: #fff;
    text-decoration: none;
}
.nh-side-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nh-list-item {
    display: flex;
    gap: 12px;
    background: #fff;
    border-radius: var(--radius, 4px);
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}
.nh-list-item:hover {
    transform: translateX(4px);
}
.nh-list-thumb {
    width: 85px;
    height: 75px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.nh-list-content {
    flex: 1;
}
.nh-list-title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
}
.nh-list-title a { color: #1e293b; text-decoration: none; }
.nh-list-title a:hover { color: var(--pri-color, #052d6c); }
@media (max-width: 767px) {
    .nh-hero-list-layout { grid-template-columns: 1fr; }
    .nh-hero-card { height: 260px; }
}

/* STYLE 3: TWO-COLUMN CATEGORY SPLIT */
.nh-split-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 767px) {
    .nh-split-2 { grid-template-columns: 1fr; }
}

/* STYLE 4: CARD CAROUSEL (HORIZONTAL FLEX SCROLL) */
.nh-carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}
.nh-carousel-track .nh-card {
    min-width: 250px;
    max-width: 280px;
    flex-shrink: 0;
}

/* STYLE 5: OVERLAY GRADIENT TILES */
.nh-tiles-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.nh-tile-card {
    position: relative;
    height: 280px;
    border-radius: var(--radius, 4px);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}
.nh-tile-card:hover {
    transform: scale(1.02);
}
.nh-tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
}
.nh-tile-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 6px;
}
.nh-tile-title a { color: #fff; text-decoration: none; }
@media (max-width: 767px) {
    .nh-tiles-3 { grid-template-columns: 1fr; }
}

/* STYLE 6: CLASSIC NEWSPAPER LIST */
.nh-newspaper-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 767px) {
    .nh-newspaper-list { grid-template-columns: 1fr; }
}

/* STYLE 7: MASONRY / ASYMMETRIC ZIG-ZAG */
.nh-zigzag-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.nh-zigzag-grid .nh-card:first-child {
    grid-column: span 2;
}
@media (max-width: 767px) {
    .nh-zigzag-grid { grid-template-columns: 1fr; }
    .nh-zigzag-grid .nh-card:first-child { grid-column: span 1; }
}

/* STYLE 8: DARK HIGHLIGHT BOX */
.nh-dark-box {
    background: #0f172a;
    border-radius: var(--radius, 4px);
    padding: 25px 20px;
    color: #fff;
}
.nh-dark-box .nh-block-title {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.1);
}
.nh-dark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.nh-dark-box .nh-card {
    background: #1e293b;
    box-shadow: none;
}
.nh-dark-box .nh-card-title a {
    color: #f8fafc;
}
.nh-dark-box .nh-card-meta {
    color: #94a3b8;
}
@media (max-width: 767px) {
    .nh-dark-grid { grid-template-columns: 1fr; }
}

/* STYLE 9: 3-COLUMN QUICK READ TICKER */
.nh-quick-read-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.nh-quick-read-col {
    background: #fff;
    border-radius: var(--radius, 4px);
    padding: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.nh-quick-read-col h5 {
    font-size: 14px;
    font-weight: 700;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 8px;
    margin-bottom: 12px;
}
@media (max-width: 767px) {
    .nh-quick-read-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   7. CONTAINER WIDTHS / PAGE SIZE CLASSES
   ========================================================================== */
.nh-container-default .container-fluid {
    max-width: 1200px;
    margin: 0 auto;
}
.nh-container-wide .container-fluid {
    max-width: 1320px;
    margin: 0 auto;
}
.nh-container-ultra-wide .container-fluid {
    max-width: 1440px;
    margin: 0 auto;
}
.nh-container-full .container-fluid {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

/* ==========================================================================
   MANDATORY FINAL SECTION: LATEST ARTICLES (5 ITEMS PER ROW)
   ========================================================================== */
.nh-latest-posts-section {
    margin-top: 40px;
    margin-bottom: 45px;
}

/* Pagination for Latest Posts */
.nh-pagination ul.page-numbers {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 6px;
}
.nh-pagination ul.page-numbers li a,
.nh-pagination ul.page-numbers li span.current {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 4px;
    background: #fff;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.nh-pagination ul.page-numbers li a:hover,
.nh-pagination ul.page-numbers li span.current {
    background: var(--pri-color, #e11d48);
    color: #fff;
    border-color: var(--pri-color, #e11d48);
}

/* ==========================================================================
   RELATED POSTS (BOTTOM OF SINGLE POST - COMPACT)
   ========================================================================== */
.nh-related-posts-section {
    margin-top: 25px;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.nh-related-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.nh-related-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nh-related-card:hover {
    transform: translateY(-2px);
}
.nh-related-thumb {
    width: 100%;
    height: 105px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    background-color: #f1f5f9;
    position: relative;
    overflow: hidden;
}
.nh-related-cat {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: rgba(15, 23, 42, 0.8);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 5px;
    border-radius: 3px;
    pointer-events: none;
    line-height: 1.2;
}
.nh-related-body {
    padding: 7px 2px 2px;
}
.nh-related-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nh-related-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
}
.nh-related-title a:hover {
    color: var(--pri-color, #e11d48);
}
@media (max-width: 768px) {
    .nh-related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .nh-related-thumb {
        height: 100px;
    }
}
@media (max-width: 480px) {
    .nh-related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .nh-related-thumb {
        height: 85px;
    }
    .nh-related-title {
        font-size: 12px;
    }
}

/* ==========================================================================
   IN-CONTENT RELATED POSTS ("Read Also" - DISTINCT & SIMPLE TITLE ONLY)
   ========================================================================== */
.nh-incontent-related-box {
    margin: 22px 0;
    padding: 14px 18px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-left: 4px solid var(--pri-color, #e11d48);
    border-radius: 6px;
    clear: both;
}
.nh-incontent-related-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--pri-color, #e11d48);
    margin-bottom: 8px;
}
.nh-incontent-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.nh-incontent-related-item {
    position: relative;
    padding-left: 18px;
    margin: 0;
    line-height: 1.45;
}
.nh-incontent-related-item::before {
    content: "▪";
    position: absolute;
    left: 2px;
    top: -1px;
    font-size: 16px;
    color: var(--pri-color, #e11d48);
}
.nh-incontent-related-item a {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}
.nh-incontent-related-item a:hover {
    color: var(--pri-color, #e11d48);
    text-decoration: underline;
}
@media (max-width: 480px) {
    .nh-incontent-related-box {
        padding: 12px 14px;
        margin: 18px 0;
    }
    .nh-incontent-related-item a {
        font-size: 14px;
    }
}



