﻿ 
:root {
    --ink: #0D1E35;
    --ink-mid: #2A3A47;
    --ink-soft: #6B7785;
    --ink-mute: #C0C7CE;
    --white: #FFFFFF;
    --bg: #F4F2EC;
    --bg-warm: #EDEAE2;
    --bg-soft: #F0F4F2;
    --rule: #DCD8CE;
    --rule-soft: #E7E4DA;
    --teal: #006B6B;
    --teal-bright: #5BBAB5;
    --teal-lt: #E8F4F2;
    --teal-pale: #F0F8F7;
    --amber: #C8923A;
    --amber-lt: #F7E6B8;
    --amber-soft: #FBF1D2;
    --sun: #F5C75A;
    --sun-soft: #FDF2D5;
    --ease-spring: cubic-bezier(.32,.72,0,1);
    --shadow-card: 0 1px 2px rgba(13,30,53,.04),0 8px 24px -8px rgba(13,30,53,.08);
    --shadow-soft: 0 2px 4px rgba(13,30,53,.04),0 20px 48px -16px rgba(13,30,53,.12);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: 'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,system-ui,sans-serif;
    background: var(--bg);
    color: var(--ink);
    font-weight: 300;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none
}

img, svg {
    max-width: 100%;
    display: block
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer
}

ul, ol {
    list-style: none
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    opacity: .016;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    mix-blend-mode: multiply
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px
}

@media (max-width:899px) {
    .container {
        padding: 0 24px
    }
}

@media (max-width:480px) {
    .container {
        padding: 0 20px
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber)
}

    .eyebrow::before {
        content: '';
        width: 32px;
        height: 1px;
        background: var(--amber);
        opacity: .6
    }

.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px
}

    .section-eyebrow::before {
        content: "";
        width: 32px;
        height: 1px;
        background: var(--teal);
        opacity: .6
    }

/* NAV (canonical) */
.std-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(244,242,236,.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rule)
}

.std-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px
}

.std-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0
}

.std-brand-mark {
    width: 240px;
    height: auto;
    display: block
}

.std-nav-links {
    display: flex;
    align-items: center;
    gap: 28px
}

.std-nav-link {
    font-size: 13px;
    font-weight: 400;
    color: var(--ink-mid);
    transition: color .2s
}

    .std-nav-link:hover, .std-nav-link.active {
        color: var(--ink)
    }

.std-nav-cta {
    padding: 10px 20px;
    background: var(--ink);
    color: var(--white) !important;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    transition: background .25s;
    white-space: nowrap
}

    .std-nav-cta:hover {
        background: var(--teal)
    }

.std-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    padding: 0
}

@media (max-width:899px) {
    .std-nav-inner {
        padding: 14px 24px
    }

    .std-nav-links {
        display: none
    }

    .std-mobile-toggle {
        display: block
    }

    .std-brand-mark {
        width: 200px
    }
}

@media (max-width:480px) {
    .std-brand-mark {
        width: 170px
    }
}

/* PROFILE HERO */
.profile-hero {
    padding: 60px 0 70px;
    border-bottom: 1px solid var(--rule);
    background: var(--bg)
}

.breadcrumb {
    font-size: 12px;
    color: var(--ink-soft);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

    .breadcrumb a {
        color: var(--ink-soft);
        transition: color .2s
    }

        .breadcrumb a:hover {
            color: var(--ink)
        }

    .breadcrumb .sep {
        color: var(--ink-mute)
    }

    .breadcrumb .current {
        color: var(--ink);
        font-weight: 500
    }

.profile-hero-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 56px;
    align-items: start;
    margin-top: 32px
}

@media (max-width:899px) {
    .profile-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

.profile-photo {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #E8E2D3 0%, #DCD8CE 50%, #D0CCBF 100%);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rule)
}

    .profile-photo::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 30%, rgba(245,199,90,.08) 0%, transparent 50%),radial-gradient(circle at 70% 70%, rgba(91,186,181,.06) 0%, transparent 50%)
    }

.profile-photo-initials {
    font-family: 'Playfair Display',serif;
    font-size: 132px;
    font-weight: 400;
    color: rgba(13,30,53,.22);
    letter-spacing: -.03em;
    line-height: 1;
    z-index: 1
}

.profile-photo-tag {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-mid);
    z-index: 2
}

.profile-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--sun-soft);
    color: var(--amber);
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 20px
}

.profile-name {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(40px,5vw,60px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.05;
    letter-spacing: -.018em;
    margin-bottom: 14px
}

    .profile-name em {
        font-style: italic;
        color: var(--amber)
    }

.profile-creds {
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-size: 14px;
    color: var(--ink-mid);
    font-weight: 500;
    letter-spacing: .02em;
    margin-bottom: 18px;
    line-height: 1.55
}

.profile-role {
    font-family: 'Cormorant Garamond',serif;
    font-style: italic;
    font-size: 22px;
    color: var(--teal);
    line-height: 1.4;
    margin-bottom: 26px
}

.profile-disambig {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--ink-mid);
    font-weight: 300;
    margin-bottom: 28px;
    max-width: 620px
}

    .profile-disambig strong {
        font-weight: 500;
        color: var(--ink)
    }

/* AT-A-GLANCE CARD */
.glance {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 24px 26px;
    margin-top: 24px;
    box-shadow: var(--shadow-card)
}

.glance-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 18px;
    padding: 11px 0;
    border-bottom: 1px dashed var(--rule-soft);
    font-size: 13.5px;
    line-height: 1.55
}

    .glance-row:last-child {
        border-bottom: 0
    }

.glance-label {
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .04em;
    font-size: 10.5px;
    text-transform: uppercase
}

.glance-value {
    color: var(--ink-mid);
    font-weight: 300
}

    .glance-value strong {
        color: var(--ink);
        font-weight: 500
    }

.glance-cta {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: #25D366;
    color: var(--white);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    transition: background .25s
}

    .btn-whatsapp:hover {
        background: #1FAA52
    }

.btn-secondary-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 18px;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--rule);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    transition: all .25s
}

    .btn-secondary-sm:hover {
        border-color: var(--ink);
        background: var(--bg)
    }

/* SECTION BASE */
.section {
    padding: 80px 0;
    border-bottom: 1px solid var(--rule)
}

.section-bg-warm {
    background: var(--bg-warm)
}

.section-bg-soft {
    background: var(--bg-soft)
}

.section-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(28px,3.4vw,40px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.18;
    letter-spacing: -.012em;
    margin-bottom: 24px;
    max-width: 780px
}

    .section-title em {
        font-style: italic;
        color: var(--amber)
    }

    .section-title.teal em {
        color: var(--teal)
    }

.section-intro {
    font-size: 16.5px;
    line-height: 1.78;
    color: var(--ink-mid);
    font-weight: 300;
    max-width: 780px;
    margin-bottom: 40px
}

    .section-intro strong {
        color: var(--ink);
        font-weight: 500
    }

/* BIO NARRATIVE */
.bio-prose {
    max-width: 820px;
    font-family: 'Cormorant Garamond',serif;
    font-size: 19.5px;
    line-height: 1.78;
    color: var(--ink-mid);
    font-weight: 400
}

    .bio-prose p {
        margin-bottom: 24px
    }

        .bio-prose p:last-child {
            margin-bottom: 0
        }

    .bio-prose strong {
        color: var(--ink);
        font-weight: 500;
        font-style: normal
    }

    .bio-prose em {
        font-style: italic;
        color: var(--ink);
        font-weight: 500
    }

    .bio-prose .lede {
        font-size: 22px;
        line-height: 1.65;
        color: var(--ink);
        font-weight: 400
    }

        .bio-prose .lede::first-letter {
            font-family: 'Playfair Display',serif;
            font-size: 54px;
            line-height: 1;
            float: left;
            padding: 6px 12px 0 0;
            color: var(--amber);
            font-weight: 500
        }

/* CAREER TIMELINE */
.timeline {
    margin-top: 8px;
    position: relative
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 80px;
        top: 8px;
        bottom: 8px;
        width: 1px;
        background: var(--rule);
        z-index: 0
    }

@media(max-width:700px) {
    .timeline::before {
        left: 0
    }
}

.tl-row {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 32px;
    padding: 18px 0;
    position: relative;
    align-items: start
}

@media(max-width:700px) {
    .tl-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-left: 20px
    }

        .tl-row::before {
            left: 0 !important
        }
}

.tl-row::before {
    content: "";
    position: absolute;
    left: 74px;
    top: 28px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--amber);
    z-index: 1
}

.tl-row.current::before {
    background: var(--amber);
    box-shadow: 0 0 0 4px rgba(200,146,58,.18)
}

@media(max-width:700px) {
    .tl-row::before {
        left: -8px;
        top: 18px
    }
}

.tl-year {
    font-family: 'Playfair Display',serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--amber);
    letter-spacing: -.01em;
    padding-top: 14px;
    line-height: 1.3
}

.tl-row.current .tl-year {
    color: var(--ink)
}

.tl-body {
    padding-left: 24px
}

@media(max-width:700px) {
    .tl-body {
        padding-left: 0
    }
}

.tl-role {
    font-family: 'Cormorant Garamond',serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 4px
}

.tl-org {
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-size: 13.5px;
    color: var(--teal);
    font-weight: 500;
    letter-spacing: .01em;
    margin-bottom: 8px
}

.tl-note {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-mid);
    font-weight: 300
}

/* EDUCATION CARDS */
.edu-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 8px
}

@media(max-width:780px) {
    .edu-grid {
        grid-template-columns: 1fr
    }
}

.edu-card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color .2s, box-shadow .2s
}

    .edu-card:hover {
        border-color: #C8C2B4;
        box-shadow: var(--shadow-card)
    }

.edu-year {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--amber)
}

.edu-degree {
    font-family: 'Cormorant Garamond',serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.25;
    letter-spacing: -.005em
}

.edu-inst {
    font-size: 13px;
    color: var(--ink-mid);
    line-height: 1.55;
    font-weight: 300
}

    .edu-inst strong {
        color: var(--ink);
        font-weight: 500
    }

.edu-note {
    margin-top: 6px;
    font-size: 12.5px;
    color: var(--ink-soft);
    font-style: italic;
    font-family: 'Cormorant Garamond',serif;
    line-height: 1.5
}
 

    .edu-card.intl .edu-year {
        color: var(--ink)
    }

/* CLINICAL INTERESTS */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px
}

@media(max-width:880px) {
    .spec-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media(max-width:580px) {
    .spec-grid {
        grid-template-columns: 1fr
    }
}

.spec-card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 22px 24px;
    text-decoration: none;
    color: inherit;
    transition: transform .25s var(--ease-spring), border-color .25s, box-shadow .25s;
    display: flex;
    flex-direction: column
}

    .spec-card:hover {
        transform: translateY(-3px);
        border-color: var(--teal);
        box-shadow: var(--shadow-card)
    }

.spec-card-name {
    font-family: 'Cormorant Garamond',serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.25;
    letter-spacing: -.005em;
    margin-bottom: 6px
}

.spec-card-desc {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--ink-mid);
    font-weight: 300;
    flex: 1;
    margin-bottom: 14px
}

.spec-card-link {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--teal)
}

    .spec-card-link::after {
        content: " →";
        transition: transform .2s;
        display: inline-block
    }

.spec-card:hover .spec-card-link::after {
    transform: translateX(3px)
}

/* PAPERS */
.papers-grid {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.paper-card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 28px 30px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    transition: border-color .2s, box-shadow .2s
}

    .paper-card:hover {
        border-color: var(--amber-lt);
        box-shadow: var(--shadow-card)
    }

@media(max-width:780px) {
    .paper-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px 24px
    }
}

.paper-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-width: 80px;
    padding: 14px 12px;
    background: var(--sun-soft);
    border: 1px solid var(--amber-lt);
    border-radius: 10px;
    text-align: center
}

.paper-badge-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 4px
}

.paper-badge-year {
    font-family: 'Playfair Display',serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1
}

.paper-body {
}

.paper-role {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    background: var(--ink);
    color: var(--sun);
    border-radius: 999px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 10px
}

    .paper-role.co {
        background: var(--bg-warm);
        color: var(--ink-mid)
    }

.paper-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.35;
    letter-spacing: -.005em;
    margin-bottom: 8px
}

.paper-meta {
    font-size: 12.5px;
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.6
}

    .paper-meta em {
        color: var(--ink-mid);
        font-style: italic;
        font-weight: 400
    }

    .paper-meta strong {
        color: var(--ink);
        font-weight: 500;
        font-style: normal
    }

.paper-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0
}

@media(max-width:780px) {
    .paper-actions {
        justify-content: flex-start
    }
}

.paper-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--ink);
    transition: all .2s
}

    .paper-action:hover {
        background: var(--ink);
        color: var(--white);
        border-color: var(--ink)
    }

/* LEADERSHIP / MEMBERSHIPS */
.membership-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px
}

@media(max-width:880px) {
    .membership-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }
}

.membership-col {
}

    .membership-col h3 {
        font-family: 'Cormorant Garamond',serif;
        font-size: 24px;
        font-weight: 500;
        color: var(--ink);
        line-height: 1.2;
        margin-bottom: 20px;
        letter-spacing: -.005em
    }

.membership-list {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.membership-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 14px;
    align-items: start;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--rule-soft)
}

    .membership-item:last-child {
        border-bottom: 0;
        padding-bottom: 0
    }

.membership-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    margin-top: 8px;
    flex-shrink: 0;
    justify-self: start
}

.membership-item.lead .membership-bullet {
    background: var(--amber);
    box-shadow: 0 0 0 4px rgba(200,146,58,.18)
}

.membership-item-body {
}

.membership-item-name {
    font-size: 14.5px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 3px
}

.membership-item-role {
    font-size: 12.5px;
    color: var(--ink-soft);
    font-weight: 300;
    font-family: 'Cormorant Garamond',serif;
    font-style: italic;
    line-height: 1.5
}

/* EXTERNAL PROFILES */
.profiles-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink);
    transition: all .25s
}

    .profile-link:hover {
        border-color: var(--ink);
        background: var(--ink);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow-card)
    }

    .profile-link svg {
        width: 16px;
        height: 16px
    }

/* CONSULT CTA */
.consult {
    padding: 84px 0;
    background: linear-gradient(135deg, var(--amber-soft) 0%, var(--sun-soft) 100%);
    border-bottom: 1px solid var(--rule)
}

.consult-inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center
}

.consult-eyebrow {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px
}

    .consult-eyebrow::before {
        content: "";
        width: 32px;
        height: 1px;
        background: var(--amber);
        opacity: .6
    }

.consult-headline {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(30px,4vw,46px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.18;
    letter-spacing: -.012em;
    margin-bottom: 18px
}

    .consult-headline em {
        font-style: italic;
        color: var(--teal)
    }

.consult-sub {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-mid);
    font-weight: 300;
    margin-bottom: 34px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto
}

.consult-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.btn-whatsapp-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    background: #25D366;
    color: var(--white);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    transition: background .25s
}

    .btn-whatsapp-lg:hover {
        background: #1FAA52
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 22px;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--rule);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .04em;
    transition: all .25s
}

    .btn-secondary:hover {
        border-color: var(--ink);
        background: var(--white)
    }
.edu-card.intl {
    background: linear-gradient(180deg, var(--sun-soft) 0%, var(--white) 80%);
    border-color: var(--amber-lt);
}