#lpBody {
    --lp-ink: #112118;
    --lp-muted: #4f5f57;
    --lp-border: rgba(17, 33, 24, 0.12);
    --lp-soft-border: rgba(17, 33, 24, 0.08);
    --lp-surface: rgba(255, 255, 255, 0.94);
    --lp-soft-surface: #f7faf7;
    --lp-shadow: 0 18px 42px rgba(21, 43, 29, 0.1);
    --lp-tight-shadow: 0 8px 24px rgba(21, 43, 29, 0.08);
    background:
        radial-gradient(circle at top left, rgba(142, 212, 154, 0.24), transparent 30%),
        radial-gradient(circle at 78% 4%, rgba(44, 91, 132, 0.1), transparent 26%),
        linear-gradient(180deg, #edf7ef 0%, #fbfdfb 31%, #ffffff 64%, #f4faf6 100%);
    color: var(--lp-ink);
    position: relative;
    overflow-x: clip;
}

#lpBody::before,
#lpBody::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

#lpBody::before {
    background:
        linear-gradient(rgba(3, 138, 3, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(3, 138, 3, 0.055) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 74%);
}

#lpBody::after {
    inset: auto auto -290px -160px;
    width: 544px;
    height: 544px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(3, 138, 3, 0.1), transparent 72%);
    filter: blur(24px);
}

#lpBody #header,
#lpBody #footer,
.lpAffiliateStrip,
.lpMain,
.lpFinalCta {
    position: relative;
    z-index: 1;
}

.lpAffiliateStrip {
    width: 100%;
    padding: 0;
    background: linear-gradient(90deg, #073f25 0%, var(--principal-green) 52%, #0d6238 100%);
    border-bottom: solid 1px rgba(4, 33, 18, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lpAffiliateStripInner {
    width: min(1120px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 20px 40px;
    box-sizing: border-box;
}

.lpButton,
.lpButtonGhost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 6px;
    padding: 0 20px;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.2;
    border: solid 1px var(--principal-green);
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.lpButton {
    background: var(--principal-green);
    color: white;
    box-shadow: 0 12px 24px rgba(35, 76, 45, 0.14);
}

.lpButton:hover,
.lpButton:focus,
.lpButton:active {
    font-size: 1rem;
    background: #056f05;
    color: white;
    border: solid 1px var(--principal-green);
    box-shadow: 0 14px 28px rgba(35, 76, 45, 0.18);
}

.lpButtonGhost {
    background: white;
    color: var(--principal-green);
    box-shadow: 0 12px 24px rgba(35, 76, 45, 0.08);
}

.lpButtonGhost:hover,
.lpButtonGhost:focus,
.lpButtonGhost:active {
    font-size: 1rem;
    background: #f5fbf5;
    color: var(--principal-green);
    border: solid 1px var(--principal-green);
    box-shadow: 0 14px 28px rgba(35, 76, 45, 0.12);
}

.lpMain {
    width: min(1120px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 34px 0 0 0;
}

.lpHero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1fr);
    column-gap: 72px;
    row-gap: 40px;
    padding: 48px 0 42px 0;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    justify-items: stretch;
    min-height: 565px;
}

.lpSection {
    border: solid 1px var(--lp-soft-border);
    border-radius: 8px;
    background: var(--lp-surface);
    box-shadow: var(--lp-tight-shadow);
}

.lpHeroLeft,
#exampleGifWrapper,
#avatarContainerOuterWrapper,
.lpHeroRight,
.lpHeroVisualFrame,
.lpFinalActions,
.lpHeroCtas {
    min-width: 0;
}

.lpHeroLeft,
#exampleGifWrapper,
#avatarContainerOuterWrapper {
    will-change: transform;
}

.lpHeroLeft h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.05;
    letter-spacing: 0;
    max-width: 560px;
}

.lpHeroLeft p {
    color: var(--lp-muted);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 570px;
    margin: 22px 0 24px 0;
}

.lpHeroCtas {
    margin-top: 22px;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: flex-start;
    gap: 12px;
}

#affiliateDiscountBox {
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
    border: none;
    border-radius: 0;
    background: transparent;
    text-align: left;
}

#affiliateDiscountBadge {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: fit-content;
    max-width: 100%;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
    margin: 0 0 10px 0;
    background: white;
    color: #0b542e;
}

#affiliateDiscountMessage {
    margin: 0;
    color: #eef9f2;
    font-size: 1rem;
}

#affiliateDiscountMessage a,
#affiliateDiscountMessage a:hover,
#affiliateDiscountMessage a:focus,
#affiliateDiscountMessage a:active {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

.lpAffiliateStrip + .lpMain {
    padding-top: 18px;
}

.lpHeroRight {
    position: relative;
}

.lpHeroRight::before {
    content: "";
    position: absolute;
    inset: -22px 35px auto auto;
    width: 160px;
    height: 160px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(3, 138, 3, 0.14), rgba(44, 91, 132, 0.08));
    transform: rotate(16deg);
}

.lpHeroVisualFrame {
    position: relative;
    width: 100%;
    max-width: 530px;
    padding: 18px;
    margin-left: auto;
    box-sizing: border-box;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 248, 0.86));
    border: solid 1px rgba(17, 33, 24, 0.08);
    box-shadow: 0 28px 64px rgba(9, 38, 21, 0.16);
}

.lpHeroVisualFrame::before {
    content: "";
    display: block;
    width: 108px;
    height: 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(7, 93, 37, 0.2), rgba(44, 91, 132, 0.42));
}

.lpHeroVisualGlow {
    position: absolute;
    right: -16px;
    bottom: -22px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(95, 198, 118, 0.3), transparent 72%);
    filter: blur(16px);
}

#exampleGifWrapper {
    min-width: 0;
    position: relative;
    padding: 14px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(10, 42, 22, 0.08), rgba(255, 255, 255, 0.8));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

#exampleGif {
    padding: 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    aspect-ratio: 791 / 800;
    border-radius: 6px;
    border: solid 1px rgba(12, 47, 26, 0.08);
    box-shadow: 0 18px 32px rgba(16, 32, 20, 0.14);
    object-fit: contain;
    display: block;
    background: white;
}

.lpSection {
    margin-top: 28px;
    padding: 28px;
}

.lpSection h2 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1.2;
}

.lpSectionLead {
    margin: 10px 0 0 0;
    color: var(--lp-muted);
    font-size: 1.05rem;
}

.lpThreeCol {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.lpHowItWorksFlow {
    column-gap: 42px;
    row-gap: 24px;
    overflow: visible;
}

.lpMiniCard {
    border: solid 1px var(--lp-border);
    border-left: solid 4px var(--principal-green);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, var(--lp-soft-surface) 100%);
    padding: 18px 16px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.lpFlowCard {
    position: relative;
    overflow: visible;
}

.lpFlowArrow {
    position: absolute;
    top: 50%;
    right: -42px;
    width: 52px;
    height: 22px;
    transform: translateY(-50%);
    pointer-events: none;
    filter: drop-shadow(0 0 0.3rem rgba(61, 121, 77, 0.14));
    background:
        linear-gradient(90deg, rgba(61, 121, 77, 0.14) 0%, rgba(61, 121, 77, 0.55) 44%, rgba(61, 121, 77, 0.8) 100%) 0 50% / calc(100% - 14px) 2px no-repeat,
        radial-gradient(circle, rgba(93, 171, 112, 0.95) 0 32%, rgba(93, 171, 112, 0.24) 45%, rgba(93, 171, 112, 0) 68%) 0 50% / 14px 14px no-repeat;
}

.lpFlowArrow::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: linear-gradient(180deg, rgba(61, 121, 77, 0.95) 0%, rgba(61, 121, 77, 0.68) 100%);
}

.lpMiniCard h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: bold;
}

.lpMiniCard p {
    margin: 6px 0 0 0;
    color: var(--lp-muted);
    font-size: 1rem;
}

.lpCareerSnippets {
    margin-top: 20px;
    display: grid;
    gap: 14px;
}

.lpCareerSnippet {
    border: solid 1px var(--lp-border);
    border-left: solid 4px var(--principal-green);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, var(--lp-soft-surface) 100%);
    padding: 16px;
    display: grid;
    grid-template-columns: min-content auto;
    column-gap: 14px;
    align-items: start;
}

.lpCareerIconWrapper {
    background: #e5f5e7;
    border-radius: 6px;
    width: 54px;
    height: 54px;
    display: grid;
    justify-content: center;
    align-content: center;
    border: solid 1px rgba(3, 138, 3, 0.12);
}

.lpCareerIconWrapper img {
    width: 2rem;
    padding: 0;
    margin: 0;
    display: block;
}

.lpFxIcon {
    font-family: "Times New Roman";
    font-style: italic;
    color: var(--principal-green);
    font-weight: bold;
    font-size: 1.5rem;
}

.lpCareerSnippetBody h3 {
    margin: 0;
    font-weight: bold;
}

.lpCareerSnippetBody p {
    margin: 0;
    color: var(--lp-muted);
}

.lpCareerStat {
    color: #1f2d25 !important;
    font-weight: bold;
}

.lpCareerSnippetBody .sourceLink,
.lpCareerSnippetBody .sourceLink:hover,
.lpCareerSnippetBody .sourceLink:active,
.lpCareerSnippetBody .sourceLink:focus {
    font-style: italic;
    color: var(--lp-muted);
    font-size: 0.8rem;
}

.lpCareerSnippetBody .sourceLink:hover {
    color: var(--principal-green);
}

.lpCareerSnippetBody .sourceLink + .lpCareerStat {
    margin-top: 12px;
}

.lpCoursePromoTitle {
    margin: 0;
}

.lpCoursePromoActions {
    margin-top: 18px;
}

.lpCoursePromoSection {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 30px;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(3, 138, 3, 0.08) 0%, rgba(44, 91, 132, 0.06) 100%),
        var(--lp-surface);
}

.lpCoursePromoStats {
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
    padding: 0;
    min-width: 180px;
}

.lpCoursePromoStatCard {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: solid 1px var(--lp-soft-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset;
}

.lpCoursePromoStatIcon {
    width: 1.4rem;
    display: block;
    flex: 0 0 auto;
    opacity: 0.78;
}

.lpCoursePromoStatValue {
    margin: 0;
    color: #111a2c;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.lpFaqList {
    margin-top: 12px;
    border: solid 1px var(--lp-soft-border);
    border-radius: 8px;
    overflow: hidden;
}

.lpFaqItem {
    border-top: solid 1px var(--lp-soft-border);
    background: rgba(255, 255, 255, 0.64);
}

.lpFaqItem:first-child {
    border-top: none;
}

.lpFaqQuestion {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 16px;
    text-align: left;
    font-weight: bold;
    font-size: 1rem;
    color: var(--lp-ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.lpFaqQuestion:hover,
.lpFaqQuestion:focus,
.lpFaqQuestion:active {
    color: var(--principal-green);
    background: #f5fbf5;
}

.lpFaqQuestion:focus-visible {
    outline: solid 2px var(--principal-green);
    outline-offset: 2px;
}

.lpFaqQuestion::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
    transition: transform 0.15s ease;
    flex-shrink: 0;
    transform-origin: center;
    margin-left: 2px;
}

.lpFaqItem.isOpen .lpFaqQuestion::before {
    transform: rotate(45deg) translateX(-50%);
}

.lpFaqAnswer {
    padding: 16px 16px 16px 44px;
}

.lpFaqAnswer p {
    margin: 0;
    color: var(--lp-muted);
}

.lpFinalCta {
    margin-top: 72px;
    width: 100%;
    padding: 54px 0 108px 0;
    display: grid;
    row-gap: 10px;
    background:
        radial-gradient(circle at 14% 10%, rgba(129, 230, 152, 0.18), transparent 24%),
        radial-gradient(circle at 82% 20%, rgba(44, 91, 132, 0.16), transparent 26%),
        linear-gradient(135deg, #04140b 0%, #0b2a19 52%, #0d3c28 100%);
    overflow: hidden;
    position: relative;
    box-shadow: none;
    border-radius: 0;
}

.lpFinalCta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 4rem 4rem;
    mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.8), transparent 72%);
}

.lpFinalCta > * {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100vw - 40px));
    margin-left: auto;
    margin-right: auto;
}

.finalCtaInnerWrapper {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
    column-gap: 34px;
    row-gap: 26px;
    align-items: center;
    margin-top: 20px;
}

.lpFinalCta h2 {
    margin: 0 auto;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    width: min(1120px, calc(100vw - 40px));
}

.lpFinalActions {
    display: grid;
    justify-items: center;
}

.lpFinalActions .lpHeroCtas {
    margin-top: 0;
    justify-content: center;
    gap: 13px;
}

.lpFinalCta .lpButton {
    background: white;
    color: #0a5b29;
    border-color: white;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.lpFinalCta .lpButton:hover,
.lpFinalCta .lpButton:focus,
.lpFinalCta .lpButton:active {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.34);
}

.lpFinalCta .lpButtonGhost {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: none;
}

.lpFinalCta .lpButtonGhost:hover,
.lpFinalCta .lpButtonGhost:focus,
.lpFinalCta .lpButtonGhost:active {
    background: white;
    color: #0a5b29;
    border-color: white;
}

#avatarCtaButton {
    background: var(--principal-green);
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: none;
    margin-top: 60px;
    padding: 10px 60px;
    margin-bottom: 100px;
    border: solid 1px var(--principal-green);
}

#avatarCtaButton:hover,
#avatarCtaButton:active,
#avatarCtaButton:focus {
    background: white;
    color: var(--principal-green);
}

#bottomSectionMainTitle {
    font-size: 2rem;
    margin: 0;
    margin-top: 40px;
    text-align: center;
}

#avatarContainerOuterWrapper {
    display: grid;
    justify-content: center;
    justify-items: center;
    margin-top: 0;
    padding: 28px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: solid 1px rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

#avatarContainerPre,
#avatarContainerPost {
    width: min-content;
    margin: 0;
}

#avatarContainerPre {
    border-top: solid 1px rgba(255, 255, 255, 0.14);
    border-left: solid 1px rgba(255, 255, 255, 0.14);
}

#avatarContainerPost {
    border-top: solid 1px transparent;
    border-left: solid 1px transparent;
}

#avatarContainerPre .avatarCell,
#avatarContainerPost .populatedAvatarCell {
    border-bottom: solid 1px rgba(255, 255, 255, 0.12);
    border-right: solid 1px rgba(255, 255, 255, 0.12);
}

#avatarContainerPost .populatedAvatarCell {
    border: none;
    padding-right: 1px;
    padding-bottom: 1px;
}

.avatarRow {
    display: flex;
}

.avatarCell {
    width: 12px;
    height: 4px;
    width: 3px;
    height: 3px;
    width: 6px;
    height: 5px;
    border-bottom: solid 1px transparent;
    border-right: solid 1px transparent;
}

#avatarText {
    font-size: 1.1rem;
    margin: 16px 0 0 0;
    max-width: 400px;
    line-height: 1.5;
    text-align: center;
    color: rgba(243, 248, 244, 0.82);
}

@media screen and (prefers-reduced-motion: no-preference) {
    .lpHeroLeft {
        animation: lpLiftIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    #exampleGifWrapper {
        animation: lpLiftIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both, lpGentleFloat 5s ease-in-out 1.1s infinite;
    }

    #avatarContainerOuterWrapper {
        animation: lpGentleFloat 7.5s ease-in-out 0.8s infinite;
    }

    .lpFlowArrow {
        animation: lpArrowFlow 3.1s ease-in-out infinite;
    }
}

@keyframes lpLiftIn {
    0% {
        transform: translateY(1.1rem);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes lpGentleFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-1rem);
    }
}

@keyframes lpArrowFlow {
    0%,
    15% {
        background-position: 0 50%, 0 50%;
    }

    85%,
    100% {
        background-position: 0 50%, calc(100% - 10px) 50%;
    }
}

@keyframes lpArrowFlowVertical {
    0%,
    18% {
        background-position: 50% 0, 50% 0;
    }

    65%,
    100% {
        background-position: 50% 0, 50% calc(100% - 10px);
    }
}

@media screen and (max-width: 1000px) {
    .lpHero {
        grid-template-columns: 1fr;
        min-height: unset;
        padding-top: 36px;
        justify-items: center;
        text-align: center;
    }

    .lpHeroLeft h1,
    .lpHeroLeft p {
        margin-left: auto;
        margin-right: auto;
    }

    .lpHeroLeft .lpButton {
        margin-left: auto;
        margin-right: auto;
    }

    .lpHeroVisualFrame {
        margin-left: 0;
    }

    .lpCoursePromoSection {
        grid-template-columns: 1fr;
    }

    .lpCoursePromoStats {
        margin-top: 22px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .finalCtaInnerWrapper {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}

@media screen and (max-width: 780px) {
    .lpMain {
        width: min(1120px, calc(100vw - 32px));
    }

    .lpHeroLeft {
        padding: 14px 8px;
    }

    .lpHeroLeft h1 {
        font-size: 2.2rem;
    }

    .lpHeroLeft p {
        font-size: 1.05rem;
    }

    .lpSection {
        padding: 22px;
    }

    .lpThreeCol {
        grid-template-columns: 1fr;
    }

    .lpHowItWorksFlow {
        row-gap: 34px;
    }

    .lpFlowArrow {
        top: auto;
        bottom: -28px;
        left: 50%;
        right: auto;
        width: 22px;
        height: 46px;
        transform: translateX(-50%);
        background:
            linear-gradient(180deg, rgba(61, 121, 77, 0.14) 0%, rgba(61, 121, 77, 0.55) 44%, rgba(61, 121, 77, 0.8) 100%) 50% 0 / 2px calc(100% - 14px) no-repeat,
            radial-gradient(circle, rgba(93, 171, 112, 0.95) 0 32%, rgba(93, 171, 112, 0.24) 45%, rgba(93, 171, 112, 0) 68%) 50% 0 / 14px 14px no-repeat;
        animation-name: lpArrowFlowVertical;
    }

    .lpFlowCard:first-child .lpFlowArrow,
    .lpFlowCard:nth-child(2) .lpFlowArrow {
        top: auto;
    }

    .lpFlowArrow::before {
        top: auto;
        right: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        clip-path: polygon(0 0, 100% 0, 50% 100%);
    }

    .lpFinalActions .lpHeroCtas {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .lpFinalCta {
        padding: 36px 0 54px 0;
    }
}

@media screen and (max-width: 560px) {
    .lpButton,
    .lpButtonGhost {
        width: 100%;
        min-height: 42px;
        padding: 0 14px;
    }

    .lpHeroCtas {
        grid-template-columns: 1fr;
    }

    .lpCareerSnippet {
        grid-template-columns: 1fr;
        row-gap: 12px;
    }

    .lpCoursePromoStats {
        grid-template-columns: 1fr;
    }

    .lpFinalCta h2 {
        font-size: 1.4rem;
        line-height: 1.25;
    }

    #avatarContainerOuterWrapper {
        padding: 20px;
    }
}

@media screen and (max-width: 380px) {
    #affiliateDiscountBadge {
        display: flex;
        width: 100%;
        max-width: 100%;
        font-size: 0.7rem;
        padding: 6px 8px;
    }
}
