/* ── Blog Listing ── */
.blog-hero {
    padding: 3rem 1rem 2rem;
    text-align: center;
}

.blog-hero-inner {
    max-width: 640px;
    margin: 0 auto;
}

.blog-hero h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.blog-hero p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.blog-grid {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-card {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, transform 0.2s;
}

.blog-card:hover {
    border-color: var(--amber-dim);
    transform: translateY(-2px);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
}

.blog-card-tag {
    background: var(--amber-glow);
    color: var(--amber);
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
}

.blog-card h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.blog-card-read {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--amber);
}

/* ── Article Page ── */
.article {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dim);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.article-back:hover {
    color: var(--amber);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
}

.article-tag {
    background: var(--amber-glow);
    color: var(--amber);
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
}

.article h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.article-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.article h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin: 2.5rem 0 0.75rem;
    line-height: 1.25;
}

.article h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 1.75rem 0 0.5rem;
}

.article p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.article strong {
    color: var(--text);
    font-weight: 600;
}

.article ul, .article ol {
    margin: 0 0 1rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
}

.article li {
    margin-bottom: 0.35rem;
}

.article a:not(.lp-btn-primary) {
    color: var(--amber);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.article a:not(.lp-btn-primary):hover {
    border-bottom-color: var(--amber);
}

/* City table */
.city-table-wrap {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--surface);
}

.city-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.city-table th {
    background: var(--surface-raised);
    text-align: left;
    padding: 0.7rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
}

.city-table td {
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

.city-table tr:last-child td {
    border-bottom: none;
}

.city-table tr:hover td {
    background: var(--surface-hover);
}

.city-table .city-name {
    font-weight: 600;
    color: var(--text);
}

.city-table .city-value {
    color: var(--amber);
    font-weight: 600;
}

/* Article CTA */
.article-cta {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    margin: 2.5rem 0;
}

.article-cta h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0 0 0.5rem;
}

.article-cta p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.article .article-cta .lp-btn-primary,
.article .article-cta .lp-btn-primary:hover,
.article .article-cta .lp-btn-primary:visited {
    color: #000000;
    border-bottom: none;
    text-decoration: none;
}

/* Tip/callout box */
.article-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    background: var(--amber-glow);
    border-radius: var(--radius);
    margin: 1.5rem 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.article-tip svg {
    color: var(--amber);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Desktop ── */
@media (min-width: 700px) {
    .blog-hero { padding: 4rem 1rem 2.5rem; }
    .blog-hero h1 { font-size: 2.6rem; }
    .article h1 { font-size: 2.6rem; }
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .blog-hero h1 { font-size: 1.75rem; }
    .article h1 { font-size: 1.75rem; }
    .article h2 { font-size: 1.25rem; }
    .city-table { font-size: 0.78rem; }
    .city-table th, .city-table td { padding: 0.5rem 0.6rem; }
}
