/* ===== WIRKMOMENT AKADEMIE · home-dream-171.css ===== */
/* Custom Style */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800;900&display=swap');

:root {
    --ink: #000000;
    --paper: #ffffff;
    --brand-yellow: #ffdd00;
    --yellow-tint: #ffeb66;
    --green: #66bf8a;
    --green-tint: #d4f0e3;
    --blue-tint: #c4d9ff;
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--ink);
    background: var(--paper);
    margin: 0;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 800;
    line-height: 1.15;
    margin-top: 0;
}

.h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.h4 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* === HEADER === */
.HeaderContainer {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--ink);
    color: var(--paper);
}

.StandardHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 1.5rem;
    max-width: 1320px;
    margin: 0 auto;
}

.StandardHeader__Logo {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.StandardHeader__Logo svg {
    width: 48px;
    height: 48px;
}

.StandardHeader__LogoText {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--paper);
    letter-spacing: -.02em;
}

.InternalNavigation__List {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.InternalNavigation__Link {
    color: rgba(255, 255, 255, .8);
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .03em;
    transition: color .2s;
}

.InternalNavigation__Link:hover {
    color: var(--paper);
    text-decoration: none;
}

.InternalNavigation__Link--Active {
    color: var(--paper);
    border-bottom: 2px solid var(--brand-yellow);
    padding-bottom: 2px;
}

.StandardHeader__CtaBtn {
    background: var(--brand-yellow);
    color: var(--ink);
    font-weight: 700;
    font-size: .8rem;
    padding: .5rem 1.25rem;
    border: none;
    cursor: pointer;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: opacity .2s;
    white-space: nowrap;
}

.StandardHeader__CtaBtn:hover {
    opacity: .85;
    text-decoration: none;
}

.HeaderContainer__ToggleNavigation {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    flex-direction: column;
    gap: 5px;
}

.HeaderContainer__ToggleNavigation span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--paper);
    transition: all .3s;
}

/* === MOBILE NAV === */
.MobileNav {
    display: none;
    background: #111;
    padding: 0 1.5rem 1.25rem;
}

.MobileNav.is-open {
    display: block;
}

.MobileNav__List {
    list-style: none;
    padding: 0;
    margin: 0;
}

.MobileNav__List li {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.MobileNav__List a {
    display: block;
    color: rgba(255, 255, 255, .85);
    font-size: .95rem;
    padding: .85rem 0;
}

.MobileNav__List a:hover {
    color: #fff;
    text-decoration: none;
}

/* === HERO === */
.HeroSection {
    position: relative;
    min-height: 84vh;
    display: flex;
    align-items: center;
    background: var(--ink);
    overflow: hidden;
}

.HeroSection__BgImage {
    position: absolute;
    inset: 0;
    background-image: url('../photo/hero-bg.webp');
    background-size: cover;
    background-position: center top;
    opacity: .4;
}

.HeroSection__Content {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    width: 100%;
}

.HeroSection__Kicker {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand-yellow);
    margin-bottom: .75rem;
}

.HeroSection__Title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--paper);
    max-width: 820px;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.HeroSection__Sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, .82);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* === CTA BUTTONS === */
.Cta__ButtonPrimary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--brand-yellow);
    color: var(--ink);
    font-weight: 700;
    font-size: .875rem;
    padding: .85rem 2rem;
    border: 2px solid var(--brand-yellow);
    cursor: pointer;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: background .2s, opacity .2s;
}

.Cta__ButtonPrimary:hover {
    background: var(--yellow-tint);
    border-color: var(--yellow-tint);
    text-decoration: none;
}

.Cta__ButtonPrimary .arrow,
.Cta__ButtonSecondary .arrow {
    display: inline-block;
    transition: transform .3s ease;
}

.Cta__ButtonPrimary:hover .arrow,
.Cta__ButtonSecondary:hover .arrow {
    transform: translateX(6px);
}

.Cta__ButtonSecondary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: transparent;
    color: var(--ink);
    font-weight: 700;
    font-size: .875rem;
    padding: .8rem 1.75rem;
    border: 2px solid var(--ink);
    cursor: pointer;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: background .2s, color .2s;
}

.Cta__ButtonSecondary:hover {
    background: var(--ink);
    color: var(--paper);
    text-decoration: none;
}

/* Yellow section overrides */
.ProductPromoLarge__Yellow .Cta__ButtonSecondary {
    border-color: var(--ink);
}

/* === MODULE WRAP === */
.ModuleWrap {
    padding: 5rem 0;
}

.ModuleWrap--Compact {
    padding: 3rem 0;
}

/* === BACKGROUND BANDS === */
.BackgroundColorContainer__White {
    background: var(--paper);
}

.BackgroundColorContainer__SecondaryYellowTint {
    background: var(--yellow-tint);
}

.BackgroundColorContainer__SecondaryBlueTint {
    background: var(--blue-tint);
}

.BackgroundColorContainer__SecondaryGreenTint {
    background: var(--green-tint);
}

.BackgroundColorContainer__Yellow {
    background: var(--brand-yellow);
}

/* === ACTION PANEL === */
.ActionPanel__Title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.ActionPanel__RichText {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #1a1a1a;
}

.ActionPanel__RichText p {
    margin-bottom: 1.1rem;
}

/* === SECTION HEADER === */
.SectionHeader {
    margin-bottom: 3rem;
}

.SectionHeader__Kicker {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: .35rem;
}

.SectionHeader__Title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    margin-bottom: .75rem;
}

.SectionHeader__Sub {
    font-size: 1rem;
    color: #444;
    max-width: 600px;
    line-height: 1.6;
}

/* === IMAGE CTA GRID === */
.imageCTArow {
    padding-bottom: 0;
}

.imageCTAitem {
    margin-bottom: 2rem;
}

.imageCTAitem .CtaPanel__ImageLink {
    display: block;
    overflow: hidden;
    margin-bottom: .75rem;
}

.imageCTAitem .CtaPanel__ImageLink img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform .4s ease;
}

.imageCTAitem:hover .CtaPanel__ImageLink img {
    transform: scale(1.04);
}

.imageCTAitem h3 {
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .3rem;
}

.imageCTAitem h3 .arrow {
    display: inline-block;
    position: relative;
    right: 0;
    transition: right .3s ease;
}

.imageCTAitem:hover h3 .arrow {
    right: -8px;
}

.imageCTAitem p {
    font-size: .875rem;
    color: #444;
    margin: 0 0 .3rem;
}

.CtaPanel__Price {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--ink);
    margin: .25rem 0 !important;
}

/* === PRODUCT PROMO LARGE === */
.ProductPromoLarge {
    padding: 5rem 0;
}

.ProductPromoLarge__Yellow {
    background: var(--brand-yellow);
}

.ProductPromoLarge__GreenTint {
    background: var(--green-tint);
}

.ProductPromoLarge__Kicker {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .5rem;
    opacity: .7;
}

.ProductPromoLarge__Title {
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.ProductPromoLarge__Description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ProductPromoLarge__Description p {
    margin-bottom: .85rem;
}

.ImageContainer__Image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* === BUTTON CTA CONTAINER (icon cards) === */
.ButtonCtaContainer {
    background: var(--paper);
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    padding: 4rem 0;
}

.CtaIconCard {
    text-align: center;
    padding: 2rem 1.5rem;
}

.CtaIconCard__Icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
}

.CtaIconCard__Title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.CtaIconCard__Text {
    font-size: .9rem;
    color: #555;
    line-height: 1.6;
}

.CtaPanel__descriptionMobile {
    display: none;
}

/* === PRICING === */
.PricingSection {
    padding: 5rem 0;
}

.PricingCard {
    border: 2px solid var(--ink);
    padding: 2rem 1.5rem;
    height: 100%;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
    background: var(--paper);
}

.PricingCard:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0 var(--ink);
}

.PricingCard--Featured {
    background: var(--brand-yellow);
}

.PricingCard__Badge {
    position: absolute;
    top: -13px;
    left: 1.5rem;
    background: var(--ink);
    color: var(--paper);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .2rem .65rem;
}

.PricingCard__Name {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .2rem;
    color: #555;
}

.PricingCard--Featured .PricingCard__Name {
    color: rgba(0, 0, 0, .65);
}

.PricingCard__Course {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.PricingCard__Price {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: .2rem;
}

.PricingCard__Duration {
    font-size: .8rem;
    color: #666;
    margin-bottom: 1.25rem;
}

.PricingCard--Featured .PricingCard__Duration {
    color: rgba(0, 0, 0, .6);
}

.PricingCard__Features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.PricingCard__Features li {
    font-size: .875rem;
    padding: .35rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}

.PricingCard__Features li i {
    margin-top: 3px;
    color: var(--green);
    flex-shrink: 0;
}

.PricingCard--Featured .PricingCard__Features li i {
    color: var(--ink);
}

/* === NEWSLETTER BAND === */
.NewsletterBand {
    padding: 5rem 0;
    text-align: center;
}

.NewsletterBand__Title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: .75rem;
}

.NewsletterBand__Sub {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.NewsletterBand__Form {
    display: flex;
    max-width: 440px;
    margin: 0 auto;
}

.NewsletterBand__Input {
    flex: 1;
    padding: .75rem 1rem;
    border: 2px solid var(--ink);
    border-right: none;
    font-size: .9rem;
    outline: none;
    font-family: inherit;
    background: rgba(255, 255, 255, .7);
}

.NewsletterBand__Input:focus {
    border-color: #333;
}

.NewsletterBand__Submit {
    background: var(--ink);
    color: var(--paper);
    border: 2px solid var(--ink);
    padding: .75rem 1.25rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background .2s;
}

.NewsletterBand__Submit:hover {
    background: #333;
}

.NewsletterBand__Privacy {
    font-size: .8rem;
    margin-top: .75rem;
    color: #555;
}

/* === FOOTER === */
.Footer__Wrapper {
    background: var(--ink);
    color: var(--paper);
    padding: 4rem 0 0;
}

.Footer__Heading {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, .45);
}

.Footer__ContactItem {
    font-size: .875rem;
    color: rgba(255, 255, 255, .7);
    display: flex;
    gap: .5rem;
    margin-bottom: .65rem;
    align-items: flex-start;
    line-height: 1.5;
}

.Footer__ContactItem i {
    margin-top: 3px;
    color: var(--brand-yellow);
    flex-shrink: 0;
}

.Footer__ContactItem a {
    color: rgba(255, 255, 255, .7);
}

.Footer__ContactItem a:hover {
    color: #fff;
    text-decoration: none;
}

.Footer__LogoText {
    font-size: 1rem;
    font-weight: 800;
    color: var(--paper);
    margin: .4rem 0 .75rem;
}

.Footer__Social {
    display: flex;
    gap: .75rem;
    margin-bottom: 1rem;
}

.Footer__Social a {
    color: rgba(255, 255, 255, .65);
    font-size: 1.1rem;
    transition: color .2s;
}

.Footer__Social a:hover {
    color: var(--paper);
    text-decoration: none;
}

.Footer__Links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.Footer__Links li {
    margin-bottom: .5rem;
}

.Footer__Links a {
    color: rgba(255, 255, 255, .65);
    font-size: .875rem;
    transition: color .2s;
}

.Footer__Links a:hover {
    color: var(--paper);
    text-decoration: none;
}

.Footer__Legal {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 2.5rem;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
}

.Footer__Copyright {
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
    margin: 0;
}

.Footer__LegalLinks {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.Footer__LegalLinks a {
    color: rgba(255, 255, 255, .4);
    font-size: .8rem;
    transition: color .2s;
}

.Footer__LegalLinks a:hover {
    color: var(--paper);
    text-decoration: none;
}

.Footer__TaglineWrapper {
    background: #111;
    text-align: center;
    padding: .75rem;
}

.Footer__Tagline {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin: 0;
}

/* === GDPR COOKIE BANNER === */
.CookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.25rem 1.5rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform .4s ease;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .45);
}

.CookieBanner.is-visible {
    transform: translateY(0);
}

.CookieBanner__Text {
    font-size: .85rem;
    line-height: 1.55;
    flex: 1;
    min-width: 220px;
    margin: 0;
}

.CookieBanner__Text a {
    color: var(--brand-yellow);
}

.CookieBanner__Buttons {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.CookieBanner__Accept {
    background: var(--brand-yellow);
    color: var(--ink);
    font-weight: 700;
    font-size: .8rem;
    padding: .6rem 1.25rem;
    border: none;
    cursor: pointer;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.CookieBanner__Decline {
    background: transparent;
    color: rgba(255, 255, 255, .65);
    font-size: .8rem;
    padding: .55rem 1rem;
    border: 1px solid rgba(255, 255, 255, .3);
    cursor: pointer;
    white-space: nowrap;
    transition: border-color .2s, color .2s;
}

.CookieBanner__Decline:hover {
    border-color: rgba(255, 255, 255, .65);
    color: #fff;
}

/* === INNER PAGE HERO === */
.PageHero {
    background: var(--ink);
    color: var(--paper);
    padding: 5rem 0 4rem;
}

.PageHero__Kicker {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand-yellow);
    margin-bottom: .5rem;
}

.PageHero__Title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: .75rem;
    line-height: 1.1;
}

.PageHero__Sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .72);
    max-width: 560px;
    line-height: 1.6;
    margin: 0;
}

/* === CONTENT SECTION === */
.ContentSection {
    padding: 4.5rem 0;
}

.ContentSection--Alt {
    background: #f7f7f7;
}

.ContentSection__Title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.ContentSection__Body {
    font-size: 1rem;
    line-height: 1.8;
    color: #1a1a1a;
}

.ContentSection__Body p {
    margin-bottom: 1rem;
}

.ContentSection__Body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.75rem;
    margin-bottom: .5rem;
}

.ContentSection__Body ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.ContentSection__Body ul li {
    margin-bottom: .4rem;
}

/* === CONTACT FORM === */
.ContactSection {
    padding: 5rem 0;
}

.FormGroup {
    margin-bottom: 1.25rem;
}

.FormGroup label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: .35rem;
}

.FormGroup input,
.FormGroup textarea,
.FormGroup select {
    width: 100%;
    padding: .7rem 1rem;
    border: 2px solid #d0d0d0;
    font-size: .95rem;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
    background: #fff;
    border-radius: 0;
    -webkit-appearance: none;
}

.FormGroup input:focus,
.FormGroup textarea:focus,
.FormGroup select:focus {
    border-color: var(--ink);
}

.FormGroup textarea {
    resize: vertical;
    min-height: 130px;
}

.FormError {
    color: #c0392b;
    font-size: .85rem;
    margin-top: .5rem;
}

/* === WORKFLOW STEPS === */
.WorkflowStep {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.WorkflowStep__Number {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--brand-yellow);
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.WorkflowStep__Content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .35rem;
}

.WorkflowStep__Content p {
    font-size: .95rem;
    color: #444;
    line-height: 1.65;
    margin: 0;
}

/* === FAQ === */
.FaqItem {
    border-bottom: 1px solid #e0e0e0;
    padding: 1.25rem 0;
}

.FaqItem__Question {
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    margin: 0;
}

.FaqItem__Question i {
    transition: transform .3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.FaqItem.is-open .FaqItem__Question i {
    transform: rotate(180deg);
}

.FaqItem__Answer {
    font-size: .95rem;
    color: #444;
    line-height: 1.7;
    margin-top: .75rem;
    display: none;
}

.FaqItem.is-open .FaqItem__Answer {
    display: block;
}

/* === ABOUT TEAM CARD === */
.TeamCard {
    text-align: center;
    padding: 1.5rem;
}

.TeamCard__Img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 1rem;
    filter: grayscale(15%);
}

.TeamCard__Name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.TeamCard__Role {
    font-size: .85rem;
    color: #666;
}

/* === HIGHLIGHT STATS === */
.StatBand {
    background: var(--brand-yellow);
    padding: 3.5rem 0;
}

.StatItem {
    text-align: center;
    padding: 1rem;
}

.StatItem__Number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: .25rem;
}

.StatItem__Label {
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .04em;
    opacity: .7;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .InternalNavigation {
        display: none;
    }

    .StandardHeader__CtaBtn {
        display: none;
    }

    .HeaderContainer__ToggleNavigation {
        display: flex;
    }

    .HeroSection {
        min-height: 70vh;
    }
}

@media (max-width: 767px) {
    .ModuleWrap {
        padding: 3rem 0;
    }

    .ProductPromoLarge {
        padding: 3rem 0;
    }

    .Footer__Legal {
        flex-direction: column;
        align-items: flex-start;
    }

    .NewsletterBand__Form {
        flex-direction: column;
    }

    .NewsletterBand__Input {
        border-right: 2px solid var(--ink);
    }

    .CookieBanner {
        flex-direction: column;
        align-items: flex-start;
    }

    .CtaPanel__description {
        display: none;
    }

    .CtaPanel__descriptionMobile {
        display: block;
    }

    .WorkflowStep {
        flex-direction: column;
        gap: .75rem;
    }
}

/* production patches */
.Cta__ButtonPrimary {
    display: inline-flex !important
}

.ButtonCtaContainer--Desktop {
    margin: 4rem 0 !important
}

input:focus {
    outline: none !important
}