/* ============================================
   BLOG ARTICLE PAGES — SHARED STYLES
   (loaded alongside ../global.css and ../blog.css)
   ============================================ */

.art-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.art-breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 1.5rem 0 0.5rem;
}

.art-breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.art-breadcrumbs a:hover {
    color: var(--primary);
}

.art-breadcrumbs [aria-current] {
    color: var(--primary);
    font-weight: 600;
}

.art-header {
    /* Reset global.css `header` element rules (sticky nav styling) —
       the article hero must scroll away naturally with the page. */
    position: static;
    top: auto;
    z-index: auto;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    padding: 1.5rem 0 1rem;
}

.art-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    line-height: 1.2;
    color: var(--text-main);
    margin: 0.75rem 0 1rem;
}

.art-lede {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Reviewed-by box */
.art-reviewer {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(107, 16, 88, 0.12);
    background: rgba(107, 16, 88, 0.03);
    border-radius: 16px;
    margin-bottom: 1.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.art-reviewer img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.art-reviewer strong {
    display: block;
    color: var(--text-main);
    font-size: 0.95rem;
}

.art-reviewer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.art-hero-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 2rem;
    display: block;
}

/* Article body */
.art-body h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: var(--text-main);
    margin: 2.25rem 0 0.9rem;
}

.art-body p {
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.art-body ul {
    margin: 0 0 1rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.art-body a {
    color: var(--primary);
    font-weight: 600;
}

/* Inline CTA strip after sections */
.art-cta-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    background: rgba(107, 16, 88, 0.04);
    border: 1px dashed rgba(107, 16, 88, 0.25);
    border-radius: 14px;
    padding: 0.9rem 1.25rem;
    margin: 1.5rem 0 0.5rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.art-cta-inline .btn {
    padding: 0.55rem 1.3rem;
    font-size: 0.82rem;
    white-space: nowrap;
}

/* Cost table */
.art-cost-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.92rem;
}

.art-cost-table th,
.art-cost-table td {
    text-align: left;
    padding: 0.7rem 0.9rem;
    border-bottom: 1px solid var(--accent);
    color: var(--text-muted);
}

.art-cost-table th {
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.art-cost-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(107, 16, 88, 0.04);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

/* FAQ */
.art-faq details {
    border: 1px solid rgba(107, 16, 88, 0.12);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    padding: 0.9rem 1.1rem;
    background: #fff;
}

.art-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.art-faq details p {
    margin-top: 0.7rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.92rem;
}

/* Before/after link card */
.art-ba-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(107,16,88,0.07), rgba(107,16,88,0.02));
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
}

.art-ba-link p {
    margin: 0;
    color: var(--text-main);
    font-weight: 600;
}

/* Share row */
.art-share {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--accent);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.art-share a {
    display: inline-block;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    border: 1.5px solid rgba(107, 16, 88, 0.2);
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.25s ease;
}

.art-share a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Prev / next */
.art-prevnext {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.art-prevnext a {
    display: block;
    border: 1px solid rgba(107, 16, 88, 0.12);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    background: #fff;
    transition: all 0.3s ease;
}

.art-prevnext a:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 16, 88, 0.1);
}

.art-prevnext span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.art-prevnext strong {
    color: var(--text-main);
    font-size: 0.9rem;
    line-height: 1.4;
}

.art-prevnext .next {
    text-align: right;
}

/* Related treatments */
.art-related {
    margin: 2rem 0;
}

.art-related h2 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

@media (max-width: 600px) {
    .art-header h1 {
        font-size: 1.7rem;
    }

    .art-prevnext {
        grid-template-columns: 1fr;
    }

    .art-cta-inline {
        flex-direction: column;
        align-items: flex-start;
    }
}
