:root {
    --primary-gold: #B8860B;
    --primary-dark: #8B6508;
    --accent-gold: #D4A017;
    --bg-gradient: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 100%);
    --surface-white: #FFFFFF;
    --text-main: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted-color: #6C757D;
    --border-subtle: rgba(184, 134, 11, 0.15);
    --shadow-soft: rgba(0, 0, 0, 0.05);
}

body.newsflow-theme {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
}

.text-muted {
    color: var(--text-muted-color) !important;
}

.smooth-transition {
    transition: all 0.3s ease-in-out;
}

* {
    box-sizing: border-box;
}

.main-news-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.news-card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-soft);
}

/* ===== header ===== */
.triv-header {
    z-index: 1050;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.triv-header .navbar {
    background-color: #FFFFFF !important;
}

.triv-header .triv-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.triv-header .triv-brand-name {
    font-size: 1.5rem;
    color: #1A1A1A;
    letter-spacing: -0.5px;
}

.triv-header .nav-link {
    color: #1A1A1A !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.triv-header .nav-link:hover {
    color: #B8860B !important;
}

.triv-header .btn-primary {
    background-color: #B8860B;
    border: none;
    color: #FFFFFF;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.triv-header .btn-primary:hover {
    background-color: #8B6508;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
    color: #FFFFFF;
}

.triv-header .navbar-toggler:focus {
    box-shadow: none;
}

.triv-header .bx-menu {
    color: #1A1A1A;
}

@media (max-width: 991.98px) {
    .triv-header .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.5rem 0;
    }

    .triv-header .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    }

    .triv-header .btn-primary {
        width: 100%;
        margin-top: 1rem;
    }
}

/* ===== hero ===== */
.hero-magazine {
    background-color: #f8f9fa;
    font-family: 'Inter', sans-serif;
}

.hero-main-card {
    height: 600px;
}

.hero-sub-card {
    height: 288px;
}

.hero-img-wrapper img {
    transition: transform 0.6s ease;
    object-fit: cover;
}

.hero-main-card:hover .hero-img-wrapper img,
.hero-sub-card:hover .hero-img-wrapper img {
    transform: scale(1.05);
}

.hero-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    transition: background 0.3s ease;
    z-index: 2;
}

.hero-main-card:hover .hero-overlay,
.hero-sub-card:hover .hero-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
}

.hero-magazine .badge {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    padding: 0.4em 0.8em;
}

.hero-magazine h1 {
    line-height: 1.2;
}

.hero-magazine .sidebar-item h4 a {
    transition: color 0.3s ease;
}

.hero-magazine .sidebar-item h4 a:hover {
    color: #B8860B !important;
}

.breaking-sidebar {
    border-top: 4px solid #B8860B;
}

.sidebar-nav .btn {
    border-color: rgba(184, 134, 11, 0.3);
    color: #B8860B;
}

.sidebar-nav .btn:hover {
    background-color: #B8860B;
    color: #fff;
}

@media (max-width: 991px) {
    .hero-main-card {
        height: 400px;
    }

    .hero-sub-card {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-main-card {
        height: 350px;
    }

    .hero-overlay h1 {
        font-size: 1.25rem;
    }
}

/* ===== world-grid ===== */
.world-grid-section {
    background: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 100%);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.world-grid-section .world-grid-title {
    color: #B8860B;
    font-weight: 700;
    font-size: 2.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.world-grid-section .world-grid-divider {
    width: 60px;
    height: 4px;
    background-color: #B8860B;
    border-radius: 2px;
}

.world-grid-section .world-card {
    background: #FFFFFF;
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.world-grid-section .world-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.1);
}

.world-grid-section .world-card-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.world-grid-section .world-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.world-grid-section .world-card:hover .world-card-img {
    transform: scale(1.1);
}

.world-grid-section .world-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #B8860B;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.world-grid-section .world-card-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.world-grid-section .world-card-meta {
    font-size: 0.85rem;
    color: #6C757D;
}

.world-grid-section .world-card-meta i {
    color: #B8860B;
    margin-right: 5px;
}

.world-grid-section .world-card-heading {
    color: #1A1A1A;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.world-grid-section .world-card-excerpt {
    color: #4A4A4A;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.world-grid-section .world-card-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: linear-gradient(to right, #B8860B, #D4A017);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.world-grid-section .world-card-btn:hover {
    background: linear-gradient(to right, #8B6508, #B8860B);
    color: #FFFFFF;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .world-grid-section .world-grid-title {
        font-size: 1.5rem;
    }

    .world-grid-section .world-card-heading {
        font-size: 1.15rem;
    }
}

/* ===== tech-grid ===== */
.tech-grid-section {
    background: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 100%);
    padding-top: 64px;
    padding-bottom: 64px;
}

.tech-grid-title {
    color: #1A1A1A;
    font-weight: 700;
    font-size: 2.25rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.tech-grid-line {
    height: 1px;
    background: rgba(184, 134, 11, 0.15);
}

.tech-main-card {
    background: #FFFFFF;
    border-radius: 12px;
    height: 100%;
    border: 1px solid rgba(184, 134, 11, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.tech-main-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tech-card-img-wrapper {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.tech-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tech-main-card:hover .tech-card-img {
    transform: scale(1.05);
}

.tech-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tech-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #B8860B;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: fit-content;
}

.tech-card-h3 {
    font-size: 1.75rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tech-card-link {
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tech-card-link:hover {
    color: #B8860B;
}

.tech-card-excerpt {
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-meta {
    color: #6C757D;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.tech-side-card {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid rgba(184, 134, 11, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.tech-side-card:hover {
    transform: scale(1.02);
}

.tech-side-img-wrapper {
    width: 100%;
    height: 180px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .tech-side-img-wrapper {
        width: 180px;
        height: auto;
    }
}

.tech-side-content {
    padding: 1.25rem;
    flex-grow: 1;
}

.tech-side-h3 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.tech-btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: #B8860B;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s ease, background 0.3s ease;
    border: none;
}

.tech-btn-primary:hover {
    background: #8B6508;
    color: #FFFFFF;
    transform: scale(1.02);
}

@media (max-width: 767px) {
    .tech-grid-title {
        font-size: 1.5rem;
    }

    .tech-card-h3 {
        font-size: 1.4rem;
    }

    .tech-card-content {
        padding: 1.25rem;
    }
}

/* ===== sports-grid ===== */
.sports-news-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 100%);
    overflow: hidden;
}

.sports-news-section .sports-section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    color: #1A1A1A;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sports-news-section .sports-section-underline {
    width: 60px;
    height: 4px;
    background-color: #B8860B;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.sports-news-section .sports-section-subtitle {
    color: #4A4A4A;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.sports-news-section .sports-card {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid rgba(184, 134, 11, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.sports-news-section .sports-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.sports-news-section .sports-card-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sports-news-section .sports-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sports-news-section .sports-card:hover .sports-card-img {
    transform: scale(1.1);
}

.sports-news-section .sports-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #B8860B;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.sports-news-section .sports-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sports-news-section .sports-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
    line-height: 1.3;
    min-height: 3.3rem;
}

.sports-news-section .sports-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #6C757D;
}

.sports-news-section .sports-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sports-news-section .sports-card-meta i {
    color: #B8860B;
    font-size: 1rem;
}

.sports-news-section .sports-card-btn {
    margin-top: auto;
    display: block;
    text-align: center;
    background-color: #B8860B;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sports-news-section .sports-card-btn:hover {
    background-color: #8B6508;
    color: #FFFFFF;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .sports-news-section .sports-section-title {
        font-size: 1.5rem;
    }

    .sports-news-section .sports-card-title {
        font-size: 1.1rem;
        min-height: auto;
    }
}

/* ===== footer ===== */
.site-footer {
    background-color: #FFFFFF;
    border-top: 1px solid rgba(184, 134, 11, 0.15);
    font-family: 'Inter', sans-serif;
    color: #1A1A1A;
}

.site-footer .footer-logo {
    max-width: 50px;
    height: auto;
    display: block;
}

.site-footer .footer-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4A4A4A;
    max-width: 320px;
}

.site-footer .footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-footer .footer-link {
    display: block;
    padding: 4px 0;
    color: #4A4A4A;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.site-footer .footer-link:hover {
    color: #B8860B;
    transform: translateX(5px);
}

.site-footer .contact-info {
    color: #4A4A4A;
}

.site-footer .contact-item i {
    font-size: 1.25rem;
    color: #B8860B;
    margin-top: 2px;
}

.site-footer .contact-text,
.site-footer .contact-link {
    font-size: 0.9375rem;
    color: #4A4A4A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer .contact-link:hover {
    color: #B8860B;
}

.site-footer .border-top {
    border-color: rgba(184, 134, 11, 0.1) !important;
}

.site-footer .copyright-text {
    font-size: 0.875rem;
    color: #6C757D;
}

@media (max-width: 767.98px) {
    .site-footer {
        padding-bottom: 2rem;
    }

    .site-footer .footer-description {
        max-width: 100%;
    }

    .site-footer .footer-link:hover {
        transform: none;
    }
}

/* ===== PAGE: privacy ===== */
.policy-article-wrapper { max-width: 900px; margin: 0 auto; padding: 60px 20px; color: #1A1A1A; font-family: 'Inter', sans-serif; line-height: 1.6; background-color: #FFFFFF; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); } .policy-article-wrapper h1 { color: #B8860B; font-size: 2.25rem; font-weight: 700; margin-bottom: 0.5rem; text-align: center; } .policy-article-wrapper .last-updated { text-align: center; color: #6C757D; font-size: 0.9rem; margin-bottom: 3rem; } .policy-article-wrapper h2 { color: #8B6508; font-size: 1.5rem; font-weight: 600; margin-top: 2.5rem; margin-bottom: 1rem; border-left: 4px solid #B8860B; padding-left: 15px; } .policy-article-wrapper p { margin-bottom: 1.25rem; font-size: 1rem; color: #4A4A4A; } .policy-article-wrapper ul { margin-bottom: 1.5rem; padding-left: 1.5rem; } .policy-article-wrapper li { margin-bottom: 0.75rem; color: #4A4A4A; position: relative; list-style-type: none; } .policy-article-wrapper li::before { content: '•'; color: #B8860B; font-weight: bold; display: inline-block; width: 1em; margin-left: -1em; } .policy-article-wrapper strong { color: #1A1A1A; font-weight: 600; } @media (max-width: 768px) { .policy-article-wrapper { padding: 40px 15px; box-shadow: none; border-radius: 0; } .policy-article-wrapper h1 { font-size: 1.75rem; } .policy-article-wrapper h2 { font-size: 1.25rem; } .policy-article-wrapper p, .policy-article-wrapper li { font-size: 0.95rem; } }

/* ===== PAGE: terms ===== */
.policy-article-wrapper{max-width:900px;margin:0 auto;padding:4rem 1.5rem;color:#1A1A1A;font-family:'Inter',sans-serif;line-height:1.6}.policy-article-header{margin-bottom:3.5rem;text-align:center}.policy-article-header h1{font-size:2.25rem;font-weight:700;color:#B8860B;margin-bottom:1rem;text-transform:uppercase;letter-spacing:1px}.policy-intro{color:#4A4A4A;font-size:1.1rem;margin-bottom:1.5rem}.policy-breadcrumbs{display:flex;justify-content:center;align-items:center;list-style:none;padding:0;font-size:0.875rem;gap:0.5rem}.policy-breadcrumbs a{color:#B8860B;text-decoration:none;transition:color 0.3s}.policy-breadcrumbs a:hover{color:#8B6508}.policy-breadcrumbs i{color:#6C757D;font-size:1rem}.policy-breadcrumbs .active{color:#6C757D}.policy-content-body section{margin-bottom:2.5rem}.policy-content-body h2{font-size:1.5rem;font-weight:600;color:#1A1A1A;margin-bottom:1.25rem;border-left:4px solid #B8860B;padding-left:1rem}.policy-content-body p{margin-bottom:1rem;color:#4A4A4A}.policy-content-body ul{padding-left:1.5rem;margin-bottom:1.5rem}.policy-content-body li{margin-bottom:0.75rem;color:#4A4A4A;position:relative}.policy-content-body a{color:#B8860B;text-decoration:none;font-weight:500}.policy-content-body a:hover{text-decoration:underline}@media (max-width:768px){.policy-article-wrapper{padding:2.5rem 1rem}.policy-article-header h1{font-size:1.75rem}.policy-content-body h2{font-size:1.3rem}}

/* ===== PAGE: disclaimer ===== */
.policy-article-wrapper { font-family: 'Inter', sans-serif; color: #1A1A1A; line-height: 1.6; padding: 2.5rem 0; background: transparent; } .policy-article-wrapper .disclaimer-content-block { max-width: 100%; margin: 0 auto; } .policy-article-wrapper h2 { color: #B8860B; font-weight: 700; font-size: 2.25rem; margin-top: 2.5rem; margin-bottom: 1.25rem; border-left: 4px solid #B8860B; padding-left: 1rem; line-height: 1.2; } .policy-article-wrapper p { margin-bottom: 1.5rem; color: #4A4A4A; text-align: justify; hyphens: auto; } .policy-article-wrapper ul { margin-bottom: 1.5rem; padding-left: 1.25rem; list-style-type: none; } .policy-article-wrapper ul li { position: relative; margin-bottom: 0.75rem; padding-left: 1.5rem; color: #4A4A4A; } .policy-article-wrapper ul li::before { content: '•'; font-family: inherit; position: absolute; left: 0; color: #B8860B; font-size: 1.2rem; top: 0.1rem; } @media (max-width: 767.98px) { .policy-article-wrapper { padding: 1.5rem 0; } .policy-article-wrapper h2 { font-size: 16px !important; margin-top: 1.5rem; padding-left: 0.75rem; } .policy-article-wrapper p, .policy-article-wrapper ul li { font-size: 14px; line-height: 1.5; } .policy-article-wrapper h3 { font-size: 14px !important; } }

/* ===== PAGE: cookies ===== */
.policy-article-wrapper { font-family: 'Inter', sans-serif; color: #1A1A1A; line-height: 1.6; padding: 40px 20px; max-width: 900px; margin: 0 auto; }.policy-article-wrapper h2 { color: #B8860B; font-weight: 700; font-size: 1.75rem; margin-top: 2rem; margin-bottom: 1.25rem; border-left: 4px solid #B8860B; padding-left: 15px; }.policy-article-wrapper p { margin-bottom: 1.25rem; font-size: 1rem; color: #4A4A4A; }.policy-article-wrapper ul { margin-bottom: 1.5rem; padding-left: 1.5rem; }.policy-article-wrapper li { margin-bottom: 0.75rem; color: #4A4A4A; }.policy-article-wrapper .purpose-list { list-style: none; padding-left: 0; }.policy-article-wrapper .purpose-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1rem; background: #FFFFFF; padding: 15px; border-radius: 8px; border: 1px solid rgba(184, 134, 11, 0.15); box-shadow: 0 4px 6px rgba(0,0,0,0.02); }.policy-article-wrapper .purpose-list i { color: #B8860B; font-size: 1.25rem; margin-top: 3px; }.policy-article-wrapper strong { color: #1A1A1A; font-weight: 600; }@media (max-width: 767px) { .policy-article-wrapper h2 { font-size: 1.4rem; } .policy-article-wrapper { padding: 20px 15px; } .policy-article-wrapper p { font-size: 0.95rem; } }

/* ===== PAGE: world ===== */
.world-page-wrapper {
  background: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 100%);
  min-height: 80vh;
}

.world-page-wrapper .breadcrumb-item a {
  color: #B8860B;
}

.world-page-wrapper .max-width-750 {
  max-width: 750px;
}

.world-page-wrapper .search-box {
  max-width: 400px;
}

.world-page-wrapper .search-box .form-control:focus {
  border-color: #B8860B;
  box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.1);
}

.world-page-wrapper .news-card {
  background: #FFFFFF;
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.world-page-wrapper .news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.world-page-wrapper .news-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.world-page-wrapper .news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.world-page-wrapper .news-card:hover .news-card-image img {
  transform: scale(1.1);
}

.world-page-wrapper .category-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #B8860B;
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.world-page-wrapper .news-meta {
  color: #6C757D;
}

.world-page-wrapper .news-meta i {
  color: #B8860B;
}

.world-page-wrapper .news-card-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 15px;
}

.world-page-wrapper .btn-read-more {
  color: #B8860B;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}

.world-page-wrapper .news-card:hover .btn-read-more {
  gap: 10px;
}

.world-page-wrapper .dropdown-toggle {
  border-color: rgba(184, 134, 11, 0.3);
  color: #4A4A4A;
}

.world-page-wrapper .dropdown-toggle:hover {
  background-color: #B8860B;
  border-color: #B8860B;
  color: #FFFFFF;
}

.world-page-wrapper .btn-primary-custom {
  background: linear-gradient(135deg, #B8860B 0%, #8B6508 100%);
  border: none;
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.world-page-wrapper .btn-primary-custom:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.25);
}

/* ===== PAGE: tech ===== */
.tech-category-header { background: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 100%); border-bottom: 1px solid rgba(184, 134, 11, 0.15); }.tech-category-header .tech-title { color: #B8860B; letter-spacing: 1px; font-size: 2.25rem; }.tech-category-header .tech-subtitle { color: #4A4A4A; font-size: 1.1rem; line-height: 1.6; }.tech-category-header .breadcrumb-item a { color: #B8860B; transition: color 0.3s ease; }.tech-category-header .breadcrumb-item.active { color: #6C757D; }.tech-reviews-section { background-color: #FFFFFF; }.tech-card { background: #FFFFFF; border: 1px solid rgba(184, 134, 11, 0.15); border-radius: 12px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); }.tech-card:hover { transform: translateY(-8px); box-shadow: 0 12px 20px rgba(184, 134, 11, 0.1); }.tech-card-img-holder { height: 220px; overflow: hidden; position: relative; }.tech-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }.tech-card:hover .tech-card-img { transform: scale(1.05); }.tech-card-body { flex-grow: 1; display: flex; flex-direction: column; }.tech-meta { font-size: 0.85rem; color: #6C757D; border-bottom: 1px solid rgba(184, 134, 11, 0.1); padding-bottom: 10px; }.tech-card-title { color: #1A1A1A; font-weight: 700; margin-bottom: 15px; transition: color 0.3s ease; }.tech-card:hover .tech-card-title { color: #B8860B; }.tech-card-excerpt { color: #4A4A4A; font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }.tech-btn { background: #B8860B; color: #FFFFFF; border: none; padding: 10px 24px; border-radius: 8px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s ease; }.tech-btn:hover { background: #8B6508; color: #FFFFFF; transform: scale(1.02); box-shadow: 0 4px 10px rgba(184, 134, 11, 0.3); }@media (max-width: 767.98px) { .tech-category-header .tech-title { font-size: 1.5rem; } .tech-category-header .tech-subtitle { font-size: 0.9rem; } }

/* ===== PAGE: sports ===== */
.sports-reports-section {
  background: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 100%);
}

.sports-reports-section__title {
  color: #B8860B;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.sports-reports-section .breadcrumb-item a {
  color: #B8860B;
}

.sports-card {
  background: #FFFFFF;
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sports-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(184, 134, 11, 0.1);
}

.sports-card__img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.sports-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sports-card:hover .sports-card__img {
  transform: scale(1.05);
}

.sports-card__category {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #B8860B;
  color: #FFFFFF;
  padding: 5px 15px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sports-card__content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.sports-card__hero-title {
  font-weight: 700;
  line-height: 1.3;
  font-size: 1.25rem;
}

.sports-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sports-card__btn {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: #B8860B;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.sports-card__btn i {
  font-size: 1.2rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.sports-card__btn:hover {
  color: #8B6508;
}

.sports-card__btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 767.98px) {
  .sports-reports-section__title {
    font-size: 1.75rem;
  }
  .sports-card__img-wrapper {
    height: 200px;
  }
}

/* ===== PAGE: style ===== */
.style-society-section { padding: 60px 0; background: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 100%); } .style-society-section__title { color: #1A1A1A; font-size: 2.5rem; letter-spacing: -0.5px; } .style-society-section__subtitle { color: #4A4A4A; font-size: 1.1rem; max-width: 600px; margin: 0 auto; line-height: 1.6; } .article-card { background: #FFFFFF; border: 1px solid rgba(184, 134, 11, 0.15); border-radius: 12px; transition: all 0.3s ease-in-out; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); } .article-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); } .article-card__img-wrapper { overflow: hidden; position: relative; min-height: 250px; } .article-card--featured .article-card__img-wrapper { flex: 0 0 50%; } .article-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .article-card:hover .article-card__img { transform: scale(1.05); } .article-card__badge { background: #B8860B; color: #FFFFFF; padding: 4px 12px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; width: fit-content; } .article-card__title { color: #1A1A1A; font-size: 1.8rem; line-height: 1.2; } .article-card__title-small { color: #1A1A1A; font-size: 1.25rem; line-height: 1.3; } .article-card__excerpt { color: #4A4A4A; line-height: 1.6; } .btn-primary-custom { background: #B8860B; color: #FFFFFF; border: none; padding: 12px 30px; font-weight: 500; border-radius: 8px; transition: all 0.3s ease; } .btn-primary-custom:hover { background: #8B6508; color: #FFFFFF; transform: scale(1.02); } .btn-outline-primary-custom { background: transparent; border: 1px solid #B8860B; color: #B8860B; padding: 10px 20px; font-weight: 500; border-radius: 8px; transition: all 0.3s ease; } .btn-outline-primary-custom:hover { background: #B8860B; color: #FFFFFF; } @media (max-width: 991.98px) { .article-card--featured .article-card__img-wrapper { min-height: 300px; } .style-society-section__title { font-size: 1.75rem; } }

/* ===== PAGE: contact ===== */
.triv-contact-section { padding: 60px 0; background: #FFFFFF; font-family: 'Inter', sans-serif; } .triv-contact-title { color: #1A1A1A; font-weight: 700; font-size: 2.25rem; line-height: 1.2; } .triv-contact-lead { color: #4A4A4A; font-size: 1.1rem; line-height: 1.6; max-width: 600px; } .triv-contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; } @media (max-width: 767px) { .triv-contact-grid { grid-template-columns: 1fr; } .triv-contact-title { font-size: 1.5rem; } } .triv-contact-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px; border: 1px solid rgba(184, 134, 11, 0.15); border-radius: 12px; background: #FFFFFF; transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; } .triv-contact-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); } .triv-contact-icon { width: 48px; height: 48px; min-width: 48px; background: #B8860B; color: #FFFFFF; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; } .triv-contact-info-text h3 { font-size: 1.1rem; font-weight: 700; color: #1A1A1A; margin-bottom: 4px; } .triv-contact-info-text p { font-size: 0.95rem; color: #6C757D; margin-bottom: 0; word-break: break-word; } .triv-contact-image-wrapper { position: relative; overflow: hidden; border-radius: 16px; } .triv-contact-image-wrapper img { width: 100%; height: 500px; object-fit: cover; } .btn-primary { background-color: #B8860B; border-color: #B8860B; color: #FFFFFF; font-weight: 500; padding: 12px 30px; border-radius: 8px; transition: all 0.3s ease; } .btn-primary:hover { background-color: #8B6508; border-color: #8B6508; transform: scale(1.02); color: #FFFFFF; } .btn-outline-primary { border: 2px solid #B8860B; color: #B8860B; font-weight: 500; padding: 12px 30px; border-radius: 8px; transition: all 0.3s ease; } .btn-outline-primary:hover { background-color: #B8860B; color: #FFFFFF; transform: scale(1.02); }

.comment-card {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid rgba(184, 134, 11, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.comment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #B8860B;
}

.comment-author {
    color: #1A1A1A;
    font-size: 1rem;
}

.comment-timestamp {
    font-size: 0.8125rem;
}

.comment-text {
    color: #4A4A4A;
    line-height: 1.6;
    font-size: 0.95rem;
}

.btn-comment-action {
    background: transparent;
    border: none;
    color: #6C757D;
    font-size: 0.875rem;
    padding: 0;
    transition: color 0.2s ease;
}

.btn-comment-action:hover {
    color: #B8860B;
}

.btn-comment-action i {
    font-size: 1.1rem;
}

.reply-comment-wrapper {
    position: relative;
}

.reply-comment-wrapper::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 0;
    bottom: 50%;
    width: 2px;
    border-left: 2px dashed rgba(184, 134, 11, 0.3);
    border-bottom: 2px dashed rgba(184, 134, 11, 0.3);
    border-bottom-left-radius: 8px;
}

.border-start-accent {
    border-left: 4px solid #B8860B !important;
}

.comment-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-author-small {
    color: #1A1A1A;
    font-size: 0.9rem;
}

.comment-text-small {
    color: #4A4A4A;
    font-size: 0.875rem;
    line-height: 1.5;
}

.text-primary-accent {
    color: #8B6508;
}

@media (max-width: 576px) {
    .reply-comment-wrapper {
        margin-left: 1.5rem !important;
    }

    .reply-comment-wrapper::before {
        left: -15px;
    }
}


/* ===== PAGE TEMPLATE: world-news ===== */
.news-detail-wrapper {
    background: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 100%);
    font-family: 'Inter', sans-serif;
}

.triv-header {
    z-index: 1050;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.triv-header .navbar {
    background-color: #FFFFFF !important;
}

.triv-header .triv-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.triv-header .triv-brand-name {
    font-size: 1.5rem;
    color: #1A1A1A;
    letter-spacing: -0.5px;
}

.triv-header .nav-link {
    color: #1A1A1A !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.triv-header .nav-link:hover {
    color: #B8860B !important;
}

.triv-header .btn-primary {
    background-color: #B8860B;
    border: none;
    color: #FFFFFF;
    border-radius: 8px;
}

.hero-main-card {
    height: 500px;
}

.hero-img-wrapper img {
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    z-index: 2;
}

.article-content {
    color: #1A1A1A;
    line-height: 1.8;
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #1A1A1A;
}

.article-body p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.breaking-sidebar {
    border-top: 4px solid #B8860B;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-item h4 a:hover {
    color: #B8860B !important;
}

.comment-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-avatar-small {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.border-start-accent {
    border-left: 4px solid #B8860B !important;
}

.btn-comment-action {
    background: none;
    border: none;
    color: #6C757D;
    padding: 0;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.btn-comment-action:hover {
    color: #B8860B;
}

.comment-form-wrapper input,
.comment-form-wrapper textarea {
    background-color: #F8F9FA;
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
}

.comment-form-wrapper input:focus,
.comment-form-wrapper textarea:focus {
    box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.1);
    border-color: #B8860B;
}

.site-footer {
    background-color: #FFFFFF;
    border-top: 1px solid rgba(184, 134, 11, 0.15);
}

.site-footer .footer-logo {
    max-width: 50px;
}

.footer-link {
    color: #4A4A4A;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #B8860B;
    transform: translateX(5px);
    display: inline-block;
}

@media (max-width: 991px) {
    .hero-main-card {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-main-card {
        height: 300px;
    }

    .hero-overlay h1 {
        font-size: 1.5rem;
    }

    .article-body p {
        font-size: 1rem;
    }

    .reply-comment-wrapper {
        margin-left: 20px;
    }
}

/* ===== PAGE TEMPLATE: tech-reviews ===== */
.review-template {
    background-color: #f8f9fa;
    font-family: 'Inter', sans-serif;
}

.review-hero {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
}

.review-main-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    line-height: 1.2;
}

.review-body {
    border-radius: 12px;
    line-height: 1.8;
    color: #4A4A4A;
}

.review-main-text h2,
.review-main-text h3 {
    color: #1A1A1A;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.review-main-text p {
    margin-bottom: 1.5rem;
}

.review-main-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.btn-comment-action {
    background: none;
    border: none;
    font-size: 0.875rem;
    color: #6C757D;
    padding: 0;
    transition: color 0.3s ease;
}

.btn-comment-action:hover {
    color: #B8860B;
}

.widget-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #B8860B;
    margin-top: 5px;
}

.sidebar-review-list .group:hover h5 {
    color: #B8860B !important;
}

.form-control:focus {
    border-color: #B8860B;
    box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.1);
}

@media (max-width: 768px) {
    .review-hero {
        min-height: 300px;
        padding: 2rem 0;
    }

    .review-body {
        padding: 1.5rem !important;
    }
}


.triv-header .navbar-brand img {
    max-width: 45px;
}

.triv-header .nav-link:hover {
    color: #B8860B !important;
}

.site-footer {
    background-color: #FFFFFF;
    border-top: 1px solid rgba(184, 134, 11, 0.15);
}

.site-footer .footer-link:hover {
    color: #B8860B;
    transform: translateX(5px);
    display: inline-block;
    transition: all 0.3s ease;
}

.text-primary {
    color: #B8860B !important;
}

/* ===== PAGE TEMPLATE: sports-reports ===== */
.sports-detail-page {
    background: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 100%);
    font-family: 'Inter', sans-serif;
}

.sports-detail-page .detail-hero {
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.sports-detail-page .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.sports-detail-page .article-body-text {
    color: #1A1A1A;
    line-height: 1.8;
    font-size: 1.1rem;
}

.sports-detail-page .article-body-text p {
    margin-bottom: 1.5rem;
}

.sports-detail-page .article-body-text h2 {
    font-weight: 700;
    color: #1A1A1A;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.sports-detail-page .article-body-text h3 {
    font-weight: 600;
    color: #1A1A1A;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.sports-detail-page .comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.sports-detail-page .comment-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.sports-detail-page .btn-comment-action {
    padding: 0;
    font-size: 0.875rem;
    color: #6C757D;
    border: none;
    background: none;
    transition: color 0.3s ease;
}

.sports-detail-page .btn-comment-action:hover {
    color: #B8860B;
}

.sports-detail-page .comment-card {
    background-color: #FFFFFF;
    border-radius: 12px;
}

.sports-detail-page .sidebar-item h4 a {
    transition: color 0.3s ease;
}

.sports-detail-page .sidebar-item h4 a:hover {
    color: #B8860B !important;
}

.sports-detail-page .btn-primary {
    background-color: #B8860B;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sports-detail-page .btn-primary:hover {
    background-color: #8B6508;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.sports-detail-page .form-control {
    border: 1px solid rgba(184, 134, 11, 0.15);
    padding: 12px;
    border-radius: 8px;
}

.sports-detail-page .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.25);
    border-color: #B8860B;
}

@media (max-width: 768px) {
    .sports-detail-page .detail-hero h1 {
        font-size: 1.75rem !important;
    }

    .sports-detail-page .article-container {
        padding: 20px !important;
    }

    .sports-detail-page .reply-comment-wrapper {
        margin-left: 20px !important;
    }
}


.triv-header {
    z-index: 1050;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.triv-header .navbar {
    background-color: #FFFFFF !important;
}

.triv-header .triv-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.triv-header .triv-brand-name {
    font-size: 1.5rem;
    color: #1A1A1A;
    letter-spacing: -0.5px;
}

.triv-header .nav-link {
    color: #1A1A1A !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.triv-header .nav-link:hover {
    color: #B8860B !important;
}

.triv-header .btn-primary {
    background-color: #B8860B;
    border: none;
    color: #FFFFFF;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 8px;
}

.site-footer {
    background-color: #FFFFFF;
    border-top: 1px solid rgba(184, 134, 11, 0.15);
    font-family: 'Inter', sans-serif;
    color: #1A1A1A;
}

.site-footer .footer-logo {
    max-width: 50px;
    height: auto;
}

.site-footer .footer-link {
    display: block;
    padding: 4px 0;
    color: #4A4A4A;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.site-footer .footer-link:hover {
    color: #B8860B;
    transform: translateX(5px);
}

.site-footer .contact-item i {
    font-size: 1.25rem;
    color: #B8860B;
}

/* ===== PAGE TEMPLATE: style-interviews ===== */
.detail-page-wrapper {
    background-color: #f8faff;
    overflow-x: hidden;
}

.bg-primary-accent {
    background-color: #B8860B !important;
    color: #FFFFFF !important;
}

.bg-primary-accent-soft {
    background-color: rgba(184, 134, 11, 0.05) !important;
}

.border-accent {
    border: 1px solid rgba(184, 134, 11, 0.2) !important;
}

.article-hero h1 {
    color: #1A1A1A;
    line-height: 1.1;
    letter-spacing: -1px;
}

.content-rich-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
}

.content-rich-text h2 {
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
}

.content-rich-text p {
    margin-bottom: 1.5rem;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-card {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.btn-comment-action {
    border: none;
    background: none;
    padding: 0;
    font-size: 0.85rem;
    color: #6C757D;
    transition: color 0.2s;
}

.btn-comment-action:hover {
    color: #B8860B;
}

.article-sidebar .sidebar-card {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.sidebar-post h5 a:hover {
    color: #B8860B !important;
}

.comment-avatar-small {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.border-start-accent {
    border-left: 3px solid #B8860B !important;
}

.triv-header .navbar-brand img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 2rem !important;
    }

    .content-rich-text {
        font-size: 1rem;
    }

    .comment-avatar {
        width: 40px;
        height: 40px;
    }
}
