:root {
    --primary:#b80000;
    --dark:#111;
    --muted:#555;
    --light:#f4f6f8;
    --card:#fff;
    --border:#e5e5e5;
}

* {
    box-sizing:border-box;
}

body {
    margin:0;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
    background:var(--light);
    color:var(--dark);
    line-height:1.6;
}

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

.navbar {
    background:var(--primary);
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.12);
}

.nav-container {
    max-width:1120px;
    margin:auto;
    padding:13px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.logo {
    color:#fff;
    font-size:23px;
    font-weight:900;
}

.nav-links {
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.nav-links a {
    color:#fff;
    font-size:14px;
    font-weight:700;
}

.search-form input {
    padding:9px 12px;
    border-radius:999px;
    border:0;
    min-width:240px;
}

.container {
    max-width:1120px;
    margin:auto;
    padding:22px 20px;
}

.hero,
.section-header,
.empty {
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:32px;
    margin-bottom:24px;
}

.hero h1 {
    margin:8px 0;
    font-size:clamp(2rem,5vw,3.2rem);
    line-height:1.08;
    max-width:760px;
}

.hero p {
    color:var(--muted);
    max-width:650px;
}

.eyebrow {
    color:var(--primary);
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
}

.category-row {
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:24px;
}

.category-row a {
    background:#fff;
    border:1px solid var(--border);
    padding:8px 13px;
    border-radius:999px;
    font-size:14px;
    font-weight:800;
}

.grid {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(290px,1fr));
    gap:24px;
}

.card {
    background:var(--card);
    border:1px solid var(--border);
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 2px 7px rgba(0,0,0,.05);
    transition:.2s;
}

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

.card-img {
    width:100%;
    height:195px;
    object-fit:cover;
    background:#eaeaea;
}

.card-content {
    padding:18px;
}

.card h2 {
    font-size:1.15rem;
    line-height:1.3;
    margin:10px 0;
}

.card p {
    color:var(--muted);
    font-size:14px;
}

.card time {
    color:#888;
    font-size:12px;
}

.badge {
    display:inline-block;
    color:#fff;
    padding:4px 10px;
    border-radius:5px;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    background:#6c757d;
}

.cat-sports { background:#28a745; }
.cat-politics { background:#dc3545; }
.cat-business { background:#0d6efd; }
.cat-entertainment { background:#6f42c1; }
.cat-technology { background:#20c997; }
.cat-health { background:#fd7e14; }
.cat-education { background:#795548; }
.cat-crime { background:#343a40; }
.cat-news { background:#6c757d; }

.post-layout {
    display:grid;
    grid-template-columns:minmax(0,2fr) 330px;
    gap:28px;
}

.post-main {
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    padding:28px;
}

.post-main h1 {
    font-size:clamp(1.8rem,4vw,2.8rem);
    line-height:1.12;
    margin:14px 0;
}

.post-image {
    width:100%;
    max-height:470px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:18px;
}

.post-meta {
    color:#666;
    font-size:14px;
    border-bottom:1px solid var(--border);
    padding-bottom:16px;
    margin-bottom:24px;
}

.post-meta a,
.source-box a,
.widget a {
    color:var(--primary);
    font-weight:800;
}

.post-body {
    font-size:18px;
    color:#222;
    word-break:break-word;
}

.post-body img,
.post-body iframe,
.post-body figure,
.post-body table,
.post-body div {
    max-width:100% !important;
    height:auto !important;
}

.source-box {
    background:#fff7f7;
    border-left:4px solid var(--primary);
    margin-top:28px;
    padding:14px;
    border-radius:6px;
}

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

.ad-box,
.widget {
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    padding:20px;
}

.ad-box {
    min-height:280px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#777;
    border-style:dashed;
}

.widget a {
    display:block;
    padding:8px 0;
}

.pagination {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    margin:30px 0;
}

.pagination a,
.pagination span {
    background:#fff;
    border:1px solid var(--border);
    padding:9px 14px;
    border-radius:8px;
    font-weight:800;
}

.footer {
    margin-top:40px;
    padding:25px 0;
    border-top:1px solid var(--border);
    color:var(--muted);
    text-align:center;
    font-size:14px;
}

.footer a {
    color:var(--primary);
    font-weight:800;
}

@media(max-width:900px) {
    .post-layout {
        grid-template-columns:1fr;
    }

    .nav-container {
        flex-direction:column;
        align-items:flex-start;
    }

    .search-form,
    .search-form input {
        width:100%;
    }
}

@media(max-width:600px) {
    .container {
        padding:14px 10px;
    }

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

    .post-main {
        padding:16px;
    }

    .hero {
        padding:22px;
    }
}

/* ================================
   Premium Admin UI
================================ */

body:has(.admin-shell),
body:has(.admin-card),
body:has(.admin-table),
body:has(.form-box) {
    background:
        radial-gradient(circle at top left, rgba(184,0,0,.08), transparent 32%),
        linear-gradient(180deg, #f7f8fb 0%, #eef1f5 100%);
}

.admin-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.admin-sidebar {
    background: #111827;
    color: #fff;
    border-radius: 18px;
    padding: 20px;
    position: sticky;
    top: 90px;
    box-shadow: 0 18px 45px rgba(17, 24, 39, .18);
}

.admin-sidebar h3 {
    margin: 0 0 18px;
    font-size: 18px;
    letter-spacing: -.3px;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d5db;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 6px;
    transition: .18s ease;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: rgba(255,255,255,.1);
    color: #fff;
    transform: translateX(3px);
}

.admin-panel {
    min-width: 0;
}

.admin-hero {
    background:
        linear-gradient(135deg, #b80000 0%, #7a0000 100%);
    color: #fff;
    border-radius: 22px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 18px 45px rgba(184, 0, 0, .22);
    position: relative;
    overflow: hidden;
}

.admin-hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -70px;
    top: -70px;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
}

.admin-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    letter-spacing: -.8px;
}

.admin-hero p {
    margin: 0;
    color: rgba(255,255,255,.85);
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--primary);
    color: #fff !important;
    border: 0;
    border-radius: 12px;
    padding: 11px 16px;
    font-weight: 900;
    cursor: pointer;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(184,0,0,.18);
    transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(184,0,0,.24);
}

.btn.secondary {
    background: #111827;
    box-shadow: 0 8px 18px rgba(17,24,39,.18);
}

.btn.light {
    background: #fff;
    color: #b80000 !important;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.admin-card {
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229,229,229,.9);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
    position: relative;
    overflow: hidden;
}

.admin-card::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    right: -20px;
    top: -20px;
    background: rgba(184,0,0,.08);
    border-radius: 50%;
}

.admin-card h2 {
    margin: 0;
    font-size: 2.6rem;
    color: var(--primary);
    letter-spacing: -1px;
}

.admin-card p {
    margin: 6px 0 0;
    color: #6b7280;
    font-weight: 800;
}

.form-box {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229,229,229,.95);
    border-radius: 22px;
    padding: 26px;
    max-width: 980px;
    margin: 0 auto 24px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .08);
}

.form-box h1,
.form-box h2 {
    margin-top: 0;
    letter-spacing: -.5px;
}

.form-box label {
    display: block;
    font-weight: 900;
    margin-top: 16px;
    color: #111827;
    font-size: 14px;
}

.form-box input,
.form-box textarea,
.form-box select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d9dde5;
    border-radius: 12px;
    margin-top: 7px;
    font-family: inherit;
    font-size: 15px;
    background: #fff;
    outline: none;
    transition: border-color .16s ease, box-shadow .16s ease;
}

.form-box input:focus,
.form-box textarea:focus,
.form-box select:focus {
    border-color: rgba(184,0,0,.55);
    box-shadow: 0 0 0 4px rgba(184,0,0,.08);
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .08);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 900px;
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #edf0f4;
    font-size: 14px;
}

.admin-table th {
    background: #f9fafb;
    color: #374151;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 900;
}

.admin-table tr:hover td {
    background: #fffafa;
}

.admin-table td strong {
    font-size: 15px;
    color: #111827;
}

.admin-table td small a {
    color: var(--primary);
    font-weight: 900;
}

.admin-table td a {
    color: var(--primary);
    font-weight: 900;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.status-badge.published {
    background: #dcfce7;
    color: #166534;
}

.status-badge.draft {
    background: #fef3c7;
    color: #92400e;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 28px 0;
}

.pagination a,
.pagination span {
    background: #fff;
    border: 1px solid var(--border);
    padding: 10px 15px;
    border-radius: 12px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(15,23,42,.05);
}

.pagination a {
    color: var(--primary);
}

.admin-alert {
    padding: 13px 15px;
    border-radius: 12px;
    font-weight: 800;
    margin-bottom: 18px;
}

.admin-alert.error {
    background: #fee2e2;
    color: #991b1b;
}

.admin-alert.success {
    background: #dcfce7;
    color: #166534;
}

@media(max-width: 1000px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
    }

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

@media(max-width: 620px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .admin-hero,
    .form-box,
    .admin-card {
        border-radius: 16px;
        padding: 20px;
    }

    .admin-table {
        min-width: 760px;
    }
}

/* ADMIN CLEAN UI - SAFE VERSION */

.form-box,
.admin-card,
.table-wrap,
.admin-table,
.section-header {
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.form-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px;
    max-width: 900px;
    margin: 30px auto;
}

.form-box h1,
.form-box h2 {
    margin-top: 0;
    font-size: 2rem;
    letter-spacing: -0.5px;
}

.form-box label {
    display: block;
    font-weight: 800;
    margin-top: 16px;
    color: #111827;
}

.form-box input,
.form-box textarea,
.form-box select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    margin-top: 7px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    background: #fff;
}

.form-box input:focus,
.form-box textarea:focus,
.form-box select:focus {
    border-color: #b80000;
    box-shadow: 0 0 0 4px rgba(184, 0, 0, 0.08);
}

.btn {
    display: inline-block;
    background: #b80000;
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: 11px 16px;
    font-weight: 900;
    cursor: pointer;
    margin: 6px 6px 6px 0;
}

.btn:hover {
    opacity: 0.9;
}

.btn.secondary {
    background: #111827;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.admin-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 26px;
    text-align: center;
}

.admin-card h2 {
    margin: 0;
    color: #b80000;
    font-size: 2.6rem;
}

.admin-card p {
    margin: 6px 0 0;
    color: #6b7280;
    font-weight: 800;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    margin-top: 20px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    background: #ffffff;
}

.admin-table th,
.admin-table td {
    border-bottom: 1px solid #edf0f4;
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}

.admin-table th {
    background: #f9fafb;
    color: #374151;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 900;
}

.admin-table tr:hover td {
    background: #fff7f7;
}

.admin-table a {
    color: #b80000;
    font-weight: 900;
}

.status-badge {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.status-badge.published {
    background: #dcfce7;
    color: #166534;
}

.status-badge.draft {
    background: #fef3c7;
    color: #92400e;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
}

.pagination a,
.pagination span {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 900;
}

@media(max-width: 700px) {
    .form-box {
        padding: 20px;
        margin: 15px auto;
    }

    .admin-table {
        min-width: 760px;
    }
}

/* ================================
   Featured Article + Trending Now
================================ */

.featured-section {
    margin-bottom: 26px;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    background: #111827;
    color: #fff;
    border-radius: 24px;
    overflow: hidden;
    min-height: 430px;
    box-shadow: 0 22px 55px rgba(15, 23, 42, .18);
}

.featured-image-wrap {
    min-height: 430px;
    background: #222;
}

.featured-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.featured-card:hover .featured-image-wrap img {
    transform: scale(1.04);
}

.featured-content {
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-label {
    color: #ffc107;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 12px;
}

.featured-content .badge {
    width: fit-content;
    margin-bottom: 14px;
}

.featured-content h1 {
    margin: 0 0 15px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -1px;
}

.featured-content p {
    color: rgba(255,255,255,.78);
    font-size: 16px;
    margin-bottom: 18px;
}

.featured-content time {
    color: rgba(255,255,255,.62);
    font-size: 13px;
    font-weight: 700;
}

.trending-strip {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 26px;
    box-shadow: 0 10px 28px rgba(15,23,42,.06);
}

.trending-heading {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.trending-heading span {
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    padding: 7px 11px;
    border-radius: 999px;
}

.trending-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.trending-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    align-items: center;
    border: 1px solid #edf0f4;
    border-radius: 14px;
    padding: 9px;
    transition: .18s ease;
    background: #fff;
}

.trending-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(15,23,42,.08);
}

.trending-item img {
    width: 72px;
    height: 62px;
    object-fit: cover;
    border-radius: 10px;
    background: #eee;
}

.trending-item strong {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.25;
}

.trending-item small {
    display: block;
    color: #777;
    font-size: 11px;
    margin-top: 5px;
}

@media(max-width: 1000px) {
    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-image-wrap {
        min-height: 290px;
    }

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

@media(max-width: 600px) {
    .featured-card {
        border-radius: 18px;
        min-height: auto;
    }

    .featured-content {
        padding: 24px;
    }

    .featured-image-wrap {
        min-height: 220px;
    }

    .trending-list {
        grid-template-columns: 1fr;
    }

    .trending-item {
        grid-template-columns: 82px 1fr;
    }

    .trending-item img {
        width: 82px;
        height: 66px;
    }
}

/* ================================
   Breaking Ticker + Most Read + Related
================================ */

.breaking-ticker {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    background: #111827;
    color: #fff;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 22px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .13);
}

.breaking-label {
    background: var(--primary);
    color: #fff;
    padding: 13px 16px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .04em;
}

.breaking-scroll {
    overflow: hidden;
    white-space: nowrap;
}

.breaking-track {
    display: inline-flex;
    gap: 34px;
    align-items: center;
    animation: breakingMove 38s linear infinite;
    padding-left: 24px;
}

.breaking-track a {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.breaking-track a::before {
    content: "•";
    color: #ffc107;
    margin-right: 10px;
}

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

@keyframes breakingMove {
    from {
        transform: translateX(0);
    }

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

.homepage-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.homepage-sidebar {
    position: sticky;
    top: 95px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 6px 0 16px;
}

.section-title h2 {
    margin: 0;
    font-size: 1.55rem;
    letter-spacing: -.4px;
}

.section-title h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    background: var(--primary);
    border-radius: 999px;
    margin-top: 5px;
}

.most-read-widget h3 {
    margin-top: 0;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 8px;
}

.most-read-item {
    display: grid !important;
    grid-template-columns: 82px 1fr;
    gap: 12px;
    align-items: center;
    padding: 11px 0 !important;
    border-bottom: 1px solid #edf0f4;
}

.most-read-item:last-child {
    border-bottom: 0;
}

.most-read-item img {
    width: 82px;
    height: 66px;
    object-fit: cover;
    border-radius: 10px;
    background: #eee;
}

.most-read-item strong {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.3;
    color: #111;
}

.most-read-item small {
    display: block;
    color: #777;
    font-size: 11px;
    margin-top: 5px;
}

.related-section {
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid var(--border);
}

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

.related-grid .card-img {
    height: 155px;
}

.related-grid .card h2 {
    font-size: 1rem;
}

@media(max-width: 1000px) {
    .homepage-layout {
        grid-template-columns: 1fr;
    }

    .homepage-sidebar {
        position: static;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 600px) {
    .breaking-ticker {
        grid-template-columns: 1fr;
    }

    .breaking-label {
        text-align: center;
    }

    .breaking-track {
        animation-duration: 30s;
        padding: 11px 0 11px 18px;
    }

    .breaking-track a {
        font-size: 13px;
    }
}

/* ================================
   Source + Author Archives
================================ */

.archive-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.archive-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    box-shadow: 0 10px 25px rgba(15,23,42,.05);
    transition: .18s ease;
}

.archive-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(15,23,42,.09);
}

.archive-item strong {
    color: #111827;
    font-size: 16px;
}

.archive-item span {
    color: #b80000;
    font-weight: 900;
    font-size: 13px;
    white-space: nowrap;
}

.card-author {
    display: block;
    margin: 8px 0 5px;
    color: #777;
    font-size: 12px;
}

.card-author a {
    color: var(--primary);
    font-weight: 900;
}

.source-header a {
    color: var(--primary);
    font-weight: 900;
}