:root {
    --primary: #d97706;
    --primary-hover: #b45309;
    --bg: #f3f4f6;
    --card: #ffffff;
    --text: #1f2937;
    --border: #e5e7eb;
}

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

.offgrid-article-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
}

/* Scope this tightly to ONLY the title text inside the article container */
.offgrid-article-container .article-header h1 {
    font-size: 32px;
    line-height: 1.2;
    color: #111827; /* Dark near-black text color */
    margin-bottom: 8px;
}

.article-meta {
    color: #6b7280;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 30px;
}

.article-section h2 {
    font-size: 22px;
    color: #111827;
    margin-top: 35px;
    margin-bottom: 15px;
}

.article-section h3 {
    font-size: 18px;
    color: #374151;
    margin-top: 25px;
}

.section-divider {
    border: 0;
    height: 1px;
    background: #e5e7eb;
    margin: 40px 0;
}

.product-promo-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #d97706;
    border-radius: 8px;
    padding: 24px;
    margin: 25px 0;
}

.promo-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-promo-card h3 {
    margin-top: 0;
    font-size: 20px;
    color: #111827;
}

.promo-button {
    display: block;
    text-align: center;
    background: #d97706;
    color: #ffffff 
    text-decoration: none;
    font-weight: bold;
    padding: 12px;
    border-radius: 6px;
    margin-top: 20px;
    transition: background 0.2s;
}

.promo-button:hover {
    background: #b45309;
}

.text-link-button {
    display: inline-block;
    color: #b45309;
    font-weight: bold;
    text-decoration: underline;
    margin: 15px 0;
}

.text-tips ol li {
    margin-bottom: 12px;
}

.article-footer {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 20px;
    margin-top: 40px;
}

.article-footer h3 {
    margin-top: 0;
    color: #166534;
}