:root {
    --navy: #0E1826;
    --navy-light: #16233a;
    --accent: #C1440E;
    --accent-light: #e05a1e;
    --body-text: #262626;
    --gray: #6b6b6b;
    --border-light: #e3e3e3;
    --bg: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--body-text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 19px;
}

a {
    color: var(--accent);
    text-decoration: underline;
}

a:hover {
    color: var(--navy);
}

h1, h2, h3, h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin: 1.4em 0 0.6em;
}

h1 { font-size: 2.1rem; }
h2 { font-size: 1.6rem; }
h3 {
    font-size: 1.05rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-top: 2px solid var(--accent);
    padding-top: 0.9em;
}

.site-wrapper {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    background: var(--navy);
    color: #fff;
    padding: 22px 0;
    margin-bottom: 40px;
    border-bottom: 4px solid var(--accent);
}

.site-header .site-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.site-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
}

.site-tagline {
    font-size: 0.85rem;
    color: var(--accent-light);
    margin-top: 2px;
    font-weight: bold;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
}

.main-nav a:hover {
    color: var(--accent-light);
}

/* Hero */
.hero-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-bottom: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.hero-text {
    flex: 1.3;
    min-width: 0;
}

.hero-shield {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-shield svg {
    width: 100%;
    max-width: 220px;
    height: auto;
}

.hero-text p {
    font-size: 1.1rem;
}

.hero-kicker {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-weight: bold;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 3px;
    margin-bottom: 14px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.cta {
    display: inline-block;
    font-weight: bold;
    padding: 12px 26px;
    border-radius: 4px;
    text-decoration: none;
}

.cta-primary {
    background: var(--accent);
    color: #fff;
}

.cta-primary:hover {
    background: var(--navy);
    color: #fff;
}

.cta-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 10px 24px;
}

.cta-secondary:hover {
    background: var(--navy);
    color: #fff;
}

@media (max-width: 700px) {
    .hero-flex {
        flex-direction: column-reverse;
    }
    .hero-shield svg {
        max-width: 140px;
    }
}

/* Rule strip (like the golden rules callout) */
.rule-strip {
    background: #fff6f0;
    border-left: 4px solid var(--accent);
    padding: 18px 22px;
    margin: 24px 0;
    font-weight: bold;
    color: var(--navy);
}

/* Post list / cards */
.post-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-card {
    padding: 26px 0;
    border-bottom: 1px solid var(--border-light);
}

.post-card h2 {
    margin-top: 0;
    font-size: 1.35rem;
}

.post-card h2 a {
    color: var(--navy);
    text-decoration: none;
}

.post-meta {
    font-size: 0.82rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: bold;
}

.post-excerpt {
    margin-top: 10px;
}

.read-more {
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
}

/* Single post */
.single-post .post-meta {
    margin-bottom: 6px;
}

.single-post h1 {
    margin-top: 0.3em;
}

.post-content p {
    margin: 1em 0;
}

.post-content blockquote {
    border-left: 3px solid var(--accent);
    margin: 1.4em 0;
    padding: 0.2em 0 0.2em 1.2em;
    color: var(--navy);
    font-style: italic;
    background: #fafafa;
}

.post-content ul, .post-content ol {
    padding-left: 1.4em;
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: #cfd3da;
    margin-top: 60px;
    padding: 34px 0;
    font-size: 0.85rem;
    border-top: 4px solid var(--accent);
}

.site-footer a {
    color: var(--accent-light);
}

.site-footer .tagline {
    color: var(--accent-light);
    margin-top: 6px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
    body { font-size: 17px; }
    h1 { font-size: 1.6rem; }
    .site-header .site-wrapper { flex-direction: column; align-items: flex-start; }
}
