:root {
    --bg: #0b1020;
    --bg-soft: #10172b;
    --bg-panel: #11182c;
    --card: #151f3b;
    --card-soft: #1a2647;
    --text: #f5f7ff;
    --text-soft: #d8def1;
    --muted: #a9b4d0;
    --accent: #ff3b30;
    --accent2: #4ea1ff;
    --success: #2ecc71;
    --warning: #f39c12;
    --purple: #9b59b6;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.12);
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.22);
    --radius: 18px;
    --radius-md: 14px;
    --radius-lg: 28px;
    --container: 1240px;
    --transition: 0.22s ease;
}

/* RESET */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(78,161,255,0.10), transparent 28%),
        radial-gradient(circle at top left, rgba(255,59,48,0.08), transparent 20%),
        var(--bg);
    color: var(--text);
    line-height: 1.55;
}

img {
    max-width: 100%;
    display: block;
}

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

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

h1, h2, h3, h4 {
    margin-top: 0;
    line-height: 1.1;
}

p {
    color: var(--muted);
    margin-top: 0;
}

/* UTIL */
.container {
    width: min(var(--container), calc(100% - 30px));
    margin: auto;
}

.page-section {
    padding: 42px 0;
}

.hidden {
    display: none !important;
}

/* HEADER */
.topbar {
    background: rgba(10, 15, 30, 0.94);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.logo-badge {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #ff7b72);
    box-shadow: var(--shadow);
    color: #fff;
    font-weight: 700;
}

.logo small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
    margin-top: 2px;
}

/* NAV */
.nav-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.nav > a,
.nav-dropdown-toggle {
    color: var(--muted);
    font-size: 14px;
    transition: var(--transition);
}

.nav > a:hover,
.nav-dropdown-toggle:hover {
    color: #fff;
}

/* SEARCH / ACTIONS */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.header-search-btn:hover {
    background: rgba(255,255,255,0.09);
}

/* DROPDOWN */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.nav-dropdown-toggle::after {
    content: "▾";
    font-size: 12px;
    opacity: 0.8;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 240px;
    padding: 10px;
    border-radius: 16px;
    background: #11182c;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 1200;
}

.dropdown-menu a,
.dropdown-menu span {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.nav-dropdown:hover .dropdown-menu {
    display: flex;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.05);
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-only-btn {
    display: none;
}

.desktop-only {
    display: flex;
}

/* HERO PREMIUM */
.hero-premium {
    padding: 34px 0 28px;
}

.hero-premium-box {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7,12,26,0.10) 0%, rgba(7,12,26,0.52) 42%, rgba(7,12,26,0.94) 100%),
        linear-gradient(135deg, rgba(255,59,48,0.16), rgba(78,161,255,0.10));
    z-index: 1;
}

.hero-blur-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    z-index: 1;
}

.hero-blur-orb-1 {
    width: 220px;
    height: 220px;
    top: 30px;
    right: 40px;
    background: rgba(255, 59, 48, 0.24);
}

.hero-blur-orb-2 {
    width: 260px;
    height: 260px;
    bottom: -60px;
    left: 30px;
    background: rgba(78, 161, 255, 0.22);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 36px;
}

.hero-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    font-size: 14px;
    color: rgba(255,255,255,0.78);
}

.hero-breadcrumb a {
    color: rgba(255,255,255,0.82);
    transition: var(--transition);
}

.hero-breadcrumb a:hover {
    color: #fff;
}

.breadcrumb-separator {
    opacity: 0.7;
}

.hero-topline {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,59,48,0.16);
    color: #ffd6d3;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.hero-badge-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff3b30;
    box-shadow: 0 0 0 0 rgba(255,59,48,0.7);
    animation: pulseDot 1.6s infinite;
}

.hero-badge-animated {
    animation: badgeFloat 3s ease-in-out infinite;
}

.hero-category-pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(78,161,255,0.14);
    color: #dcecff;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 700;
}

.hero-premium-title {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.03;
    max-width: 940px;
    color: #fff;
    text-shadow: 0 4px 25px rgba(0,0,0,0.35);
    letter-spacing: -0.02em;
}

.hero-premium-subtitle {
    margin: 0;
    max-width: 780px;
    font-size: 18px;
    color: rgba(255,255,255,0.88);
}

/* GENERAL SECTIONS */
.section-heading,
.block-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.section-heading p,
.block-header p {
    margin: 8px 0 0;
    color: var(--muted);
}

/* CARD */
.card {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.card:hover {
    border-color: var(--border-strong);
}

.card h2,
.card h3,
.news-card h3,
.featured-card h2 {
    margin-bottom: 12px;
    color: var(--text);
}

.card-link {
    color: var(--accent2);
    font-weight: bold;
    font-size: 14px;
    transition: var(--transition);
}

.card-link:hover {
    opacity: 0.9;
}

.card-label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(78,161,255,0.14);
    color: #dcecff;
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.card-label-red {
    background: rgba(255,59,48,0.14);
    color: #ffd6d3;
}

/* GRID */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

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

/* HOMEPAGE PREMIUM */
.home-smart-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 22px;
}

.featured-large {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: stretch;
}

.featured-visual {
    min-height: 320px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
}

.featured-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-text h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 14px;
    line-height: 1.08;
}

.home-stack {
    display: grid;
    gap: 16px;
}

.trending-list {
    display: grid;
    gap: 12px;
}

.trending-item {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    transition: var(--transition);
}

.trending-item:hover {
    background: rgba(255,255,255,0.05);
}

.trending-item strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    line-height: 1.3;
}

.quick-links,
.home-headlines {
    display: grid;
    gap: 10px;
}

.quick-links a,
.home-headlines a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: #fff;
    transition: var(--transition);
}

.quick-links a:hover,
.home-headlines a:hover {
    background: rgba(255,255,255,0.06);
}

.home-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 22px;
}

.home-list {
    display: grid;
    gap: 14px;
}

.home-mini-card {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
}

.home-mini-card strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    line-height: 1.3;
}

.home-mini-card p {
    margin: 0 0 10px;
}

.home-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255,59,48,0.12);
    color: #ffd6d3;
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.home-spotlight {
    min-height: 100%;
}

.home-spotlight h2 {
    font-size: clamp(28px, 4vw, 40px);
}

.home-category-block {
    display: grid;
    gap: 16px;
}

.home-category-meta {
    font-size: 13px;
    color: var(--muted);
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
}

.editorial-lead {
    position: relative;
    overflow: hidden;
}

.editorial-lead h3 {
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.1;
}

.editorial-list {
    display: grid;
    gap: 14px;
}

.editorial-mini {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
}

.editorial-mini strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    line-height: 1.3;
}

/* QUICK LIST */
.quick-list {
    margin: 16px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.quick-list li {
    margin-bottom: 10px;
}

/* FORMS */
.newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"],
.comment-form input,
.comment-form textarea {
    flex: 1 1 240px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    color: white;
    outline: none;
}

.newsletter-form input[type="email"]::placeholder,
.newsletter-form input[type="text"]::placeholder,
.comment-form input::placeholder,
.comment-form textarea::placeholder {
    color: rgba(255,255,255,0.45);
}

.comment-form textarea {
    min-height: 140px;
    resize: vertical;
    margin-top: 12px;
    margin-bottom: 12px;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #ff7b72);
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-main:hover {
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid var(--border);
    font-weight: bold;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
}

/* SINGLE / CATEGORY / SEARCH */
.single-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
}

.article-main,
.article-sidebar {
    min-width: 0;
}

.article-meta-card {
    margin-bottom: 18px;
}

.article-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
}

.article-content p {
    font-size: 17px;
    color: var(--text-soft);
    margin-bottom: 18px;
}

.article-content h2 {
    margin-top: 30px;
    margin-bottom: 14px;
    font-size: 28px;
}

.article-content ul {
    padding-left: 20px;
    color: var(--text-soft);
    margin-bottom: 20px;
}

.article-content li {
    margin-bottom: 10px;
}

.highlight-box {
    background: rgba(78, 161, 255, 0.08);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent2);
    padding: 18px;
    border-radius: 14px;
    margin: 28px 0;
}

.highlight-box h3 {
    margin-bottom: 10px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.tag-list a {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
    transition: var(--transition);
}

.tag-list a:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.share-box {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.share-buttons a {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    font-size: 14px;
    color: white;
    transition: var(--transition);
}

.share-buttons a:hover {
    background: rgba(255,255,255,0.08);
}

.author-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.author-box-card {
    margin-top: 18px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ff7b72);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.sidebar-box {
    margin-bottom: 20px;
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-list a {
    color: white;
    font-size: 15px;
    transition: var(--transition);
    line-height: 1.35;
}

.sidebar-list a:hover {
    color: var(--accent2);
}

.related-section,
.comment-section {
    margin-top: 24px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 18px;
}

/* 404 */
.not-found-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FOOTER */
.footer {
    background: #070c1a;
    padding: 42px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.footer h3,
.footer h4 {
    margin-bottom: 10px;
    color: #fff;
}

.footer p {
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--muted);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* ANIMATIONS */
@keyframes pulseDot {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,59,48,0.65);
    }
    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 10px rgba(255,59,48,0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,59,48,0);
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .grid-3,
    .related-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 980px) {
    .home-smart-grid,
    .featured-large,
    .editorial-grid,
    .home-grid {
        grid-template-columns: 1fr;
    }

    .hero-premium-box {
        min-height: 320px;
    }

    .hero-content {
        padding: 28px;
    }

    .hero-premium-subtitle {
        font-size: 17px;
    }
}

@media (max-width: 900px) {
    .topbar-inner {
        min-height: 74px;
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .desktop-only {
        display: none;
    }

    .nav-wrap {
        display: none;
        width: 100%;
        margin-top: 14px;
        padding: 14px;
        border-radius: 18px;
        border: 1px solid var(--border);
        background: #11182c;
    }

    .nav-wrap.active {
        display: block;
    }

    .nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav > a,
    .nav-dropdown-toggle,
    .mobile-only-btn {
        width: 100%;
        min-height: 46px;
        display: flex;
        align-items: center;
        padding: 0 6px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav > a:last-child {
        border-bottom: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        min-width: 100%;
        margin: 8px 0 12px;
        padding: 8px;
        border-radius: 14px;
        background: rgba(255,255,255,0.03);
        box-shadow: none;
    }

    .mobile-only-btn {
        display: inline-flex;
    }
}

@media (max-width: 680px) {
    .grid-2,
    .grid-3,
    .related-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-premium {
        padding-top: 24px;
    }

    .hero-premium-box {
        min-height: 280px;
        border-radius: 22px;
    }

    .hero-content {
        padding: 22px;
    }

    .hero-premium-title {
        font-size: 30px;
    }

    .hero-premium-subtitle {
        font-size: 16px;
    }

    .hero-breadcrumb {
        font-size: 13px;
    }

    .topbar-inner {
        align-items: center;
        padding: 14px 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn-main,
    .btn-secondary {
        width: 100%;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-buttons a {
        width: 100%;
        justify-content: center;
    }

    .author-box {
        flex-direction: column;
    }
}

.article-image-card {
    margin-bottom: 18px;
    overflow: hidden;
}

.article-main-image {
    width: 100%;
    border-radius: 14px;
    display: block;
}

.article-image-meta {
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted);
    display: grid;
    gap: 6px;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: rgba(255,255,255,0.04);
    color: #ffffff;
}

select option {
    background: #11182c;
    color: #ffffff;
}

input[type="file"] {
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    color: white;
    border-radius: 12px;
    padding: 12px 14px;
    outline: none;
}

input[type="file"]::file-selector-button {
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.08);
    color: white;
    border-radius: 10px;
    padding: 8px 12px;
    margin-right: 12px;
    cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button {
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.08);
    color: white;
    border-radius: 10px;
    padding: 8px 12px;
    margin-right: 12px;
    cursor: pointer;
}

.has-bg,
.card-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.featured-large.has-bg {
    min-height: 460px;
    border-radius: 24px;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

.featured-large.has-bg .featured-text {
    max-width: 760px;
    z-index: 2;
}

.featured-large.has-bg h2,
.card-cover h3,
.card-cover strong,
.card-cover p,
.card-cover .card-link,
.has-bg .card-link,
.has-bg .home-category-meta {
    color: #fff;
}

.light-link {
    color: #fff !important;
    font-weight: 700;
}

.light-link:hover {
    opacity: .88;
}

.card-cover {
    min-height: 250px;
    border-radius: 20px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    transition: transform .25s ease, box-shadow .25s ease;
}

.card-cover:hover,
.featured-large.has-bg:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(0,0,0,.22);
}

.card-cover p {
    color: rgba(255,255,255,.92);
}

.card-cover .card-label,
.featured-large .card-label {
    width: fit-content;
    margin-bottom: 12px;
}

.editorial-lead.card-cover {
    min-height: 360px;
}

.home-category-meta {
    opacity: .86;
    font-size: 14px;
    margin-top: 10px;
}

.card.card-compact:not(.card-cover),
.card.editorial-lead:not(.card-cover) {
    background: #fff;
    color: #111827;
}