/* weatherradio.info */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;600;700&family=Merriweather:wght@400;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Merriweather', Georgia, serif;
    color: #333;
    background: #fff;
    line-height: 1.8;
    font-size: 1rem;
}

h1, h2, h3, h4 {
    font-family: 'Source Sans 3', Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.3;
    font-weight: 700;
}

a { color: #2a5a8a; text-decoration: underline; }
a:hover { color: #1a3a5a; }

/* Layout */
.wrap { max-width: 760px; margin: 0 auto; padding: 0 1.25rem; }

/* Header — simple, understated */
.site-header {
    border-bottom: 1px solid #ddd;
    padding: 1.25rem 0;
    background: #fafafa;
}
.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}
.site-title:hover { color: #2a5a8a; }
.site-nav a {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    color: #555;
    text-decoration: none;
    margin-left: 1.5rem;
}
.site-nav a:hover { color: #2a5a8a; }
.site-nav a.active { color: #1a1a1a; font-weight: 600; }

@media (max-width: 600px) {
    .site-header .wrap { flex-direction: column; gap: 0.5rem; }
    .site-nav a { margin-left: 0; margin-right: 1rem; }
}

/* Page content */
.page-content {
    padding: 2.5rem 0 3rem;
}
.page-content h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.page-content .subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
}
.page-content h2 {
    font-size: 1.35rem;
    margin: 2.5rem 0 0.75rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #e5e5e5;
}
.page-content h3 {
    font-size: 1.1rem;
    margin: 1.75rem 0 0.5rem;
}
.page-content p { margin-bottom: 1.2rem; }
.page-content ul, .page-content ol {
    margin: 0 0 1.5rem 1.5rem;
}
.page-content li { margin-bottom: 0.3rem; }
.page-content img {
    max-width: 100%;
    border-radius: 3px;
    margin: 1.5rem 0;
}
.page-content blockquote {
    border-left: 3px solid #ccc;
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
    color: #555;
    background: #fafafa;
}
.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.92rem;
}
.page-content th {
    background: #f0f0f0;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.6rem 0.75rem;
    text-align: left;
    border-bottom: 2px solid #ddd;
}
.page-content td {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #eee;
}

/* Note box */
.note {
    background: #f7f7f0;
    border: 1px solid #e0dcc8;
    padding: 1rem 1.25rem;
    border-radius: 3px;
    margin: 1.5rem 0;
    font-size: 0.92rem;
}

/* Internal nav links at bottom */
.page-nav {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
}
.page-nav h4 { margin-bottom: 0.5rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: #888; }
.page-nav ul { list-style: none; padding: 0; }
.page-nav li { padding: 0.25rem 0; }

/* Footer */
.site-footer {
    border-top: 1px solid #ddd;
    padding: 1.5rem 0;
    background: #fafafa;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
}
.site-footer a { color: #888; }
