/* ==========================================================================
   SAVOIR+ — SPECIALTY & PROF PAGES
   ========================================================================== */

/* ============ SPECIALTY HERO ============ */
.sp-spec-hero {
    padding: 3rem 0;
    color: var(--sp-white);
}
.sp-spec-hero__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}
@media (max-width: 700px) {
    .sp-spec-hero__inner { flex-direction: column; text-align: center; }
}
.sp-spec-hero__icon {
    font-size: 5rem;
    width: 120px; height: 120px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 24px;
    flex-shrink: 0;
}
.sp-spec-hero__body { flex: 1; }
.sp-spec-hero__title {
    font-family: Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0.75rem 0;
}
.sp-spec-hero__desc {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem;
}
.sp-spec-hero__meta {
    display: flex; flex-wrap: wrap; gap: 1.5rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

/* ============ SUBSCRIBE BANNER ============ */
.sp-spec-subscribe {
    background: var(--sp-bg-blue-soft);
    padding: 1.5rem 0;
    margin-bottom: 3rem;
}
.sp-spec-subscribe__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.sp-spec-subscribe__title {
    font-family: Georgia, serif;
    font-size: 1.15rem;
    color: var(--sp-primary);
    margin: 0 0 0.35rem;
}
.sp-spec-subscribe__desc { margin: 0; color: var(--sp-gray-600); font-size: 0.9rem; }
.sp-spec-subscribe__desc strong { color: var(--sp-secondary); }
.sp-spec-subscribe__actions { display: flex; gap: 0.75rem; }

/* ============ PROF HERO ============ */
.sp-prof-hero {
    background: linear-gradient(135deg, var(--sp-primary), var(--sp-primary-dark));
    color: var(--sp-white);
    padding: 3rem 0;
    margin-bottom: 3rem;
}
.sp-prof-hero__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.sp-prof-hero__body { flex: 1; }
.sp-prof-hero__name {
    font-family: Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0.5rem 0;
}
.sp-prof-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}
