:root {
    --wt-red: #c8102e;
    --wt-red-dark: #970b22;
    --wt-dark: #111827;
    --wt-light-bg: #f7f7f7;
    --wt-border: #e5e5e5;
}

body {
    font-family: Arial, sans-serif;
    background: var(--wt-light-bg);
    color: #111;
}

[data-bs-theme="dark"] body {
    background: #0f141b;
    color: #f5f5f5;
}

[data-bs-theme="dark"] img.dark-mode {
    display: block;
}

[data-bs-theme="dark"] img.light-mode {
    display: none;
}

[data-bs-theme="light"] img.dark-mode {
    display: none;
}

[data-bs-theme="light"] img.light-mode {
    display: block;
}

.top-bar {
    font-size: 0.85rem;
    border-bottom: 1px solid var(--wt-border);
    background: #fff;
}

[data-bs-theme="dark"] .top-bar,
[data-bs-theme="dark"] .site-header,
[data-bs-theme="dark"] .card,
[data-bs-theme="dark"] .most-read,
[data-bs-theme="dark"] .newsletter-box {
    background: #151b24;
    border-color: #263241;
}

.site-logo {
    font-family: Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
}

.site-logo span {
    color: var(--wt-red);
}

.navbar {
    background: var(--wt-red);
}

.navbar .nav-link,
.navbar-brand {
    color: #fff !important;
    font-weight: 700;
}

.hero-card {
    min-height: 440px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .82), rgba(0, 0, 0, .05));
}

.hero-content {
    position: absolute;
    z-index: 2;
    bottom: 0;
    padding: 2rem;
    color: #fff;
}

.badge-red {
    background: var(--wt-red);
    color: #fff;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.article-card img,
.card-img-top {
    aspect-ratio: 4 / 3;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .35s ease;
}

.article-card,
.card {
    overflow: hidden;
}

.card:hover .card-img-top,
.article-card:hover img {
    transform: scale(1.06);
}

.side-story img {
    width: 120px !important;
    height: 95px !important;
    object-fit: cover;
    border-radius: 8px;
}

.category {
    color: var(--wt-red);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.article-title {
    font-weight: 800;
    line-height: 1.25;
}

.meta {
    color: #777;
    font-size: 0.85rem;
}

[data-bs-theme="dark"] .meta {
    color: #b8c0cc;
}

.most-read {
    background: #fff;
    border: 1px solid var(--wt-border);
    border-radius: 12px;
    padding: 1.25rem;
}

.most-read-number {
    color: var(--wt-red);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--wt-red), var(--wt-red-dark));
    color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
}

.btn-red {
    background: var(--wt-red);
    color: #fff;
    border: none;
    font-weight: 700;
}

.btn-red:hover {
    background: var(--wt-red-dark);
    color: #fff;
}

footer {
    background: #111;
    color: #ddd;
    margin-top: 3rem;
    padding: 2rem 0;
}

[data-bs-theme="dark"] footer {
    background: rgba(0, 0, 0, 0.2);

}

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

    .hero-content {
        padding: 1.25rem;
    }
}