/* ─────────────────────────────────────────────────────────────
   Adult English Course template — Standard Language Centre
   Self-contained styles for page-adult-english-course.php
   ───────────────────────────────────────────────────────────── */

.ae-course {
    --ae-ink: #0F3D44;
    --ae-ink-soft: #4C6B70;
    --ae-teal: #008080;
    --ae-teal-deep: #006666;
    --ae-teal-tint: #EAF6F6;
    --ae-accent: #ff6b35;
    --ae-white: #ffffff;
    --ae-border: rgba(15, 61, 68, .12);
    --ae-shadow: 0 24px 50px -28px rgba(15, 61, 68, .28);
    font-family: 'Inter', sans-serif;
    color: var(--ae-ink);
    background: var(--ae-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.ae-course .ae-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
}

.ae-course a { text-decoration: none; }

/* ---------- reveal on scroll ---------- */
.ae-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s ease, transform .8s ease;
}
.ae-reveal.ae-in { opacity: 1; transform: none; }
.ae-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.ae-stagger.ae-in > * { opacity: 1; transform: none; }
.ae-stagger.ae-in > *:nth-child(1) { transition-delay: .05s; }
.ae-stagger.ae-in > *:nth-child(2) { transition-delay: .15s; }
.ae-stagger.ae-in > *:nth-child(3) { transition-delay: .25s; }
.ae-stagger.ae-in > *:nth-child(4) { transition-delay: .35s; }
.ae-stagger.ae-in > *:nth-child(5) { transition-delay: .45s; }
.ae-stagger.ae-in > *:nth-child(6) { transition-delay: .55s; }

/* ---------- hero ---------- */
.ae-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(70px + 4rem) 32px 4.5rem;
    background:
        radial-gradient(1000px 620px at 50% -12%, rgba(0, 128, 128, .14), transparent 62%),
        linear-gradient(180deg, #ffffff 0%, #F2FAF9 100%);
    overflow: hidden;
}

.ae-ghost {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    font-size: min(52vw, 340px);
    font-weight: 900;
    line-height: 1;
    color: var(--ae-teal);
    opacity: .1;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    letter-spacing: -.04em;
}

.ae-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.ae-eyebrow {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ae-teal-deep);
    margin-bottom: 20px;
}
.ae-eyebrow span { color: var(--ae-accent); }

.ae-title {
    font-size: clamp(2.5rem, 6.4vw, 5.2rem);
    line-height: 1.04;
    letter-spacing: -.025em;
    font-weight: 900;
    color: var(--ae-ink);
    margin: 0 0 28px;
}
.ae-title em {
    font-style: normal;
    color: var(--ae-teal);
    position: relative;
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
    .ae-title em {
        background: linear-gradient(120deg, var(--ae-teal), #3F8F94);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}
.ae-title em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: .02em;
    height: .14em;
    background: var(--ae-accent);
    opacity: .85;
    transform: scaleX(1);
    transform-origin: left;
}

.ae-lead {
    font-size: clamp(1.15rem, 2.4vw, 1.55rem);
    font-weight: 700;
    color: var(--ae-ink);
    margin: 0 auto 16px;
    max-width: 720px;
}

.ae-sub {
    font-size: clamp(.98rem, 1.6vw, 1.12rem);
    color: var(--ae-ink-soft);
    max-width: 660px;
    margin: 0 auto 36px;
    font-weight: 500;
}

.ae-cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.ae-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .02em;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    text-align: center;
}
.ae-btn:hover { transform: translateY(-3px); }

.ae-btn-solid {
    background: var(--ae-teal);
    color: var(--ae-white);
    box-shadow: 0 14px 28px -14px rgba(0, 128, 128, .55);
}
.ae-btn-solid:hover { background: var(--ae-teal-deep); }

.ae-btn-ghost {
    background: var(--ae-white);
    color: var(--ae-teal-deep);
    border: 2px solid var(--ae-border);
}
.ae-btn-ghost:hover { border-color: var(--ae-teal); }

.ae-btn-light {
    background: var(--ae-white);
    color: var(--ae-teal-deep);
    box-shadow: 0 14px 28px -14px rgba(0, 0, 0, .35);
}
.ae-btn-light:hover { background: #eefafa; }

.ae-btn-outline-light {
    background: transparent;
    color: var(--ae-white);
    border: 2px solid rgba(255, 255, 255, .55);
}
.ae-btn-outline-light:hover { border-color: var(--ae-white); background: rgba(255, 255, 255, .08); }

.ae-hero-kicker {
    margin-top: 44px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    font-style: italic;
    color: var(--ae-ink-soft);
}

.ae-scroll-cue {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 42px;
    color: var(--ae-teal-deep);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.ae-cue-stem {
    width: 1px;
    height: 34px;
    background: var(--ae-teal);
    position: relative;
    overflow: hidden;
}
.ae-cue-stem::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ae-accent);
    animation: ae-drip 1.8s ease-in-out infinite;
}
@keyframes ae-drip {
    0% { top: -100%; }
    60% { top: 100%; }
    100% { top: 100%; }
}

/* ---------- in-page anchor nav ---------- */
.ae-inpage {
    position: sticky;
    top: 70px;
    z-index: 40;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ae-border);
}
.ae-inpage-inner {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 32px;
    scrollbar-width: none;
}
.ae-inpage-inner::-webkit-scrollbar { display: none; }
.ae-inpage-inner a {
    flex-shrink: 0;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 600;
    color: var(--ae-ink-soft);
    border: 1px solid transparent;
    transition: color .25s ease, background .25s ease, border-color .25s ease;
}
.ae-inpage-inner a:hover {
    color: var(--ae-teal-deep);
    background: var(--ae-teal-tint);
    border-color: rgba(0, 128, 128, .25);
}
.ae-inpage-inner a.ae-active {
    color: var(--ae-white);
    background: var(--ae-teal);
    border-color: var(--ae-teal);
}

/* ---------- shared sections ---------- */
.ae-section { padding: 110px 0; }

.ae-sec-head {
    max-width: 660px;
    margin-bottom: 52px;
}
.ae-sec-head .ae-eyebrow { margin-bottom: 12px; }
.ae-sec-head h2 {
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    line-height: 1.12;
    letter-spacing: -.015em;
    font-weight: 900;
    color: var(--ae-ink);
    margin: 0 0 14px;
}
.ae-sec-head p {
    color: var(--ae-ink-soft);
    font-size: 1.05rem;
    font-weight: 500;
}

.ae-section-closer {
    margin-top: 56px;
    max-width: 720px;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 600;
    color: var(--ae-ink);
    border-left: 4px solid var(--ae-accent);
    padding-left: 22px;
}

/* ---------- why cards ---------- */
.ae-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 940px) { .ae-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ae-why-grid { grid-template-columns: 1fr; } }

.ae-why-card {
    position: relative;
    background: linear-gradient(165deg, #ffffff 0%, #F4FAF9 100%);
    border: 1px solid var(--ae-border);
    border-radius: 20px;
    padding: 30px 24px;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.ae-why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ae-shadow);
    border-color: rgba(0, 128, 128, .4);
}
.ae-why-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--ae-teal);
    opacity: 0;
    transition: opacity .35s ease;
}
.ae-why-card:hover::after { opacity: 1; }

.ae-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--ae-teal-tint);
    color: var(--ae-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.ae-why-num {
    position: absolute;
    top: 26px;
    right: 24px;
    font-weight: 900;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--ae-teal);
    opacity: .14;
    letter-spacing: -.02em;
}
.ae-why-card h3 {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--ae-ink);
    margin: 0 0 8px;
}
.ae-why-card p {
    color: var(--ae-ink-soft);
    font-size: .92rem;
    margin: 0;
}

/* ---------- level journey (interactive) ---------- */
.ae-tint { background: var(--ae-teal-tint); }

.ae-journey {
    margin-top: 24px;
    background: var(--ae-white);
    border: 1px solid var(--ae-border);
    border-radius: 24px;
    padding: 46px 38px 38px;
    box-shadow: var(--ae-shadow);
}
.ae-journey-track {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
}
.ae-journey-rail {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 50%;
    height: 4px;
    background: rgba(15, 61, 68, .12);
    border-radius: 99px;
    transform: translateY(-50%);
}
.ae-journey-fill {
    position: absolute;
    left: 4%;
    top: 50%;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, var(--ae-teal), var(--ae-teal-deep));
    border-radius: 99px;
    transform: translateY(-50%);
    transition: width .5s cubic-bezier(.25, .46, .45, .94);
}
.ae-journey-dot {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--ae-white);
    border: 3px solid rgba(15, 61, 68, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ae-ink-soft);
    cursor: pointer;
    flex-shrink: 0;
    font-family: inherit;
    outline: none;
    transition: all .35s cubic-bezier(.25, .46, .45, .94);
}
.ae-journey-dot:hover {
    border-color: var(--ae-teal);
    transform: translateY(-4px);
    box-shadow: 0 10px 24px -14px rgba(0, 128, 128, .5);
}
.ae-journey-dot:focus-visible {
    outline: 3px solid var(--ae-accent);
    outline-offset: 3px;
}
.ae-journey-dot.active {
    width: 84px;
    height: 84px;
    background: var(--ae-teal);
    border-color: var(--ae-teal);
    color: var(--ae-white);
    box-shadow: 0 16px 40px -16px rgba(0, 128, 128, .6);
}
.ae-journey-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    margin: 28px 0 0;
    color: #8DA3A5;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.ae-journey-detail {
    margin-top: 32px;
    position: relative;
    background: var(--ae-teal-tint);
    border: 1px solid rgba(0, 128, 128, .16);
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .4s ease, transform .4s ease;
}
.ae-journey-detail.visible {
    opacity: 1;
    transform: none;
}
.ae-journey-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--ae-accent);
}
.ae-journey-detail-inner {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 26px 30px 26px 34px;
}
.ae-journey-badge {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--ae-teal);
    color: var(--ae-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    box-shadow: 0 10px 22px -14px rgba(0, 128, 128, .6);
}
.ae-journey-body h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ae-ink);
    margin: 0 0 8px;
}
.ae-journey-body p {
    font-size: .95rem;
    line-height: 1.65;
    color: var(--ae-ink-soft);
    margin: 0 0 14px;
}
.ae-journey-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ae-journey-tags span {
    background: rgba(0, 128, 128, .1);
    color: var(--ae-teal-deep);
    font-size: .76rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
}

/* ---------- real-life (dark) ---------- */
.ae-real {
    background:
        radial-gradient(1100px 640px at 88% 0%, #0e6a74, #0F3D44 70%);
    color: var(--ae-white);
    padding: 120px 0 116px;
}
.ae-real .ae-eyebrow { color: #BFE9EC; }
.ae-real .ae-sec-head h2 { color: var(--ae-white); }
.ae-real .ae-sec-head p { color: #CFEAEC; }

.ae-real-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}
@media (max-width: 860px) { .ae-real-grid { grid-template-columns: 1fr; gap: 40px; } }

.ae-real-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ae-real-line {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    font-size: clamp(1.15rem, 2.4vw, 1.7rem);
    font-weight: 700;
    line-height: 1.3;
}
.ae-real-line i {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #BFE9EC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.ae-closer-light {
    color: #CFEAEC;
    border-left-color: var(--ae-accent);
    margin-top: 72px;
}

/* ---------- learning experience ---------- */
.ae-experience { background: var(--ae-teal-tint); }

.ae-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
}
@media (max-width: 940px) { .ae-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ae-steps { grid-template-columns: 1fr; } }

.ae-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: rgba(0, 128, 128, .18);
    z-index: 0;
}
@media (max-width: 940px) { .ae-steps::before { display: none; } }

.ae-step {
    position: relative;
    z-index: 1;
    background: var(--ae-white);
    border: 1px solid var(--ae-border);
    border-radius: 18px;
    padding: 28px 22px;
    box-shadow: 0 14px 30px -24px rgba(15, 61, 68, .3);
    transition: transform .35s ease, box-shadow .35s ease;
}
.ae-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--ae-shadow);
}
.ae-step-num {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--ae-teal);
    color: var(--ae-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 18px;
    box-shadow: 0 10px 22px -12px rgba(0, 128, 128, .55);
}
.ae-step h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ae-ink);
    margin: 0 0 6px;
}
.ae-step p {
    color: var(--ae-ink-soft);
    font-size: .9rem;
    margin: 0;
}

/* ---- the flip: stop → start ---- */
.ae-flip {
    margin-top: 72px;
    background: linear-gradient(135deg, #0F3D44, #1a5a5e);
    border-radius: 24px;
    padding: 56px 44px;
    text-align: center;
    color: var(--ae-white);
    position: relative;
    overflow: hidden;
}
.ae-flip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(520px 320px at 50% 120%, rgba(0, 128, 128, .5), transparent 65%);
    pointer-events: none;
}
.ae-flip-pre {
    position: relative;
    color: #BFE9EC;
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0 0 22px;
}
.ae-flip-words {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 26px;
}
.ae-flip-word {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.02em;
    opacity: .45;
    position: relative;
    transition: opacity .6s ease;
}
.ae-flip-word::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: .06em;
    background: var(--ae-accent);
    transform: scaleX(1);
    transform-origin: left;
}
.ae-flip-word.ae-flip-word-on {
    opacity: 1;
    color: var(--ae-white);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
    .ae-flip-word.ae-flip-word-on {
        background: linear-gradient(120deg, #ffffff, #BFE9EC);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}
.ae-flip-word.ae-flip-word-on::after { display: none; }
.ae-flip-post {
    position: relative;
    color: #CFEAEC;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}

/* ---------- what changes ---------- */
.ae-changes { background: var(--ae-white); }

.ae-change-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--ae-border);
}
.ae-change-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    align-items: baseline;
    padding: 34px 8px;
    border-bottom: 1px solid var(--ae-border);
    transition: background .3s ease;
}
.ae-change-row:hover { background: var(--ae-teal-tint); }
@media (max-width: 600px) {
    .ae-change-row { grid-template-columns: 60px 1fr; gap: 16px; padding: 26px 4px; }
}
.ae-change-num {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--ae-accent);
    letter-spacing: -.02em;
}
.ae-change-body h3 {
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -.015em;
    color: var(--ae-ink);
    margin: 0 0 6px;
}
.ae-change-body p {
    color: var(--ae-ink-soft);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    margin: 0;
}

/* ---------- who is it for ---------- */
.ae-who { background: linear-gradient(180deg, #F2FAF9 0%, #ffffff 60%); }

.ae-who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 900px) { .ae-who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ae-who-grid { grid-template-columns: 1fr; } }

.ae-who-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--ae-white);
    border: 1px solid var(--ae-border);
    border-radius: 16px;
    padding: 22px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ae-ink);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.ae-who-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--ae-shadow);
    border-color: rgba(0, 128, 128, .4);
}
.ae-who-item i {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--ae-teal-tint);
    color: var(--ae-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

/* ---------- CTA ---------- */
.ae-cta {
    position: relative;
    background:
        radial-gradient(1100px 640px at 50% -10%, #0e6a74, #0F3D44 72%);
    color: var(--ae-white);
    padding: 130px 0;
    text-align: center;
    overflow: hidden;
}
.ae-cta-ghost {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    font-size: min(34vw, 300px);
    font-weight: 900;
    line-height: 1;
    color: var(--ae-white);
    opacity: .05;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    letter-spacing: -.03em;
}
.ae-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}
.ae-cta .ae-eyebrow { color: #BFE9EC; }
.ae-cta h2 {
    font-size: clamp(2rem, 4.6vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -.015em;
    font-weight: 900;
    margin: 0 0 20px;
}
.ae-cta p {
    color: #CFEAEC;
    font-size: 1.05rem;
    margin: 0 auto 14px;
    max-width: 620px;
}
.ae-cta .ae-cta-strong {
    color: var(--ae-white);
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
    font-weight: 800;
    margin: 26px auto 30px;
}
.ae-cta .ae-cta-row { margin-top: 34px; }

/* ---------- responsive spacing ---------- */
@media (max-width: 720px) {
    .ae-section { padding: 76px 0; }
    .ae-real { padding: 84px 0 80px; }
    .ae-cta { padding: 88px 0; }
    .ae-hero { padding-top: calc(70px + 3rem); min-height: 94vh; }
    .ae-course .ae-wrap { padding: 0 20px; }
    .ae-inpage-inner { padding: 10px 20px; }
    .ae-flip { padding: 44px 22px; }
    .ae-journey { padding: 28px 18px 22px; }
    .ae-journey-dot { width: 44px; height: 44px; font-size: .78rem; }
    .ae-journey-dot.active { width: 58px; height: 58px; }
    .ae-journey-detail-inner { flex-direction: column; gap: 14px; padding: 20px 18px 20px 22px; }
    .ae-journey-badge { width: 46px; height: 46px; font-size: 1rem; }
    .ae-journey-groups { font-size: .58rem; letter-spacing: .12em; }
}
