/*
Theme Name:   LivaPeople 2026
Theme URI:    http://supertusch.dk/theme/livapeople/
Description:  Basically Bootstrap 5 Child Theme created for LivaPeople 2026
Author:       Supertusch
Author URI:   http://supertusch.dk
Template:     basically-bootstrap-5
Version:      1.0.0
Domain Path: /languages/
Text Domain:  livapeople
*/



/* ---------------------------------- */
/*          VARIABLES                 */
/* ---------------------------------- */

/* === COLORS === */

:root {
  /* Global neutrals */
  --color-beige: #FFF5ED;
  --color-white: #FFFFFF;

  --color-heading: #3A2420;
  --color-body: #7A655E;

  /* Default brand theme */
  --brand-primary: #FF3333;
  --brand-dark: #993333;
  --brand-light: #FFE2D6;
  --brand-accent: #6B2424;

    /* Spacing */
    --padding-lg: 52px;
    --gap-sm: 8px;

    --radius: 40px; 
    --radius-full: 999px;

    --box-shadow: 0 10px 30px -16px rgba(153, 51, 51, 0.22);


}

/* Videre med Liva theme */
.theme-videre-med-liva {
  --brand-primary: #2F7ED0;
  --brand-dark: #1F4F7C;
  --brand-light: #C9DEF3;
  --brand-accent: #12385B;
}


/* === FONT  === */

:root {

    /* Headings */
    --font-h1: clamp(2rem, 1.5rem + 2vw, 2.5rem);          /* 32 → 40 */
    --font-h2: clamp(1.75rem, 1.4rem + 1.5vw, 2.25rem);    /* 28 → 36 */
    --font-h3: clamp(1.25rem, 1.05rem + .6vw, 1.375rem);   /* 20 → 22 */

    /* Feature text */
    --font-highlight: clamp(1.625rem, 1.2rem + 1.5vw, 2rem); /* 26 → 32 */
    --font-intro: clamp(1.125rem, 1rem + .8vw, 1.375rem);    /* 18 → 22 */

    /* Body */
    --font-body-lg: clamp(1rem, .95rem + .3vw, 1.125rem);    /* 16 → 18 */
    --font-body: 1rem;                                       /* 16 */
    --font-body-sm: .875rem;                                /* 14 */
}



/* ---------------------------------- */
/*             FONT                   */
/* ---------------------------------- */

body {
    font-family: 'Como', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading);
    font-weight: 800;
}

h1 {
    font-size: var(--font-h1);
}

h2 {
    font-size: var(--font-h2);
}

h3 {
    font-size: var(--font-h3);
}

p {
    color: var(--color-body);
    font-weight: 500;
    line-height: 1.6;
}

.text-highlight {
    color: var(--brand-primary);
    font-weight: 800;
}


/* ---------------------------------- */
/*             ELEMENTS               */
/* ---------------------------------- */

/* === BUTTONS === */

.buttons {
    display: flex; 
    flex-wrap: wrap;
    row-gap: 8px;
    grid-gap: 12px;
}

.btn {
    border-radius: var(--radius-full);
    padding: 16px 18px;
    font-weight: 800;
    line-height: normal;
}

.btn--primary {
    background-color: var(--brand-primary);
    color: var(--color-white);
    /* border: 2px solid var(--brand-primary); */
    transition: .4s ease;
}

.btn--primary:hover {
    background-color: var(--brand-dark);
    color: var(--color-white);
}

.btn--secondary {
    background-color: transparent;
    border: 2px solid var(--brand-light);
    color: var(--brand-dark);
    transition: .4s ease;
}

.btn--secondary:hover {
    background-color: var(--brand-light);
    color: var(--brand-dark);
}

/* === TAG === */

.tag {
    font-weight: 800;
    border-radius: var(--radius-full);
    display: flex; 
    gap: var(--gap-sm);
    background-color: var(--brand-light);
    color: var(--brand-dark);
    width: fit-content;
    padding: 10px 16px;
    font-size: 14px;
    line-height: normal;
    margin-bottom: 16px;
}

.tag p {
    margin: 0;
}

.tag-icon svg path {
    fill: var(--brand-primary);
}

/* ---------------------------------- */
/*             GENERAL                */
/* ---------------------------------- */

.bg-white {
    background-color: var(--color-white);
}

.bg-beige {
    background-color: var(--color-beige);
}

.centered {
    text-align: center;
}

.centered .tag {
    margin: auto;
}

.centered .buttons {
    justify-content: center;
}



/* ---------------------------------- */
/*             HERO                   */
/* ---------------------------------- */

.hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.hero__media,
.hero__image,
.hero__video,
.hero__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__image img,
.hero__video {
    object-fit: cover;
}


/* === DECORATIONS === */

.hero__decoration {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hero__decoration--top {
    top: 0;
    left: 0;
}

.hero__decoration--bottom {
    right: 0;
    bottom: 0;
}


/* === OVERLAY === */

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        94deg,
        rgba(58, 30, 26, 0.60) 0%,
        rgba(58, 30, 26, 0.30) 44%,
        rgba(58, 30, 26, 0.02) 74%
    );
    z-index: 2;
}


/* === CONTENT === */

.hero__content {
    position: relative;
    z-index: 3;
    min-height: 620px;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.hero__card {
    max-width: 580px;
    background: var(--color-white);
    border-radius: var(--radius);
    padding: var(--padding-lg);
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.hero__card * {
    margin: 0;
}

.hero__heading {
    margin: 0 0 18px;
}

.hero__intro {
    margin-bottom: 28px;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* === SPLIT HERO === */

.hero--split {
    padding-block: clamp(4rem, 8vw, 7.5rem);
    padding: 64px 0px;
    background-color: var(--color-white);
}

.hero--split .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}

.hero--split .hero__content {
    position: static;
    min-height: auto;
    padding: 0;
}

.hero--split .hero__text {
    max-width: 620px;
}

.hero--split .hero__heading {
    margin-block: 1.5rem;
}

.hero--split .hero__intro {
    max-width: 610px;
    margin-bottom: 2rem;
    font-size: var(--font-size-body-lg);
    line-height: var(--line-height-body);
}

.hero--split .hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 1.1 / 1;
    overflow: hidden;
    border-radius: clamp(1.5rem, 3vw, 2.5rem);
}

.hero--split .hero__image,
.hero--split .hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero--split .hero__image img,
.hero--split .hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero--split .hero__overlay {
    display: none;
}

.hero--split .hero__decoration {
    display: none;
}


@media (max-width: 991px) {

    .hero--split .hero__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero--split .hero__media {
        aspect-ratio: 4 / 3;
    }
}


@media (max-width: 575px) {

    .hero--split {
        padding-block: 3rem;
    }

    .hero--split .hero__media {
        aspect-ratio: 1 / 1;
        border-radius: 1.5rem;
    }

    .hero__card {
        padding: 30px; 
    }
}

/* ---------------------------------- */
/*             BLOCKS                  */
/* ---------------------------------- */

.content-block {
    padding: 84px 0px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.section-heading {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    margin-bottom: 40px;
}

.section-heading p {
    font-size: var(--font-intro);
}

.content-block p img {
    border-radius: 16px;
}

.content-block p a {
    color: var(--brand-primary);
    text-decoration: none;
}

.content-block hr {
    margin: 30px 0px;
    color: var(--brand-light);
    opacity: 1;
}


/* === REUSED ELEMENTS === */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}



.cards .card {
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    border: none;
    box-shadow: var(--box-shadow);
}

.cards .card .card__image {
    position: relative;
    aspect-ratio: 16 / 9;
}

.cards .card .card__image .tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.cards .card:not(.theme-none) .card__heading {
    color: var(--brand-primary);
}

.cards .card:not(.theme-none) .tag {
    background-color: var(--brand-primary);
}

.cards .card:not(.theme-none) .tag p {
    color: white;
}

.cards .card:not(.theme-none) .card__link {
    color: var(--brand-primary);
    font-weight: 800;
}

.cards .card .tag-icon {
    display: none;
}

.cards .card.card--image .card__content, .cards .card.card--icon {
    padding: 28px;
}

.cards .card.card--image .card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

 .cards .card.card--icon {
    row-gap: 20px;
 }

.cards .card .card__icon {
    width: fit-content; 
    border-radius: 10px;
    overflow: hidden;
    max-width: 60px;
}

.cards .card.card--image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.card--image {
    overflow: hidden;
}

.card--image .card__image {
    overflow: hidden;
}

.card--image .card__image img {
    display: block;
    width: 100%;
    transition: transform 0.35s ease;
}

.card__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--brand-primary);
    font-weight: 800;
    margin-top: auto;
    padding-top: 12px;
}

.card__text {
    color: var(--color-body);
}

.card__link-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
}

.card--image:hover .card__image img {
    transform: scale(1.04);
}

.card:hover .card__link-arrow {
    transform: translateX(5px);
}

/* === INTROTEKST === */

.content-block--introtekst p {
    font-size: var(--font-highlight);
    font-weight: 600;
    color: var(--color-heading);
}



/* === BILLEDE & TEKST === */

.image-text-block {
    padding: 34px;
    border-radius: var(--radius);
}

.image-text-block img {
    border-radius: var(--radius);
    width: 100%;
}

.image-text-block__content-inner {
    padding: 24px;
}

.image-text-block > .row {
    --bs-gutter-x: 44px;
}

.image-text-block .buttons {
    margin-top: 20px;
}


.content-block--billede_og_tekst.bg-white
+ .content-block--billede_og_tekst.bg-white:not(:has(.section-heading-wrapper)) {
    padding-top: 0px;
}

.content-block--billede_og_tekst.bg-white:has(
    + .content-block--billede_og_tekst.bg-white
) {
    padding-bottom: 40px;
}


.content-block--billede_og_tekst.bg-beige
+ .content-block--billede_og_tekst.bg-beige:not(:has(.section-heading-wrapper)) {
    padding-top: 0px;
}

.content-block--billede_og_tekst.bg-beige:has(
    + .content-block--billede_og_tekst.bg-beige
) {
    padding-bottom: 40px;
}


/* === FORMULAR & TEKST === */

.form-text-block__form {
    padding: 50px 40px; 
    border-radius: var(--radius);
    border: 1px solid var(--brand-light);
}

.form-text-block .buttons {
    margin-top: 16px;
}

.content-block--formular_og_tekst.bg-beige .form-text-block__form  {
    background-color: var(--color-white);
}

.form-text-block__form label, .form-text-block__form input {
    width: 100%; 
}

.form-text-block__form label {
    color: var(--color-heading);
    font-weight: 800;
}

.form-text-block__form input:not([type="submit"]) {
    padding: 16px 12px; 
    border: 1px solid var(--brand-light);
    border-radius: 10px;
    height: 100%;
}

.form-text-block__form select {
    width: 100%; 
    height: 100%;
    appearance: none;
    padding: 16px 12px;
    border: 1px solid var(--brand-light);
    border-radius: 10px;
}


.form-text-block__form input[type="submit"] {
    background-color: var(--brand-primary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    padding: 16px 18px;
    border: none;
    font-weight: 800;
    transition: .4s ease;
}

.form-text-block__form input[type="submit"]:hover {
    background-color: var(--brand-dark);
    color: var(--color-white);
}

.form-grid {
    display: flex;
    grid-gap: 10px;
}

/*** CF7 overrides ****/ 

.wpcf7-not-valid-tip {
    font-size: var(--font-body-sm);
}





/* === ACCORDION === */
.custom-accordion {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.custom-accordion .accordion-item {
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    background: transparent;
}

.custom-accordion .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 28px 40px;

    border: 0;
    border-radius: 14px;

    background-color: var(--brand-dark);
    color: #fff;

    box-shadow: none;

    font-weight: 700;
    font-size: var(--font-h4);
}

/* Remove Bootstrap's standard arrow */
.custom-accordion .accordion-button::after {
    display: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--brand-primary);
    color: #fff;

    box-shadow: none;

    border-radius: 14px 14px 0 0;
}

/* + / - icon */
.custom-accordion .accordion-icon {
    position: relative;

    flex: 0 0 28px;

    width: 28px;
    height: 28px;

    margin-left: 30px;
}

/* Horizontal line */
.custom-accordion .accordion-icon::before,
.custom-accordion .accordion-icon::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 24px;
    height: 5px;

    background-color: #fff;
    border-radius: 10px;

    transform: translate(-50%, -50%);
}

/* Vertical line = + */
.custom-accordion .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.2s ease;
}

/* Open = remove vertical line visually */
.custom-accordion .accordion-button:not(.collapsed) .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

/* Description area */
.custom-accordion .accordion-body {
    padding: 32px 40px;

    background-color: var(--brand-light);
}

.custom-accordion .accordion-body p {
    color: var(--color-heading);
}

.custom-accordion .accordion-body > *:last-child {
    margin-bottom: 0;
}


/* === TO KOLONNER === */

.two-columns__column--left {
    padding-right: 28px;
}

.two-columns__column--right {
    padding: 40px;
    border-radius: var(--radius);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* ===  STATISTIK KORT === */

.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 26px;
}



.stat-card {
    background-color: var(--color-beige);
    padding: 40px 28px;
    border-radius: var(--radius);
    border: 2px solid var(--brand-light);
    position: relative;
    overflow: hidden;
}

.content-block--statistik_kort.bg-beige .stat-card {
    background-color: var(--color-white);
}

.stat-card__bg {
    width: 176px;
    height: 176px;
    position: absolute;
    background-color: var(--brand-light);
    opacity: .4;
    border-radius: 50%;
    left: -64px;
    top: -50px;
}

.stat-card__content {
    position: relative;
    z-index: 2;
}

.stat-card__number {
    font-size: var(--font-h1);
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 12px;
}

.stat-card p {
    font-size: var(--font-body-lg);
}

.stat-card p strong {
    color: var(--color-heading);
}


/* ---------------------------------- */
/*     NEWS ARCHIVE                   */
/* ---------------------------------- */


.search-filter-results {
    padding: 84px 0px; 
}
/* ---------------------------------- */
/*     POST / ARTICLE / SINGLE        */
/* ---------------------------------- */

.article__hero {
    padding: 42px 0px;
}

.article__hero img {
    width: 100%;
    border-radius: var(--radius);
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center center;
}

.article__introduction {
    padding-bottom: 42px;
}

.introduction-inner {
    border-bottom: 1px solid var(--brand-light);
    padding-bottom: 42px;
}

.introduction-inner p {
    font-size: var(--font-body-lg);
}

.article__introduction p:last-child {
    margin-bottom: 0px;
}

.single .content-block {
    padding: 42px 0px;
}

.article__introduction + .content-blocks
    > .content-block:first-child.bg-white {
    padding-top: 0;
}




.site-header {
    position: relative;
    z-index: 100;
    background-color: var(--color-white);
}

.site-logo {
    max-width: 220px;
}

.site-header__main {
    position: relative;
    z-index: 2;
    background-color: var(--color-white);
}

.header-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 2rem;
}

.header-navigation__branding {
    flex: 0 0 auto;
}

.header-navigation__inner {
    display: flex; 
}

.main-navigation {
    margin-left: auto;
}

.main-navigation__top,
.sub-navigation__list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation__top {
    gap: 0.75rem;
}

.main-navigation__top-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    color: var(--color-body);
    font-size: var(--font-size-body-sm);
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.main-navigation__top-link:hover {
    color: var(--brand-dark);
}

.main-navigation__top-item.is-active .main-navigation__top-link {
    color: var(--brand-dark);
    background-color: var(--brand-light);
}

.desktop-sub-navigation {
    border-top: 1px solid rgba(58, 36, 32, 0.08);
    background-color: var(--color-beige);
}

.desktop-sub-navigation .sub-navigation__list {
    min-height: 48px;
    gap: 2rem;
}

.sub-navigation__link {
    display: inline-flex;
    padding-block: 0.8rem;
    color: var(--color-heading);
    font-size: var(--font-size-body-sm);
    line-height: 1.2;
    text-decoration: none;
}

.sub-navigation__link:hover,
.sub-navigation__link.is-active {
    color: var(--brand-primary);
}

.mobile-sub-navigation,
.menu-toggle {
    display: none;
}

/* Mobile */
@media (max-width: 991px) {
    .header-navigation {
        min-height: 68px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        margin-left: auto;
        padding: 10px;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--color-heading);
        transition:
            transform 0.2s ease,
            opacity 0.2s ease;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        max-height: calc(100vh - 68px);
        overflow-y: auto;
        margin: 0;
        padding: 1.5rem;
        background-color: var(--color-white);
        border-top: 1px solid rgba(58, 36, 32, 0.08);
        box-shadow: 0 12px 30px rgba(58, 36, 32, 0.08);
    }

    .main-navigation.is-open {
        display: block;
    }

    .main-navigation__top {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .main-navigation__top-link {
        justify-content: flex-start;
        width: 100%;
        padding: 1rem;
        border-radius: 12px;
        font-size: var(--font-size-body);
    }

    .mobile-sub-navigation {
        display: block;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(58, 36, 32, 0.08);
    }

    .mobile-sub-navigation .sub-navigation__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .mobile-sub-navigation .sub-navigation__link {
        width: 100%;
        padding: 0.85rem 1rem;
    }

    .desktop-sub-navigation {
        display: none;
    }
}




/* ---------------------------------- */
/*               FOOTER               */
/* ---------------------------------- */


footer {
    background-color: var(--brand-dark);

}

footer .footer-cols {
    display: flex;
    grid-gap: 40px;
}

footer .footer-logo {
    margin-bottom: 24px;
}

footer .footer-col h3 {
    font-size: var(--font-body-lg);
}

.social-col .social {
    display: flex;
    align-items: center;
    height: fit-content;
}

.footer-col h3 {
    margin-bottom: 10px;
}

footer .contact-info {
    display: flex; 
    flex-direction: row; 
    row-gap: 6px;
}

footer #menu-footer-menu {
    padding: 0; 
    margin: 0; 
    list-style: none;
    display: flex; 
    flex-direction: column; 
    row-gap: 10px;
}

footer #menu-footer-menu li a {
    text-decoration: none; 
    font-weight: 600;
}

footer .footer-cols .footer-col {
    flex: 1;
}

footer .footer-col.social-col {
    display: flex; 
    justify-content: flex-end;
}

footer * {
    color: white;
}

.bottom-footer p {
    margin: 0;
}


footer .contact-banner .contact-wrapper {
    padding: 120px 0px; 
    border-bottom: 1px solid var(--white-20, rgba(255, 255, 255, 0.20));
}

@media (min-width: 991px) {
    footer .contact-banner .contact-wrapper {
        display: flex; 
        justify-content: space-between;
    }
}

footer .contact-banner p.contact-banner-text, footer .contact-banner h2 {
    font-size: var(--font-highlight);
    margin: 0;
}

footer .contact-banner a.contact-banner-link {
    font-size: var(--font-h2); 
    text-decoration: none;
    font-weight: 900;
}

footer .bottom-footer {
    background-color: var(--brand-accent);
    padding: 24px 0px;
}

footer .main-footer {
    padding: 90px 0px 50px 0px;
}

footer .contact-info {
    display: flex; 
    flex-direction: column;
}

footer .contact-info span {
    font-weight: 800;
}

footer .contact-info span a, footer .contact-info span span {
    font-weight: 500;
}





/* ---------------------------------- */
/*               BANNER               */
/* ---------------------------------- */


/* Color options */

.banner.color-chestnut * {
    color: var(--dark-red);
}

.banner.color-porcelain {
    color: var(--beige);
}

.banner.color-black {
    color: black;
}

.banner.color-white {
    color: white;
}


/* Text placement */

.banner.text-left .banner-grid {
    justify-content: flex-start;
    text-align: left;
}

.banner.text-centered .banner-grid {
    justify-content: center;
    text-align: center;
}

@media (min-width: 767px) {
    .banner.text-right .banner-grid {
        justify-content: flex-end;
        text-align: right;
    }
}


/* Overlay */

.overlay {
    background: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
}

.overlay.mobile-only {
    display: none;
}

@media (max-width: 767px) {
    .overlay.mobile-only {
        display: block;
    }
}


/* Banner */

.banner {
    padding: 30px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.banner h2 {
    color: #F6EEAE;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 1.2px;
}

.banner p {
    color: white;
    font-weight: 700;
    letter-spacing: 0.7px;
    font-size: 14px;
    max-width: 700px;
    line-height: 22px;
}

.banner .hashtag {
    color: #F6EEAE;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1.35px;
}

.banner .banner-heading-wrapper p {
    font-size: 14px;
    font-weight: 500;
}

.banner p,
.banner h2 {
    margin: 0;
}


/* Layout */

.banner-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.banner-heading-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 10px;
}

.banner .action-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    justify-content: flex-end;
}


/* Button */

.banner .button.light-button {
    background-color: #FFF5ED;
    color: #F35417;
    padding: 8px 16px;
    width: fit-content;
    font-size: 14px;
}


/* Tablet / mobile */

@media (max-width: 991px) {

    .banner {
        padding: 20px 0;
    }

    .banner .banner-heading-wrapper p {
        font-size: 12px;
    }

    .banner .action-column {
        flex-direction: row;
        align-items: center;
    }

    .banner-column.action-column {
        margin-top: 5px;
    }

    .banner h2,
    .banner .hashtag {
        font-size: 18px;
    }

    .banner .button.light-button {
        padding: 5px 12px;
    }
}