:root {
    --bg: #f5f7fb;
    --paper: #ffffff;
    --text: #121a2b;
    --muted: #5d6781;
    --line: #dce2ef;
    --primary: #bf1238;
    --primary-dark: #900b2a;
    --navy: #1a305c;
}

* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
    margin: 0;
    background: radial-gradient(circle at top left, #ffffff, #f5f7fb 60%);
    color: var(--text);
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1240px, 95%); margin-inline: auto; }

.lux-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 40;
}
.top-links {
    min-height: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #e5eaf6;
    font-size: .86rem;
    color: #3d4c73;
}
.top-links a:hover { color: var(--primary); }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-search-row {
    padding: 10px 0;
    border-bottom: 1px solid #ebeff8;
}

.site-search {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    max-width: 520px;
    margin-inline-start: auto;
}

.site-search input[type="search"] {
    flex: 1;
    min-width: 0;
    border: 1px solid #cfd7ea;
    border-radius: 10px;
    padding: 10px 14px;
    font: inherit;
    font-size: 0.96rem;
    background: #fff;
    direction: rtl;
}
.site-search input[type="search"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(191, 18, 56, 0.12);
}
.site-search button {
    flex-shrink: 0;
    border: 0;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(120deg, var(--primary), var(--navy));
}
.site-search button:hover { opacity: 0.95; }

.search-results-count {
    color: var(--muted);
    margin: 0 0 14px;
    font-weight: 600;
}

.lux-header::after {
    content: "";
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: .55;
}
.header-row {
    display: grid;
    grid-template-columns: 290px 1fr;
    align-items: center;
    gap: 22px;
    min-height: 82px;
}
.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--navy);
    border-radius: 0;
    width: 44px;
    height: 38px;
    font-size: 1.18rem;
    font-weight: 700;
    cursor: pointer;
}
.nav-toggle:hover { color: var(--primary); }
.brand { display: inline-flex; flex-direction: column; }
.brand-ar {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: 0;
    font-family: "Noto Kufi Arabic", "Cairo", "Tajawal", Tahoma, Arial, sans-serif;
}
.brand-en {
    margin-top: 2px;
    font-size: .8rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
}
.brand-en::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    margin-inline-end: 8px;
    vertical-align: middle;
    opacity: .9;
}
/* Keep site identity in Arabic only for cleaner branding */
.brand-en { display: inline; }
.main-nav {
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.main-nav a {
    padding: 10px 4px;
    color: #243252;
    font-weight: 700;
    border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}
.menu-dropdown { position: relative; }
.menu-btn {
    border: 1px solid #d8deec;
    background: linear-gradient(180deg, #ffffff, #f7f9ff);
    color: var(--navy);
    font: inherit;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.menu-btn .caret { opacity: .75; font-size: .9em; }
.menu-btn:hover { border-color: #c8d3ea; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline-start: 0;
    width: min(520px, 78vw);
    background: #fff;
    border: 1px solid #dce3f3;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(22, 43, 82, 0.16);
    padding: 10px;
    display: none;
    z-index: 60;
    transform-origin: top center;
    transform: translateY(-6px) scale(.98);
    opacity: 0;
    transition: opacity .16s ease, transform .16s ease;
}
.dropdown-menu a {
    display: block;
    padding: 10px 10px;
    border-radius: 8px;
    color: #2b3a61;
    border: 1px solid transparent;
}
.dropdown-menu a:hover {
    background: #f2f6ff;
    color: var(--primary);
    border-color: #dbe5ff;
}
.menu-dropdown:hover .dropdown-menu,
.menu-dropdown.open .dropdown-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    opacity: 1;
    transform: translateY(0) scale(1);
}
.menu-dropdown:hover .dropdown-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Drawer under the bar (mobile + tablet) */
.nav-drawer {
    display: none;
    padding: 0 0 10px;
}
.drawer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 6px 0 0;
    box-shadow: none;
}
.drawer-block h4 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 1rem;
}
.drawer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}
.drawer-links a {
    padding: 9px 10px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #e7edf8;
    background: transparent;
    color: #25345a;
    font-weight: 700;
}
.drawer-links a:hover { color: var(--primary); }

.lux-header.drawer-open .nav-drawer { display: block; }

/* Horizontal scroll sections bar (above breaking bar) */
.sections-scroll {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid #e6ecf8;
}
.sections-track {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scroll-snap-type: x mandatory;
}
.sections-track::-webkit-scrollbar { height: 7px; }
.sections-track::-webkit-scrollbar-thumb { background: #d6deef; border-radius: 999px; }
.chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: transparent;
    border: 0;
    color: #2b3b62;
    padding: 7px 10px;
    border-radius: 0;
    font-size: .9rem;
    font-weight: 800;
}
.chip:hover { color: var(--primary); }
.chip.active {
    color: var(--primary);
    background: transparent;
}

.breaking-bar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: #fff;
    margin-top: 0;
    box-shadow: 0 8px 18px rgba(151, 14, 50, 0.2);
}
.ticker-track { display: flex; gap: 12px; align-items: center; padding: 9px 0; }
.ticker-items { display: flex; gap: 26px; white-space: nowrap; animation: tickerMove 26s linear infinite; }
@keyframes tickerMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-40%); }
}

.home-layout {
    margin-top: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
}
.lead-column { min-width: 0; }
.side-column { min-width: 0; }

.hero-slider { border-radius: 14px; overflow: hidden; box-shadow: 0 14px 30px rgba(17, 35, 71, 0.16); }
.slide { display: none; position: relative; color: #fff; }
.slide.active { display: block; }
.slide img { width: 100%; height: 420px; object-fit: cover; display: block; }
.slide-caption {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .82));
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.45;
}

.lead-story {
    margin-top: 14px;
    padding: 20px;
    border-radius: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(24, 47, 91, 0.08);
}
.pill {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    font-size: .8rem;
    border-radius: 999px;
    background: #fde8ed;
    color: var(--primary-dark);
    font-weight: 700;
}
.lead-story h1 { margin: 0 0 10px; font-size: 2rem; line-height: 1.35; }
.lead-story p { margin: 0 0 10px; color: var(--muted); line-height: 1.8; }
.lead-story p.excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    word-break: break-word;
}
.read-more { color: var(--primary); font-weight: 800; }

.section-heading {
    margin: 22px 0 14px;
    font-size: 1.55rem;
    border-inline-start: 5px solid var(--primary);
    padding-inline-start: 10px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 14px;
}
.news-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    transition: transform .2s ease, box-shadow .2s ease;
}
.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(21, 40, 78, 0.12);
}
.news-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.card-body { padding: 12px; }
.card-section { color: var(--primary); font-size: .82rem; font-weight: 700; }
.news-card h3 { margin: 6px 0; font-size: 1.06rem; line-height: 1.45; }
.news-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: .95rem; }
.news-card p.excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    word-break: break-word;
}

.panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 14px;
    box-shadow: 0 6px 16px rgba(20, 38, 74, 0.06);
}
.panel h3 { margin: 0 0 10px; font-size: 1.2rem; }
.panel-link {
    display: block;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px dashed #d9dfec;
    color: #263457;
    line-height: 1.65;
}
.newsletter p { color: var(--muted); margin: 0 0 8px; }
.newsletter input {
    width: 100%;
    height: 40px;
    border: 1px solid #cfd7ea;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 8px;
}
.newsletter button {
    border: 0;
    color: #fff;
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(100deg, var(--primary), var(--navy));
}
.ad-box p { margin-top: 0; color: var(--muted); }
.ad-box img { width: 100%; border-radius: 8px; display: block; }
.adsense-panel { min-height: 120px; }
.adsense-panel ins.adsbygoogle { margin: 0 auto; }

.section-blocks {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 14px;
}
.section-box {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    padding: 12px;
}
.section-box h3 { margin: 0 0 8px; color: var(--navy); }
.section-box a {
    display: block;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px dashed #dbe1ef;
}

.lux-footer {
    margin-top: 30px;
    background: linear-gradient(120deg, #f4f7fc, #eef2fa);
    border-top: 1px solid var(--line);
    padding: 24px 0 10px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}
.footer-grid h4 { margin: 0 0 10px; color: var(--navy); }
.footer-grid a { display: block; margin-bottom: 8px; color: #334266; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.social-links a {
    border: 1px solid #ccd5e9;
    border-radius: 999px;
    padding: 6px 10px;
    background: #fff;
}
.copy { text-align: center; color: #66708b; margin: 20px 0 0; }

/* Section + Article */
.section-page .news-list,
.article-page .news-list { display: flex; flex-direction: column; gap: 14px; }
.list-item {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 14px;
    border-radius: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 10px;
}
.list-item img { width: 100%; height: 140px; object-fit: cover; border-radius: 8px; }
.list-item h3 { margin: 4px 0; font-size: 1.25rem; }
.item-section { color: var(--primary); font-size: .82rem; font-weight: 700; }
.list-item p { margin: 0; color: var(--muted); line-height: 1.7; }
.list-item p.excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    word-break: break-word;
    margin-bottom: 6px;
}
.views-line { margin-top: 8px !important; color: #6a748d !important; font-size: .9rem; }

.article-column.article-shell {
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.article-shell {
    max-width: 820px;
    margin-inline: auto;
    padding-bottom: 16px;
}

.article-head {
    margin-bottom: 20px;
}

.article-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--muted);
    margin-bottom: 14px;
}
.article-breadcrumb a {
    color: #58658a;
    text-decoration: none;
    font-weight: 600;
}
.article-breadcrumb a:hover { color: var(--primary); }

.article-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 0.93rem;
    color: #5c6785;
}

.article-section-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.84rem;
    letter-spacing: 0.02em;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(191, 18, 56, 0.12), rgba(26, 48, 92, 0.07));
    border: 1px solid rgba(191, 18, 56, 0.2);
}

.article-date { color: inherit; opacity: 0.9; }
.article-views { opacity: 0.85; }

.article-title {
    margin: 0 0 10px;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.38;
    color: var(--navy);
    font-weight: 800;
}

.article-summary {
    margin: 0;
    padding: 16px 18px;
    font-size: 1.08rem;
    line-height: 1.92;
    color: #293652;
    background: linear-gradient(180deg, #f8faff, #eef3fb);
    border-inline-start: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 20px rgba(18, 32, 64, 0.06);
}

.article-cover {
    margin: 0 0 28px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(16, 28, 58, 0.12), 0 1px 0 rgba(255,255,255,0.8) inset;
    background: #e8ecf5;
}

.article-cover img {
    width: 100%;
    height: auto;
    max-height: min(520px, 56vh);
    object-fit: cover;
    vertical-align: middle;
    display: block;
}

.article-prose {
    font-size: 1.115rem;
    line-height: 2.05;
    color: #1c2740;
}

.article-prose .article-p {
    margin: 0 0 1.35em;
}
.article-prose .article-p:last-child { margin-bottom: 0; }

.article-column:not(.article-shell) {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    padding: 16px;
}
.article-meta { color: #6e7892; margin-bottom: 12px; }
.article-image { width: 100%; max-height: 520px; object-fit: cover; border-radius: 10px; }

.article-aside .panel-related .panel-link {
    line-height: 1.5;
}

.empty-note { color: #68728a; }

/* Admin */
.admin-body { background: #f4f6fb; }
.admin-wrap { margin: 20px auto 35px; }
.admin-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.admin-top h1 {
    margin: 0;
    color: var(--navy);
    font-size: 2rem;
}
.btn-link { text-decoration: none; background: var(--navy); color: #fff; padding: 8px 12px; border-radius: 8px; margin-inline-start: 6px; }
.btn-link.danger { background: var(--primary); }
.flash { background: #daf8e7; border: 1px solid #83d9a8; color: #116436; padding: 8px 10px; border-radius: 8px; }
.admin-stats {
    margin: 16px 0 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}
.stat-card {
    border-radius: 12px;
    border: 1px solid #dfe6f5;
    background: linear-gradient(180deg, #fff, #f5f8ff);
    padding: 10px 12px;
}
.stat-card span { display: block; font-size: .85rem; color: #607092; }
.stat-card strong { font-size: 1.4rem; color: var(--navy); }
.admin-section {
    margin-top: 14px;
    border: 1px solid #dbe3f4;
    border-radius: 14px;
    background: #f9fbff;
    padding: 14px;
}
.admin-section h2 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 1.15rem;
    border-inline-start: 4px solid var(--primary);
    padding-inline-start: 8px;
}
.admin-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.admin-grid.compact { gap: 12px; }
.admin-card {
    background: #fff; padding: 14px; border-radius: 12px; box-shadow: 0 8px 18px rgba(20, 32, 58, 0.06);
    display: flex; flex-direction: column;
}
.admin-wide { grid-column: span 2; }
.admin-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 320px;
    overflow-y: auto;
    padding-inline-end: 3px;
}
.admin-list-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid #e3e9f5;
    background: #fdfefe;
    border-radius: 10px;
    padding: 8px 10px;
}
.admin-list-row span {
    color: #1f2c4a;
    line-height: 1.5;
}
.admin-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}
.admin-actions form { margin: 0; }
.mini-btn {
    border: 1px solid #cdd7ed;
    background: #f4f7ff;
    color: #2c3f69;
    text-decoration: none;
    padding: 4px 9px;
    border-radius: 8px;
    font-size: .82rem;
    cursor: pointer;
}
.mini-btn.danger {
    border-color: #f3c7d3;
    background: #fdeef3;
    color: #ad1b44;
}
.admin-card h3, .admin-card h2 { margin-top: 0; }
.admin-card label { margin: 8px 0 4px; font-weight: 700; }
.admin-card input, .admin-card textarea, .admin-card select { border: 1px solid #ccd5e6; border-radius: 8px; padding: 8px; font: inherit; }
.admin-card button {
    margin-top: 10px; border: 0; background: linear-gradient(110deg, var(--primary), var(--navy)); color: #fff;
    padding: 9px; border-radius: 8px; font-weight: 700; cursor: pointer;
}
.login-card { max-width: 440px; margin: 0 auto; }
.admin-login-wrap {
    min-height: 70vh;
    display: grid;
    place-items: center;
}
.fancy-login {
    border: 1px solid #d9e2f4;
    box-shadow: 0 16px 34px rgba(20, 38, 74, 0.12);
    padding: 18px;
}
.fancy-login h2 { margin-bottom: 8px; color: var(--navy); }
.fancy-login p { margin-top: 0; color: #607092; }

.admin-layout {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 14px;
}
.admin-sidebar {
    background: #fff;
    border: 1px solid #dce4f4;
    border-radius: 12px;
    padding: 12px;
    height: fit-content;
    position: sticky;
    top: 90px;
}
.admin-sidebar h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 1.05rem;
}
.admin-sidebar a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: #2c3b61;
    font-weight: 700;
    margin-bottom: 5px;
}
.admin-sidebar a.active,
.admin-sidebar a:hover {
    background: #edf2ff;
    color: var(--primary);
}
.admin-main { min-width: 0; }

@media (max-width: 980px) {
    .header-row {
        grid-template-columns: 1fr auto;
        gap: 8px;
        padding: 10px 0;
    }
    /* RTL: keep brand on the right (start) */
    .brand { text-align: right; align-items: flex-start; justify-self: start; }
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .main-nav {
        grid-column: span 2;
        justify-content: center;
        gap: 14px;
    }
    .home-layout { grid-template-columns: 1fr; }
    .admin-section { padding: 12px; }
}

@media (max-width: 720px) {
    .container { width: min(100%, 94%); }
    .top-links {
        overflow-x: auto;
        white-space: nowrap;
        gap: 12px;
        padding: 0 2px;
    }
    .brand-ar { font-size: 1.2rem; }
    .site-search {
        max-width: none;
        margin-inline: 0;
    }

    .brand-en { display: inline; font-size: .66rem; letter-spacing: 1.5px; }
    .header-row { grid-template-columns: 1fr auto; align-items: center; }
    /* Brand right, toggle left in RTL */
    .brand { justify-self: start; }
    .nav-toggle { justify-self: end; }
    .main-nav { display: none; }
    .drawer-grid { grid-template-columns: 1fr; }
    .ticker-track { font-size: .9rem; }
    .slide img { height: 235px; }
    .slide-caption { font-size: 1rem; padding: 12px; }
    .lead-story h1 { font-size: 1.55rem; }
    .news-grid { grid-template-columns: 1fr; }
    .list-item { grid-template-columns: 1fr; }
    .list-item img { height: 180px; }
    .article-title { font-size: 1.9rem; }
    .article-content { font-size: 1.08rem; }
    .article-shell { padding-inline: 2px; }
    .article-cover { border-radius: 12px; }
    .article-prose { font-size: 1.04rem; line-height: 1.95; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .admin-wide { grid-column: span 1; }
}

@media (max-width: 980px) {
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 6px;
    }
    .admin-sidebar h3 {
        grid-column: 1 / -1;
        margin-bottom: 4px;
    }
    .admin-sidebar a { margin-bottom: 0; text-align: center; }
}
