/* Why On The Map Pro — Article Page */

/* Hero */
.article-hero {
    background: var(--navy);
    padding: 160px 0 80px;
    text-align: center;
}
.article-tag {
    display: inline-block;
    background: rgba(255,107,53,.15);
    color: var(--orange);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.article-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 24px;
}
.article-intro {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,.65);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Article Body */
.article-body {
    background: var(--white);
    padding: 80px 0 96px;
}
.article-container {
    max-width: 860px;
}

/* Sections */
.article-section {
    padding: 64px 0;
    border-bottom: 1px solid var(--border);
}
.article-section:last-child { border-bottom: none; }

.article-section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: rgba(255,107,53,.1);
    color: var(--orange);
    font-size: .85rem;
    font-weight: 900;
    border-radius: 10px;
    margin-bottom: 20px;
}

.article-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.2;
}
.article-section p {
    font-size: 1.02rem;
    color: #3d5166;
    line-height: 1.8;
    margin-bottom: 18px;
}
.article-section p:last-child { margin-bottom: 0; }
.article-section p strong { color: var(--text); font-weight: 700; }

/* Reasons list */
.reasons-intro {
    font-size: 1.02rem;
    color: #3d5166;
    line-height: 1.8;
    margin-bottom: 40px;
}
.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.reason-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 28px 28px;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: box-shadow .2s, border-color .2s;
}
.reason-item:hover {
    box-shadow: var(--shadow);
    border-color: rgba(255,107,53,.2);
}
.reason-num {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255,107,53,.2);
    line-height: 1;
    flex-shrink: 0;
    width: 44px;
    padding-top: 2px;
}
.reason-body h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}
.reason-body p {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Closing */
.article-close {
    padding-top: 64px;
    text-align: center;
}
.article-close h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 24px;
}
.article-close p {
    font-size: 1.02rem;
    color: #3d5166;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto 18px;
}
.article-close .btn-primary {
    margin-top: 32px;
    display: inline-flex;
}

/* Responsive */
@media (max-width: 640px) {
    .reason-item { flex-direction: column; gap: 12px; padding: 20px; }
    .reason-num { font-size: 1.4rem; width: auto; }
    .article-hero { padding: 130px 0 60px; }
}
