/* ============================================================
   SOUTHDAKOTASTRATEGIES.COM
   Clean, Professional, Local
   ============================================================ */

:root {
    --bg-main: #f8fafc;
    --bg-white: #ffffff;
    --bg-accent: #eff6ff;

    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;

    --accent-blue: #2563eb;
    --accent-slate: #334155;

    --border: #e2e8f0;

    --font-main: 'Inter', -apple-system, sans-serif;

    --radius: 8px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
}

.strategy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-slate);
}

.tagline {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Content */
.content section {
    margin-bottom: 2.5rem;
}

.lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.2rem;
    color: var(--accent-slate);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-blue);
}

/* Regions */
.region-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.region-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.region-card h3 {
    font-size: 1rem;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.region-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Advantages */
.advantage-list {
    list-style: none;
}

.advantage-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.advantage-list li:last-child {
    border-bottom: none;
}

/* Resources */
.link-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.resource-link {
    display: block;
    padding: 0.75rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--accent-blue);
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.2s;
}

.resource-link:hover {
    background: var(--bg-accent);
    border-color: var(--accent-blue);
}

/* Coming */
.muted {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer a {
    color: var(--accent-blue);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {

    .region-grid,
    .link-grid {
        grid-template-columns: 1fr;
    }
}