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

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

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

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

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

/* ---------- hero ---------- */
.be-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;
}

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

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

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

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

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

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

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

.be-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;
}
.be-btn:hover { transform: translateY(-3px); }

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

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

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

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

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

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

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

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

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

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

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

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

.be-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--be-teal-tint);
    color: var(--be-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.be-why-card h3 {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--be-ink);
    margin: 0 0 8px;
}
.be-why-card p {
    color: var(--be-ink-soft);
    font-size: .92rem;
    margin: 0;
}

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

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

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

.be-situ-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
@media (max-width: 940px) { .be-situ-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .be-situ-grid { grid-template-columns: 1fr; } }

.be-situ-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    padding: 18px 18px;
    font-weight: 600;
    color: var(--be-white);
    transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.be-situ-item:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .3);
    transform: translateY(-3px);
}
.be-situ-item i {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 128, 128, .35);
    color: #BFE9EC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}
.be-situ-item:last-child { grid-column: 1 / -1; justify-content: center; }

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

/* ---------- professional presence ---------- */
.be-presence { background: linear-gradient(180deg, #ffffff 0%, #F7FCFB 100%); }

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

.be-presence-lines {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-top: 8px;
}
.be-presence-line {
    font-size: clamp(1.3rem, 2.8vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -.015em;
    color: var(--be-ink);
    line-height: 1.3;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--be-border);
}
.be-presence-line:last-child { color: var(--be-teal); }

/* ---------- global communication ---------- */
.be-global { background: var(--be-teal-tint); }

.be-global-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 820px;
}
.be-global-line {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 4px;
    border-bottom: 1px solid rgba(0, 128, 128, .18);
    font-size: clamp(1.15rem, 2.4vw, 1.6rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--be-ink);
}
.be-global-line i {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--be-white);
    border: 1px solid rgba(0, 128, 128, .2);
    color: var(--be-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

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

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

/* ---------- what makes this different (dark) ---------- */
.be-different {
    background:
        radial-gradient(1100px 640px at 10% 100%, #0e6a74, #0F3D44 70%);
    color: var(--be-white);
    padding: 120px 0 116px;
}
.be-different .be-eyebrow { color: #BFE9EC; }
.be-different .be-sec-head h2 { color: var(--be-white); }

.be-diff-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 56px;
}
@media (max-width: 720px) { .be-diff-list { grid-template-columns: 1fr; } }

.be-diff-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    padding: 30px 28px;
    transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.be-diff-item:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-3px);
}
.be-diff-num {
    flex-shrink: 0;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--be-accent);
    letter-spacing: -.02em;
}
.be-diff-item p {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 600;
    line-height: 1.5;
}

.be-diff-closer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}
.be-diff-closer p {
    margin: 0 0 8px;
    color: #CFEAEC;
    font-size: 1.05rem;
    font-weight: 500;
}
.be-diff-closer .be-diff-em {
    color: var(--be-white);
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
    font-weight: 800;
    margin-top: 14px;
}

/* ---------- reputation ---------- */
.be-reputation { background: var(--be-teal-tint); }

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

.be-rep-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 8px;
}
.be-rep-line {
    font-size: clamp(1.2rem, 2.6vw, 1.7rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--be-ink);
    padding: 20px 4px;
    border-bottom: 1px solid rgba(0, 128, 128, .18);
}

/* ---------- start your next conversation (dark band) ---------- */
.be-next {
    background:
        radial-gradient(1100px 640px at 50% -20%, #0e6a74, #0F3D44 72%);
    color: var(--be-white);
    padding: 130px 0;
    text-align: center;
}
.be-next .be-eyebrow { color: #BFE9EC; }
.be-next-inner { max-width: 780px; margin: 0 auto; }
.be-next h2 {
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -.015em;
    font-weight: 900;
    margin: 0 0 30px;
}
.be-next p {
    color: #CFEAEC;
    font-size: 1.08rem;
    font-weight: 500;
    margin: 0 auto 10px;
    max-width: 640px;
}
.be-next-strong {
    margin-top: 34px;
    font-size: clamp(1.2rem, 2.6vw, 1.6rem);
    font-weight: 800;
    color: var(--be-white);
    padding: 26px 20px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
}

/* ---------- CTA ---------- */
.be-cta {
    background: var(--be-teal);
    color: var(--be-white);
    padding: 110px 0;
    text-align: center;
    background: linear-gradient(135deg, #006666, #008080 60%, #0e7a82);
}
.be-cta .be-eyebrow { color: #CFEAEC; }
.be-cta-inner { max-width: 760px; margin: 0 auto; }
.be-cta h2 {
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -.015em;
    font-weight: 900;
    margin: 0 0 34px;
}
.be-cta-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 540px;
    margin: 0 auto 40px;
    text-align: left;
}
.be-cta-check {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--be-white);
}
.be-cta-check i {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    color: var(--be-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
}
.be-cta .be-cta-row { margin-top: 8px; }

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