/**
 * أ. مصطفى رمضان — Luxury Editorial Profile
 * Aesthetic: Deep navy canvas · Warm gold accents · Architectural precision
 * BEM-namespaced under .mf- (mostafa-ramadan)
 * ─────────────────────────────────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════════════════
   1. DESIGN TOKENS
═══════════════════════════════════════════════════════ */
.mf-section,
.mf-hero__bg,
.mf-divider,
.mf-social {
    --mf-gold: #c9a84c;
    --mf-gold-light: #e8c97a;
    --mf-gold-dim: color-mix(in srgb, #c9a84c, transparent 78%);
    --mf-navy: #0d1624;
    --mf-navy-2: #111e30;
    --mf-navy-3: #162035;
    --mf-surface: var(--surface-color, #ffffff);
    --mf-text: var(--default-color, #333);
    --mf-text-muted: color-mix(in srgb, var(--default-color, #555), transparent 35%);
    --mf-primary: var(--primary-color, #1a4a8a);
    --mf-radius-sm: 8px;
    --mf-radius: 16px;
    --mf-radius-lg: 24px;
    --mf-radius-xl: 32px;
    --mf-shadow-sm: 0 2px 12px rgba(0 0 0 / 0.08);
    --mf-shadow: 0 8px 40px rgba(0 0 0 / 0.12);
    --mf-shadow-lg: 0 20px 60px rgba(0 0 0 / 0.18);
    --mf-t-fast: 0.2s ease;
    --mf-t-mid: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════════════════════════════════════════════════════
   2. PAGE CHROME
═══════════════════════════════════════════════════════ */
.mf-page-title {
    background: transparent;
}

/* ═══════════════════════════════════════════════════════
   3. HERO SECTION
═══════════════════════════════════════════════════════ */
.mf-hero {
    position: relative;
    padding: 5rem 0 6rem;
    overflow: hidden;
}

.mf-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 240px;
    background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
    pointer-events: none;
    /* z-index: 2; */
}

/* ── Decorative background ── */
.mf-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(160deg, var(--mf-navy) 0%, var(--mf-navy-2) 55%, #1a2d4a 100%);
}

.mf-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
}

.mf-hero__orb--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
    background: radial-gradient(circle, var(--mf-gold) 0%, transparent 70%);
    animation: mf-orb-drift 18s ease-in-out infinite alternate;
}

.mf-hero__orb--2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -80px;
    background: radial-gradient(circle, #2a6dd9 0%, transparent 70%);
    opacity: 0.12;
    animation: mf-orb-drift 22s ease-in-out infinite alternate-reverse;
}

@keyframes mf-orb-drift {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(40px, 30px) scale(1.08);
    }
}

.mf-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ── Layout ── */
.mf-hero__container {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   4. INTRO ROW — Photo + Identity side-by-side
═══════════════════════════════════════════════════════ */
.mf-intro-row {
    margin-bottom: 2.5rem;
    align-items: center !important;
}

/* Photo column: auto-sized to avatar */
.mf-photo-col {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Identity column: fills remaining space */
.mf-identity-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: right;
}

/* Full-width content area below intro row */
.mf-full-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.mf-avatar-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0;
}

.mf-avatar-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            var(--mf-gold),
            var(--mf-gold-light),
            transparent 40%,
            transparent 60%,
            var(--mf-gold-light),
            var(--mf-gold));
    opacity: 0.7;
    animation: mf-spin 10s linear infinite;
    z-index: 0;
}

.mf-avatar-ring--outer {
    inset: -18px;
    background: conic-gradient(from 180deg,
            transparent 40%,
            rgba(201, 168, 76, 0.3) 50%,
            transparent 60%);
    animation-duration: 16s;
    animation-direction: reverse;
    opacity: 0.5;
}

@keyframes mf-spin {
    to {
        transform: rotate(360deg);
    }
}

.mf-avatar {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--mf-navy-2);
    outline: 2px solid var(--mf-gold-dim);
    box-shadow:
        0 0 0 8px rgba(201, 168, 76, 0.08),
        var(--mf-shadow-lg);
    background: var(--mf-navy-3);
}

.mf-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.mf-avatar-wrap:hover .mf-avatar img {
    transform: scale(1.05);
}

.mf-avatar-badge {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--mf-gold), #a8762a);
    color: #0d1624;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.45);
    white-space: nowrap;
    font-family: 'Cairo', sans-serif;
}

/* ─── prefers-reduced-motion ─── */
@media (prefers-reduced-motion: reduce) {

    .mf-avatar-ring,
    .mf-avatar-ring--outer,
    .mf-hero__orb--1,
    .mf-hero__orb--2 {
        animation: none;
    }

    .mf-card,
    .mf-social__link {
        transition: none;
    }
}

/* ═══════════════════════════════════════════════════════
   5. STATS STRIP
═══════════════════════════════════════════════════════ */
.mf-stats {
    display: flex;
    gap: 0;
    border-radius: var(--mf-radius);
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.22);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0 0 0 / 0.25);
    width: 100%;
    max-width: 380px;
    margin-inline-start: auto;
    /* right-align inside RTL identity column */
}

.mf-stats__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    text-align: center;
    border-left: 1px solid rgba(201, 168, 76, 0.12);
    gap: 0.15rem;
}

.mf-stats__item:last-child {
    border-left: none;
}

.mf-stats__value {
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
    color: var(--mf-gold);
    font-family: 'Cairo', sans-serif;
    letter-spacing: -0.02em;
}

.mf-stats__label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Tajawal', sans-serif;
    font-weight: 500;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════
   6. IDENTITY
═══════════════════════════════════════════════════════ */
.mf-identity {
    margin-bottom: 1.75rem;
}

.mf-identity__eyebrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mf-gold);
    font-family: 'Tajawal', sans-serif;
    margin-bottom: 0.65rem;
}

.mf-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--mf-gold);
    flex-shrink: 0;
}

.mf-identity__name {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 0.5rem;
    font-family: 'Cairo', sans-serif;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #ffffff 0%, var(--mf-gold-light) 60%, var(--mf-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@supports not (background-clip: text) {
    .mf-identity__name {
        background: none;
        -webkit-text-fill-color: unset;
        color: #fff;
    }
}

.mf-identity__role {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════════════
   7. BIO CARD
═══════════════════════════════════════════════════════ */
.mf-bio-card {
    position: relative;
    padding: 1.4rem 1.6rem 1.4rem 1.6rem;
    margin-bottom: 2rem;
    border-radius: var(--mf-radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

.mf-bio-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--mf-gold), transparent);
    border-radius: 0 var(--mf-radius-sm) var(--mf-radius-sm) 0;
}

.mf-bio-card::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    left: 10px;
    font-size: 8rem;
    line-height: 1;
    color: rgba(201, 168, 76, 0.08);
    font-family: Georgia, serif;
    pointer-events: none;
}

.mf-bio-card__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mf-gold);
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    margin-bottom: 0.75rem;
    font-family: 'Tajawal', sans-serif;
}

.mf-bio-card__text {
    font-size: 0.97rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    font-family: 'Tajawal', sans-serif;
    font-weight: 400;
}

/* ═══════════════════════════════════════════════════════
   8. INFO CARDS GRID
═══════════════════════════════════════════════════════ */
.mf-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 580px) {
    .mf-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 1.2rem;
    }
}

.mf-card {
    position: relative;
    padding: 1.2rem 1.15rem 1.3rem;
    border-radius: var(--mf-radius);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform var(--mf-t-mid), box-shadow var(--mf-t-fast), border-color var(--mf-t-fast);
    overflow: hidden;
    text-align: right;
}

.mf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mf-gold-dim), transparent);
    opacity: 0;
    transition: opacity var(--mf-t-fast);
}

.mf-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 76, 0.35);
    box-shadow: 0 16px 48px rgba(0 0 0 / 0.35), 0 0 0 1px rgba(201, 168, 76, 0.12);
}

.mf-card:hover::before {
    opacity: 1;
}

.mf-card__header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.9rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mf-card__icon-wrap {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(201, 168, 76, 0.18), rgba(201, 168, 76, 0.06));
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--mf-gold);
    font-size: 1rem;
}

.mf-card__title {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Cairo', sans-serif;
    line-height: 1.3;
}

.mf-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mf-card__item {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.84rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    font-family: 'Tajawal', sans-serif;
    padding: 0.55rem 0.65rem;
    border-radius: var(--mf-radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    transition: background var(--mf-t-fast), border-color var(--mf-t-fast);
}

.mf-card__item:hover {
    background: rgba(201, 168, 76, 0.07);
    border-color: rgba(201, 168, 76, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.mf-card__bullet {
    flex-shrink: 0;
    margin-top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--mf-gold);
    opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════
   9. VIDEO BLOCK
═══════════════════════════════════════════════════════ */
.mf-video-block {
    margin-top: 0.5rem;
}

.mf-video-block__label {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.9rem;
    font-family: 'Cairo', sans-serif;
}

.mf-video-block__label-icon {
    color: var(--mf-gold);
    font-size: 1.1rem;
}

.mf-video-frame {
    border-radius: var(--mf-radius);
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.18);
    box-shadow:
        0 12px 48px rgba(0 0 0 / 0.45),
        0 0 0 1px rgba(255 255 255 / 0.04);
    background: #000;
    position: relative;
}

.mf-video-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--mf-radius);
    border: 1px solid rgba(201, 168, 76, 0.08);
    pointer-events: none;
    z-index: 1;
}

.mf-video-frame iframe {
    display: block;
}

/* ═══════════════════════════════════════════════════════
   10. DIVIDER
═══════════════════════════════════════════════════════ */
.mf-divider {
    padding: 0.5rem 0;
}

.mf-divider__inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.mf-divider__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(201, 168, 76, 0.35),
            transparent);
}

.mf-divider__gem {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mf-gold), #8a5e1a);
    color: #0d1624;
    font-size: 0.7rem;
    box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.1), var(--mf-shadow-sm);
}

/* ═══════════════════════════════════════════════════════
   11. SERIES SECTION
═══════════════════════════════════════════════════════ */
.mf-series {
    padding: 4rem 0 6rem;
}

.mf-series__inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: right;
}

.mf-series__header {
    margin-bottom: 2rem;
}

.mf-series__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mf-gold);
    font-family: 'Tajawal', sans-serif;
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.22);
}

.mf-series__title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    line-height: 1.25;
    margin: 0 0 0.9rem;
    font-family: 'Cairo', sans-serif;
    color: #fff;
}

.mf-series__title em {
    font-style: normal;
    background: linear-gradient(120deg, var(--mf-gold-light), var(--mf-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@supports not (background-clip: text) {
    .mf-series__title em {
        background: none;
        -webkit-text-fill-color: unset;
        color: var(--mf-gold);
    }
}

.mf-series__lead {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    font-family: 'Tajawal', sans-serif;
}

.mf-series__lead strong {
    color: var(--mf-gold-light);
    font-weight: 700;
}

.mf-series__video {
    margin-bottom: 2.5rem;
}

/* ═══════════════════════════════════════════════════════
   12. SOCIAL LINKS
═══════════════════════════════════════════════════════ */
.mf-series__footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    text-align: center;
}

.mf-series__follow-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Tajawal', sans-serif;
    margin-bottom: 1.1rem;
}

.mf-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
}

a.mf-social__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    color: #fff !important;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform var(--mf-t-mid), box-shadow var(--mf-t-fast), filter var(--mf-t-fast);
    box-shadow: 0 4px 20px rgba(0 0 0 / 0.3);
    font-family: 'Tajawal', sans-serif;
    position: relative;
    overflow: hidden;
}

a.mf-social__link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background var(--mf-t-fast);
}

a.mf-social__link:hover {
    transform: translateY(-4px) scale(1.03);
    filter: brightness(1.12) saturate(1.1);
    box-shadow: 0 12px 32px rgba(0 0 0 / 0.5);
    color: #fff !important;
}

a.mf-social__link:hover::before {
    background: rgba(255, 255, 255, 0.08);
}

.mf-social__icon {
    width: 1.1rem;
    text-align: center;
    flex-shrink: 0;
}

/* Platform colors */
.mf-social__link--facebook {
    background: linear-gradient(135deg, #1877f2, #0a50b5);
}

.mf-social__link--instagram {
    background: linear-gradient(135deg, #e1306c, #b52b7e, #7a35b4);
}

.mf-social__link--linkedin {
    background: linear-gradient(135deg, #0a66c2, #084b8f);
}

.mf-social__link--tiktok {
    background: linear-gradient(135deg, #111, #2d2d2d);
}

.mf-social__link--youtube {
    background: linear-gradient(135deg, #ff0000, #b80000);
}

/* ═══════════════════════════════════════════════════════
   13. WHATSAPP CONTACT STRIP
═══════════════════════════════════════════════════════ */
.mf-contact-strip {
    padding: 0 0 5rem;
}

.mf-contact-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
    border-radius: calc(var(--mf-radius) + 4px);
    background:
        linear-gradient(135deg, rgba(201, 168, 76, 0.18), rgba(201, 168, 76, 0.06)),
        linear-gradient(160deg, #0c121b 0%, #101927 100%);
    border: 1px solid rgba(201, 168, 76, 0.18);
    box-shadow: 0 18px 48px rgba(0 0 0 / 0.28);
}

.mf-contact-strip__content {
    text-align: right;
}

.mf-contact-strip__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.22);
    color: var(--mf-gold-light);
    font: 700 0.74rem 'Tajawal', sans-serif;
    letter-spacing: 0.08em;
}

.mf-contact-strip__title {
    margin: 0 0 0.45rem;
    color: #fff;
    font: 900 clamp(1.2rem, 3vw, 1.9rem) 'Cairo', sans-serif;
    line-height: 1.4;
}

.mf-contact-strip__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font: 500 0.95rem/1.9 'Tajawal', sans-serif;
}

a.mf-contact-strip__button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-width: 220px;
    padding: 0.95rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #8d6125, #c99b46);
    color: #fff !important;
    text-decoration: none !important;
    font: 800 1rem 'Cairo', sans-serif;
    box-shadow: 0 12px 24px rgba(141 97 37 / 0.35);
    transition: transform var(--mf-t-mid), box-shadow var(--mf-t-fast), filter var(--mf-t-fast);
}

a.mf-contact-strip__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(141 97 37 / 0.42);
    filter: brightness(1.06);
}

a.mf-contact-strip__button i {
    font-size: 1.15rem;
}

/* ═══════════════════════════════════════════════════════
   14. RESPONSIVE OVERRIDES
═══════════════════════════════════════════════════════ */
@media (max-width: 767.98px) {
    .mf-hero {
        padding: 3rem 0 4rem;
    }

    /* Stack photo above identity on small screens */
    .mf-intro-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem;
        margin-bottom: 1.75rem;
    }

    .mf-photo-col,
    .mf-identity-col {
        width: 100%;
        flex: 0 0 100%;
    }

    .mf-identity-col {
        align-items: center;
        text-align: center;
    }

    .mf-identity__eyebrow,
    .mf-identity__name,
    .mf-identity__role {
        text-align: center;
        justify-content: center;
    }

    .mf-stats {
        margin-inline-start: auto;
        margin-inline-end: auto;
        max-width: 100%;
    }

    .mf-avatar-wrap {
        width: 170px;
        height: 170px;
    }

    .mf-avatar-ring,
    .mf-avatar-ring--outer {
        animation: none;
        opacity: 0.4;
    }

    .mf-cards-grid {
        grid-template-columns: 1fr;
    }

    .mf-video-block__label {
        justify-content: flex-start;
    }

    .mf-bio-card {
        padding: 1.1rem 1.15rem;
    }

    .mf-contact-strip {
        padding-bottom: 3.5rem;
    }

    .mf-contact-strip__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem;
    }

    .mf-contact-strip__content {
        text-align: center;
    }

    a.mf-contact-strip__button {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 991.98px) {
    .mf-series__inner {
        text-align: center;
    }

    .mf-series__header,
    .mf-series__lead {
        text-align: right;
    }

    .mf-series__title em {
        display: inline;
    }
}

@media (max-width: 575.98px) {
    .mf-series {
        padding: 2.5rem 0 4rem;
    }
}
