/*
Theme Name: Axiom News
Theme URI: https://usnews360.net
Description: Premium, high-performance News Portal Theme optimized for US News websites.
Author: Accio Work
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: axiom-news
*/

:root {
    --primary: #e11d48;
    --dark: #111827;
    --light: #f3f4f6;
    --text: #374151;
    --white: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
.site-header {
    background: var(--white);
    border-bottom: 1px solid #e5e7eb;
}

.ticker-wrap {
    background: #000;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    overflow: hidden;
}

.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-navigation li {
    margin-left: 25px;
}

.main-navigation a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

/* Content */
.entry-content {
    max-width: 800px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
}