/* =============================================
   ARTICLE PAGE — articles.css
   ============================================= */

/* ── Intro Hero ── */
.article-intro {
    width: 80%;
    max-width: 860px;
    margin: 110px auto 30px;
    text-align: center;
}

.article-tag {
    color: var(--color-accent);
    letter-spacing: 4px;
    font-size: .8rem;
    text-transform: uppercase;
}

.article-intro h1 {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    line-height: 1.2;
    margin: 14px 0 16px;
    font-family: serif;
}

.article-subtitle {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1rem;
    opacity: .75;
    line-height: 1.7;
}

.article-meta {
    margin-top: 16px;
    opacity: .55;
    letter-spacing: 1px;
    font-size: .9rem;
}

/* ── Pull Quote ── */
.pull-quote {
    width: 80%;
    max-width: 860px;
    margin: 30px auto 20px;
    padding: 22px 30px;
    border-left: 3px solid var(--color-accent);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.6;
    opacity: .88;
}

.pull-quote span {
    display: block;
    margin-top: 10px;
    font-size: .9rem;
    font-style: normal;
    color: var(--color-accent);
}

/* ── Breadcrumb ── */
.breadcrumb {
    width: 80%;
    max-width: 860px;
    margin: 16px auto 20px;
    font-size: .85rem;
    opacity: .7;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--color-accent);
}

.breadcrumb span {
    margin: 0 6px;
}

/* ── Featured Image ── */
.featured-image {
    width: 80%;
    max-width: 860px;
    margin: 0 auto 50px;
}

.featured-image img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

/* ── Article Body ── */
.article-content {
    width: 80%;
    max-width: 860px;
    margin: 0 auto 50px;
    line-height: 1.9;
    font-size: 1rem;
}

.article-content p {
    margin-bottom: 18px;
}

.article-content h2 {
    margin: 38px 0 14px;
    color: var(--color-accent);
    font-size: 1.4rem;
}

/* ── CTA Block ── */
.article-cta {
    width: 100%;
    margin: 45px 0 0;
    text-align: center;
    padding: 48px 10%;
    background: linear-gradient(
        135deg,
        rgba(198, 161, 110, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
}

/* Decorative corner accent lines */
.article-cta::before,
.article-cta::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid var(--color-accent);
    opacity: .15;
    border-radius: 2px;
}

.article-cta::before {
    top: 15px;
    left: 30px;
    border-right: none;
    border-bottom: none;
}

.article-cta::after {
    bottom: 15px;
    right: 30px;
    border-left: none;
    border-top: none;
}

.article-cta h2 {
    margin-bottom: 12px;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-family: var(--font-heading);
    color: var(--color-text);
}

.article-cta p {
    opacity: .7;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: var(--color-muted);
}

.cta-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 32px;
    background: transparent;
    color: var(--color-accent);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: .85rem;
    text-transform: uppercase;
    border: 1px solid var(--color-accent);
    transition: background .25s, color .25s;
    cursor: pointer;
}

.cta-btn:hover {
    background: var(--color-accent);
    color: #111;
}

/* ── Recent Posts ── */
.recent-posts {
    width: 80%;
    max-width: 860px;
    margin: 40px auto 70px;
}

.recent-posts h2 {
    margin-bottom: 18px;
    font-size: 1.3rem;
}

.recent-posts a {
    display: block;
    margin: 10px 0;
    text-decoration: none;
    color: var(--color-accent);
    font-size: .95rem;
    transition: opacity .2s;
}

.recent-posts a:hover {
    opacity: .75;
}

/* ── Footer Social Icons fix ── */
.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    text-decoration: none;
    font-size: .9rem;
    margin-right: 8px;
    transition: background .2s, border-color .2s;
}

.footer-social-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #111;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .article-intro {
        width: 90%;
        margin-top: 90px;
    }

    .article-intro h1 {
        font-size: clamp(1.7rem, 6vw, 2.8rem);
    }

    .pull-quote,
    .breadcrumb,
    .featured-image,
    .article-content,
    .recent-posts {
        width: 90%;
    }

    .article-cta {
        padding: 50px 8%;
    }

    .article-cta::before,
    .article-cta::after {
        width: 70px;
        height: 70px;
    }

    .pull-quote {
        font-size: 1rem;
        padding: 16px 20px;
    }
}