/* ==========================================
   CAMPAIGN PAGE - BASE
   Figma: "Template - Final Desktop" (node 59:26)
   Design tokens:
     Red:        #e52521
     Dark:       #333
     Beige:      #F5F0E9
     Section dk: #4b4b4b
     Card bg:    #333 (border white, r10)
     Content bg: white (r10)
     Gradient:   #d9d9d9 → #f5f5f5
     Footer:     #b60e0e
     Heading:    Atrament, 400
     Body:       Fira Sans, 300/400/700
   ========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body.campaign-page {
    margin: 0;
    padding: 0;
    font-family: "Fira Sans", sans-serif;
    font-weight: 300;
    line-height: 1.5;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.campaign {
    overflow: hidden;
    position: relative;
}

/* ==========================================
   PAGE-LEVEL PARALLAX BACKGROUND
   Fixed behind all sections; transparent
   sections will reveal it.
   ========================================== */
/*.campaign-parallax-bg {*/
/*    position: fixed;*/
/*    inset: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    z-index: -1;*/
/*    will-change: transform;*/
/*}*/
.campaign-parallax-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    z-index: -1;
    will-change: transform;
}

/* Page Logo — centered above all sections */
.campaign-page-logo {
    display: flex;
    justify-content: center;
    padding: 2rem 1.5rem 1rem;
    position: relative;
    z-index: 2;
}

.campaign-page-logo img {
    max-width: 160px;
    height: auto;
}

@media (min-width: 1024px) {
    .campaign-page-logo img {
        max-width: 220px;
    }
}

@media (min-width: 1200px) {
    .campaign-page-logo {
        padding: 3rem 1.5rem 1.5rem;
    }

    .campaign-page-logo img {
        max-width: 280px;
    }
}

img {
    max-width: 100%;
    height: auto;
}

.campaign-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0;
}

@media (min-width: 1200px) {
    .campaign-container {
        max-width: 1500px;
        padding: 0 1.5rem;
    }
}

/* ==========================================
   TYPOGRAPHY - Atrament headings
   ========================================== */
.campaign h1,
.campaign h2,
.campaign h3 {
    font-family: "atrament-web", "Atrament", sans-serif;
    font-weight: 400;
    text-transform: uppercase;

}

/* ==========================================
   BUTTONS
   ========================================== */
.campaign-btn {
    display: inline-block;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Fira Sans", sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    border-radius: 25px;
    white-space: nowrap;
}

.campaign-btn--primary {
    background-color: #e52521;
    color: #F5F0E9;
    border-color: #e52521;
}

.campaign-btn--primary:hover {
    background-color: #c41f1c;
    border-color: #c41f1c;
}

.campaign-btn--secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    border-radius: 25px;
}

.campaign-btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.campaign-btn--dark {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.campaign-btn--dark:hover {
    background-color: #222;
    border-color: #222;
}

.campaign-btn--light {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.campaign-btn--light:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
}

/* ==========================================
   SECTION BACKGROUND SYSTEM
   ========================================== */
.has-bg-image {
    position: relative;
}

.has-bg-image > *:not(.campaign-section-overlay) {
    position: relative;
    z-index: 1;
}

.campaign-text--light,
.campaign-text--light h1,
.campaign-text--light h2,
.campaign-text--light h3,
.campaign-text--light h4,
.campaign-text--light h5,
.campaign-text--light p,
.campaign-text--light li,
.campaign-text--light a:not(.campaign-btn) {
    color: #fff;
}

.campaign-text--dark,
.campaign-text--dark h1,
.campaign-text--dark h2,
.campaign-text--dark h3,
.campaign-text--dark h4,
.campaign-text--dark h5,
.campaign-text--dark p,
.campaign-text--dark li,
.campaign-text--dark a:not(.campaign-btn) {
    color: #333;
}

/* ==========================================
   HERO BANNER
   Split layout: title left, subtitle right
   ========================================== */
.campaign-hero-banner {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 3rem 1rem 0;
    overflow: hidden;
}

.campaign-hero-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.campaign-hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
    display: none;
}

.campaign-hero-banner__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

.campaign-hero-banner__title {
    font-family: "atrament-web", "Atrament", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

.campaign-hero-banner__subtitle {
    font-family: "Fira Sans", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.35;
    margin: 0 0 1.5rem;
}

.campaign-hero-banner__description {
    font-family: "Fira Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 0 1.5rem;
    opacity: 0.9;
}

.campaign-hero-banner__left,
.campaign-hero-banner__right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.campaign-hero-banner__buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.campaign-hero-banner__buttons .campaign-btn {
    font-size: 14px;
    padding: 8px 20px;
}

@media (min-width: 1024px) {
    .campaign-hero-banner {
        min-height: 350px;
        padding: 4rem 1.5rem;
    }

    .campaign-hero-banner__content {
        gap: 2rem;
    }

    .campaign-hero-banner__title {
        font-size: 3.5rem;
    }

    .campaign-hero-banner__subtitle {
        font-size: 1.25rem;
        margin: 0 0 2rem;
    }

    .campaign-hero-banner__description {
        font-size: 1rem;
    }

    .campaign-hero-banner__buttons .campaign-btn {
        font-size: 16px;
        padding: 10px 30px;
    }
}

@media (min-width: 1200px) {
    .campaign-hero-banner {
        min-height: 450px;
        padding: 6rem 1.5rem;
    }

    .campaign-hero-banner__content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .campaign-hero-banner__left {
        grid-column: 1;
        width: 80%;
        align-items: flex-start;
        text-align: left;
    }

    .campaign-hero-banner__right {
        grid-column: 2;
        align-items: flex-start;
        text-align: left;
    }

    .campaign-hero-banner__buttons {
        justify-content: flex-start;
    }

    .campaign-hero-banner__title {
        font-size: 72px;
        line-height: 1;
    }

    .campaign-hero-banner__subtitle {
        font-size: 36px;
        line-height: 48px;
        font-weight: 300;
        margin: 0 0 4rem;
    }

    .campaign-hero-banner__description {
        font-size: 24px;
        line-height: 36px;
        font-weight: 300;
    }
}

/* ==========================================
   PRODUCT FEATURE
   Horizontal card: #333 bg, white border, r10
   ========================================== */
.campaign-product-feature {
    padding: 1.5rem 0;
}

.campaign-product-feature--dark {
    color: #fff;
}

.campaign-product-feature--light {
    color: #333;
}

.campaign-product-feature__grid {
    display: grid;
    /*gap: 2rem;*/
    gap: 0rem;
    background-color: #333;
    border: 1px solid #fff;
    border-radius: 10px;
    overflow: hidden;

    /*padding: 1.5rem;*/
}

.campaign-product-feature__image-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: white;
    border-radius: 10px;
}

.campaign-product-feature__main-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.campaign-product-feature__gallery {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.campaign-product-feature__thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
    border-radius: 4px;
}

.campaign-product-feature__thumb:hover {
    border-color: #e52521;
}

.campaign-product-feature__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    padding: 1.5rem;
    padding-bottom: 0;
}

.campaign-product-feature__title {
    font-family: "atrament-web", "Atrament", sans-serif;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 0.25rem;
    color: #fff;
}

.campaign-product-feature__part-no {
    font-size: 0.85rem;
    opacity: 0.6;
    margin: 0 0 1rem;
    color: #fff;
}

.campaign-product-feature__description {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 1rem;
    color: #fff;
}

.campaign-product-feature__hr{
    width: 100%;
    height: 1px;
    border: 0;
    border-top: 1px solid #fff;
    margin: 0 0 1.5rem
}

.campaign-product-feature__features {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
    color: #fff;
}

.campaign-product-feature__features strong,
.campaign-product-feature__features b {
    font-weight: 700;
    color: #e52521;
}

.campaign-product-feature__features p {
    margin: 0 0 0.5rem;
}

.campaign-product-feature__features ul {
    padding-left: 1.25rem;
    margin: 0;
}

.campaign-product-feature__features li {
    margin-bottom: 0.35rem;
    color: #fff;
}

.campaign-product-feature__price {
    font-family: "Fira Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.campaign-product-feature__vat {
    font-size: 0.8rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.65);
}

.campaign-product-feature__buttons {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding: 0 1.5rem 1.5rem;
}

.campaign-product-feature__buttons .campaign-btn {
    font-size: 13px;
    /*padding: 8px 16px;*/
    /*padding: 8px 16px;*/
}

@media (min-width: 768px) {
    .campaign-product-feature__grid {
        padding: 1.5rem;
        gap: 2rem;
    }
    .campaign-product-feature__info{
        padding: 0rem;
    }
    .campaign-product-feature__info{
        padding: 0rem;
    }
    .campaign-product-feature__buttons .campaign-btn {
        /*font-size: 13px;*/
        padding: 8px 16px;
        /*padding: 8px 16px;*/
    }
}

@media (min-width: 1024px) {
    .campaign-product-feature {
        padding: 2rem 0;
    }

    .campaign-product-feature__grid {
        grid-template-columns: 1fr 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .campaign-product-feature__main-image {
        width: 100%;
        max-width: 100%;
    }

    .campaign-product-feature__title {
        font-size: 28px;
    }

    .campaign-product-feature__description {
        font-size: 0.95rem;
        margin: 0 0 1.5rem;
    }

    .campaign-product-feature__buttons {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }

    .campaign-product-feature__buttons .campaign-btn {
        font-size: 16px;
        padding: 10px 30px;
    }
}

@media (min-width: 1200px) {
    .campaign-product-feature__grid {
        grid-template-columns: auto 1fr minmax(0, 15%);
        align-items: start;
        padding: 3rem;
        gap: 4rem;
    }

    .campaign-product-feature__main-image {
        width: 400px;
    }

    .campaign-product-feature__title {
        font-size: 36px;
    }

    .campaign-product-feature__buttons {
        grid-column: auto;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        margin-top: 0;
    }

    .campaign-product-feature__buttons .campaign-btn {
        width: 100%;
    }
}

/* ==========================================
   FULL WIDTH BANNER
   Red bg #e52521, centred text
   ========================================== */
.campaign-full-width-banner {
    padding: 2.5rem 1rem;
    text-align: center;
    background-color: #e52521;
    color: #fff;
}

.campaign-full-width-banner__text {
    font-family: "Fira Sans", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    max-width: 1040px;
    margin: 0 auto;
    color: #fff;
}

.campaign-full-width-banner__btn-wrap {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.campaign-full-width-banner__btn-wrap .campaign-btn {
    font-size: 14px;
    padding: 8px 20px;
}

.campaign-full-width-banner .campaign-btn--primary {
    background-color: #fff;
    color: #e52521;
    border-color: #fff;
}

.campaign-full-width-banner .campaign-btn--primary:hover {
    background-color: #F5F0E9;
}

.campaign-full-width-banner .campaign-btn--secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

@media (min-width: 1024px) {
    .campaign-full-width-banner {
        padding: 3.5rem 1.5rem;
    }

    .campaign-full-width-banner__text {
        font-size: 1.5rem;
        line-height: 1.5;
    }

    .campaign-full-width-banner__btn-wrap .campaign-btn {
        font-size: 16px;
        padding: 10px 30px;
    }
}

@media (min-width: 1200px) {
    .campaign-full-width-banner {
        padding: 4rem 2rem;
    }

    .campaign-full-width-banner__text {
        font-size: 36px;
        line-height: 48px;
        font-weight: 300;
    }
}

/* ==========================================
   PRODUCTS SHOWCASE
   Dark bg #4b4b4b, 3-column grid
   ========================================== */
.campaign-products-showcase {
    padding: 2.5rem 0;
    background-color: #4b4b4b;
    text-align: center;
    color: #fff;
}

.campaign-products-showcase__title {
    font-family: "atrament-web", "Atrament", sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
    color: #fff;
}

.campaign-products-showcase__subtitle {
    font-family: "Fira Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: #fff;
    opacity: 0.9;
    padding: 0 1rem;
}

/* Slider wrapper — arrows + track */
.campaign-products-showcase__slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.campaign-products-showcase__slider {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.campaign-products-showcase__track {
    display: flex;
    transition: transform 0.4s ease;
}

.campaign-products-showcase__slide {
    flex: 0 0 auto;
    min-width: 0;
    padding: 0 0.75rem;
    box-sizing: border-box;
}

/* Arrows */
.campaign-products-showcase__arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #E52521;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, box-shadow 0.2s;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.campaign-products-showcase__arrow:hover {
    background: #f2f2f2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.campaign-products-showcase__arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

/* Progress bar */
.campaign-products-showcase__progress {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    margin: 2rem auto 0;
    cursor: pointer;
    touch-action: none;
}

.campaign-products-showcase__progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #E52521;
    border-radius: 2px;
    transition: left 0.4s ease, width 0.4s ease;
}

.campaign-products-showcase__progress-handle {
    display: none;
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid #E52521;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: left 0.4s ease;
    cursor: grab;
    z-index: 1;
}

.campaign-products-showcase__progress-handle:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Card */
.campaign-products-showcase__card {
    background: transparent;
    text-align: center;
    transition: transform 0.2s;
}

.campaign-products-showcase__card--linked {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.campaign-products-showcase__card:hover {
    transform: translateY(-4px);
}

.campaign-products-showcase__card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.campaign-products-showcase__card-title {
    display: none;
    font-family: "Fira Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: #fff;
}

@media (min-width: 1024px) {
    .campaign-products-showcase {
        padding: 3rem 0;
    }

    .campaign-products-showcase__title {
        font-size: 3rem;
    }

    .campaign-products-showcase__subtitle {
        font-size: 1.1rem;
        margin: 0 auto 2rem;
    }

    .campaign-products-showcase__arrow {
        width: 44px;
        height: 44px;
    }
}

@media (min-width: 1200px) {
    .campaign-products-showcase {
        padding: 4rem 0;
    }

    .campaign-products-showcase__title {
        font-size: 72px;
        line-height: 1;
    }

    .campaign-products-showcase__subtitle {
        font-size: 24px;
        line-height: 36px;
        margin: 0 auto 2.5rem;
    }

    .campaign-products-showcase__arrow {
        width: 48px;
        height: 48px;
    }
}

/* ==========================================
   PRODUCTS GRID (static, no slider)
   ========================================== */
.campaign-products-grid {
    padding: 2.5rem 0;
    text-align: center;
    color: #fff;
}

.campaign-products-grid__title {
    font-family: "atrament-web", "Atrament", sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
    color: #fff;
}

.campaign-products-grid__subtitle {
    font-family: "Fira Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: #fff;
    opacity: 0.9;
    padding: 0 1rem;
}

.campaign-products-grid__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.campaign-products-grid__card {
    background: transparent;
    text-align: center;
    transition: transform 0.2s;
}

.campaign-products-grid__card--linked {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.campaign-products-grid__card:hover {
    transform: translateY(-4px);
}

.campaign-products-grid__card-image {
    /*width: 100%;*/
    height: auto;
    aspect-ratio: unset;
    /*object-fit: cover;*/
    border-radius: 10px;
    margin-bottom: 1rem;
}

.campaign-products-grid__card-title {
    display: none;
    font-family: "Fira Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: #fff;
}

@media (min-width: 1024px) {
    .campaign-products-grid {
        padding: 3rem 0;
    }

    .campaign-products-grid__title {
        font-size: 3rem;
    }

    .campaign-products-grid__subtitle {
        font-size: 1.1rem;
        margin: 0 auto 2rem;
    }

    .campaign-products-grid__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .campaign-products-grid {
        padding: 4rem 0;
    }

    .campaign-products-grid__title {
        font-size: 72px;
        line-height: 1;
    }

    .campaign-products-grid__subtitle {
        font-size: 24px;
        line-height: 36px;
        margin: 0 auto 2.5rem;
    }

    .campaign-products-grid__grid {
        gap: 2rem;
    }
}

/* Desktop: 2, 3, or 4 columns based on admin choice */
@media (min-width: 1200px) {
    .campaign-products-grid--cols-2 .campaign-products-grid__grid {
        grid-template-columns: repeat(2, 1fr);
        /*max-width: 700px;*/
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .campaign-products-grid--cols-3 .campaign-products-grid__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .campaign-products-grid--cols-4 .campaign-products-grid__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================
   TWO COLUMN CONTENT
   White card bg, r10
   ========================================== */
.campaign-two-col {
    padding: 2rem 0;
}

.campaign-two-col > .campaign-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    overflow: hidden;
}

/* Section header — centered */
.campaign-two-col__header {
    text-align: center;
    margin-bottom: 2rem;
}

.campaign-two-col__heading {
    font-family: "atrament-web", "Atrament", sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
    color: #333;
}

.campaign-two-col__description {
    font-family: "Fira Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Rows */
.campaign-two-col__rows {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.campaign-two-col__row {
    display: grid;
    gap: 1.25rem;
    align-items: center;
}

.campaign-two-col__image-wrap {
    overflow: hidden;
    border-radius: 6px;
}

.campaign-two-col__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

.campaign-two-col__text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.campaign-two-col__title {
    font-family: "atrament-web", "Atrament", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    color: #333;
}

.campaign-two-col__body {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: #333;
}

.campaign-two-col__body p {
    margin: 0 0 1rem;
}

.campaign-two-col__body p:last-child {
    margin-bottom: 0;
}

.campaign-two-col__text .campaign-btn {
    align-self: flex-start;
    margin-top: 0.5rem;
    font-size: 13px;
    padding: 8px 18px;
}

.campaign-two-col__separator{
    border: 0;
    border-top: 1px solid #D9D9D9;
    background: #D9D9D9;
    width: 100%;
    height: 1px;
}

@media (min-width: 1024px) {
    .campaign-two-col {
        padding: 3rem 0;
    }

    .campaign-two-col > .campaign-container {
        padding: 3rem 2.5rem;
    }

    .campaign-two-col__header {
        margin-bottom: 2.5rem;
    }

    .campaign-two-col__heading {
        font-size: 3rem;
    }

    .campaign-two-col__description {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .campaign-two-col__rows {
        gap: 2.5rem;
    }

    .campaign-two-col__title {
        font-size: 1.75rem;
    }

    .campaign-two-col__body {
        font-size: 1rem;
    }

    .campaign-two-col__text .campaign-btn {
        font-size: 16px;
        padding: 10px 30px;
    }
}

@media (min-width: 1200px) {
    .campaign-two-col {
        padding: 4rem 0;
    }

    .campaign-two-col > .campaign-container {
        padding: 5rem;
    }

    .campaign-two-col__header {
        margin-bottom: 3rem;
    }

    .campaign-two-col__heading {
        font-size: 72px;
    }

    .campaign-two-col__description {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .campaign-two-col__rows {
        gap: 3rem;
    }

    .campaign-two-col__row {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    /* Reversed: image on right, text on left */
    .campaign-two-col__row--reversed {
        direction: rtl;
    }

    .campaign-two-col__row--reversed > * {
        direction: ltr;
    }

    .campaign-two-col__title {
        font-size: 36px;
    }

    .campaign-two-col__separator {
        /*display: none;*/
    }
}

/* ==========================================
   BRAND HERO
   ========================================== */
.campaign-brand-hero {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.campaign-brand-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.campaign-brand-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.campaign-brand-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 1.5rem;
}

.campaign-brand-hero__logo {
    max-width: 180px;
    height: auto;
}

@media (min-width: 1024px) {
    .campaign-brand-hero {
        min-height: 280px;
    }

    .campaign-brand-hero__logo {
        max-width: 300px;
    }
}

@media (min-width: 1200px) {
    .campaign-brand-hero {
        min-height: 360px;
    }

    .campaign-brand-hero__logo {
        max-width: 400px;
    }
}

/* ==========================================
   TITLE & TEXT BLOCK
   Gradient bg on light, Atrament heading
   ========================================== */
.campaign-title-text {
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.campaign-title-text--has-bg {
    color: #fff;
}

.campaign-title-text__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.campaign-title-text__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}



.campaign-title-text__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.campaign-title-text__logo {
    width: 200px;
    height: auto;
    aspect-ratio: 181/55;
    margin: 0 auto 1rem;
    display: block;
}

.campaign-title-text__title {
    font-family: "atrament-web", "Atrament", sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    color: #FFFFFF;
}

.campaign-title-text__subtitle {
    font-family: "Fira Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    max-width: 90%;
    margin: 0 auto;
    opacity: 0.8;
}

/* Title & Subtitle variant: stronger brand-red badge so subtitle stands out */
.campaign-title-subtitle .campaign-title-text__subtitle {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.55rem 1.15rem;
    border: 2px solid #e52521;
    border-radius: 999px;
    /*padding: 0.55rem 1.15rem;*/
    /*border: 2px solid #e52521;*/
    /*background: linear-gradient(180deg, #e52521 0%, #b60e0e 100%);*/
    background: rgba(229, 37, 33, 0.15);
    font-weight: 700;
    /*background: #000000;*/
    color: #ffffff !important;
    /*box-shadow: 0 8px 24px rgba(229, 37, 33, 0.35);*/
    /*font-weight: 800;*/
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
    opacity: 1;
}

.campaign-title-text__body {
    font-family: "Fira Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 890px;
    margin: 0 auto;
}

.campaign-title-text__body p {
    color: inherit;
    margin: 0 0 1rem;
}

@media (min-width: 1024px) {
    .campaign-title-text {
        padding: 3rem 0;
    }

    .campaign-title-text__logo {
        width: 280px;
        margin: 0 auto 1.25rem;
    }

    .campaign-title-text__title {
        font-size: 3rem;
    }

    .campaign-title-text__subtitle {
        font-size: 1rem;
        max-width: 70%;
    }

    .campaign-title-subtitle .campaign-title-text__subtitle {
        font-size: 1.2rem;
        max-width: none;
    }

    .campaign-title-text__body {
        font-size: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .campaign-title-text {
        padding: 4rem 0;
    }

    .campaign-title-text__logo {
        width: 362px;
        margin: 0 auto 1.5rem;
    }

    .campaign-title-text__title {
        font-size: 72px;
        line-height: 1;
    }

    .campaign-title-text__subtitle {
        font-size: 1rem;
        max-width: 60%;
    }

    .campaign-title-subtitle .campaign-title-text__subtitle {
        font-size: 1.35rem;
    }
}

/* Bottom image */
.campaign-title-text__bottom-image {
    margin-top: 1.5rem;
    width: 100%;
}

.campaign-title-text__bottom-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: opacity 0.2s ease;
}

.campaign-title-text__bottom-image a:hover img {
    opacity: 0.85;
}

/* ==========================================
   CARD GRID
   Gradient bg #d9d9d9 → #f5f5f5
   ========================================== */
.campaign-card-grid {
    padding: 2.5rem 0;
    background: linear-gradient(to top, #d9d9d9, #f5f5f5);
    color: #333;
}

.campaign-card-grid__heading {
    font-family: "atrament-web", "Atrament", sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 0.75rem;
    color: #333;
}

.campaign-card-grid__description {
    font-family: "Fira Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 890px;
    margin: 0 auto 1.5rem;
    text-align: center;
    color: #333;
}

/* Mobile/tablet: horizontal scroll slider */
.campaign-card-grid__items {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: none;
    cursor: grab;
}

.campaign-card-grid__items:active {
    cursor: grabbing;
}

.campaign-card-grid__items::-webkit-scrollbar {
    display: none;
}

.campaign-card-grid__card {
    background-color: #fff;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.2s;
    flex: 0 0 80%;
    min-width: 0;
    scroll-snap-align: start;
}

.campaign-card-grid__card:last-child {
    margin-right: 5%;
}

.campaign-card-grid__card:hover {
    transform: translateY(-4px);
}

.campaign-card-grid__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.campaign-card-grid__card-body {
    padding: 1rem;
}

.campaign-card-grid__card-title {
    font-family: "atrament-web", "Atrament", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    color: #333;
}

.campaign-card-grid__card-description {
    font-family: "Fira Sans", sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 0.75rem;
    color: #555;
}

@media (min-width: 1024px) {
    .campaign-card-grid {
        padding: 3rem 0;
    }

    .campaign-card-grid__heading {
        font-size: 3rem;
    }

    .campaign-card-grid__description {
        font-size: 1rem;
        margin: 0 auto 2rem;
    }

    .campaign-card-grid__card {
        flex: 0 0 45%;
    }

    .campaign-card-grid__card-image {
        height: 280px;
    }

    .campaign-card-grid__card-body {
        padding: 1.25rem;
    }

    .campaign-card-grid__card-title {
        font-size: 1.8rem;
    }

    .campaign-card-grid__card-description {
        font-size: 0.9rem;
    }
}

@media (min-width: 1200px) {
    .campaign-card-grid {
        padding: 4rem 0;
    }

    .campaign-card-grid__heading {
        font-size: 72px;
        line-height: 1;
    }

    .campaign-card-grid__description {
        font-size: 1rem;
        margin: 0 auto 2.5rem;
    }

    /* Switch back to grid on desktop */
    .campaign-card-grid__items {
        display: grid;
        overflow: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
        cursor: default;
    }

    .campaign-card-grid__items:active {
        cursor: default;
    }

    .campaign-card-grid__card {
        flex: none;
        min-width: 0;
    }

    .campaign-card-grid__card:last-child {
        margin-right: 0;
    }

    .campaign-card-grid__items--2col {
        grid-template-columns: repeat(2, 1fr);
    }

    .campaign-card-grid__items--3col {
        grid-template-columns: repeat(3, 1fr);
    }

    .campaign-card-grid__items--4col {
        grid-template-columns: repeat(4, 1fr);
    }

    .campaign-card-grid__card-image {
        height: 340px;
    }

    .campaign-card-grid__card-body {
        padding: 1.5rem;
    }

    .campaign-card-grid__card-title {
        font-size: 2.2rem;
    }
}

/* ==========================================
   PRODUCT CARD GRID
   Same gradient bg
   ========================================== */
.campaign-product-card-grid {
    padding: 0 0 2.5rem 0;
    background: linear-gradient(to top, #d9d9d9, #f5f5f5);
    color: #333;
}

.campaign-product-card-grid__heading {
    font-family: "atrament-web", "Atrament", sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
    text-align: center;
    color: #333;
}

.campaign-product-card-grid__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.campaign-product-card {
    background-color: #fff;
    overflow: hidden;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.2s;
    padding: 1rem 0.75rem;
}

.campaign-product-card:hover {
    transform: translateY(-4px);
}

.campaign-product-card__image {
    width: 100%;
    height: 160px;
    /*object-fit: cover;*/
    object-fit: contain;
    background: #FFF;
    border-radius: 10px 10px 0 0;
    margin: 1rem 0;
}

.campaign-product-card__body {
    padding: 0.75rem;
}

.campaign-product-card__title {
    font-family: "atrament-web", "Atrament", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 0.25rem;
    min-height: 2.5em;
    color: #333;
    line-height: normal;
}

.campaign-product-card__subtitle {
    font-family: "Fira Sans", sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #666;
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.campaign-product-card__price {
    font-family: "Fira Sans", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.4rem;
}

.campaign-product-card__vat {
    font-size: 0.75rem;
    font-weight: 400;
    font-style: italic;
    color: #888;
}

.campaign-product-card__body .campaign-btn {
    padding: 8px 20px;
    font-size: 13px;
}

/* Slider mode */
.campaign-product-card-grid__slider-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.campaign-product-card-grid__slider {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.campaign-product-card-grid__track {
    display: flex;
    transition: transform 0.4s ease;
    align-items: stretch;
    gap: 15px;
}

.campaign-product-card-grid__slide {
    flex: 0 0 auto;
    box-sizing: border-box;
}

.campaign-product-card-grid__slide .campaign-product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.campaign-product-card-grid__slide .campaign-product-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.campaign-product-card-grid__arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #e52521;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.campaign-product-card-grid__arrow:hover {
    background: #f2f2f2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.campaign-product-card-grid__arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

.campaign-product-card-grid__progress {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 4px;
    background: rgba(0,0,0,0.1);
    border-radius: 2px;
    margin: 1.5rem auto 0;
    cursor: pointer;
}

.campaign-product-card-grid__progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #e52521;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.campaign-product-card-grid__progress-handle {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid #e52521;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: left 0.4s ease;
    cursor: grab;
}

@media (min-width: 1024px) {
    .campaign-product-card-grid {
        padding: 0 0 3rem 0;
    }

    .campaign-product-card-grid__heading {
        font-size: 3rem;
    }

    .campaign-product-card-grid__items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .campaign-product-card {
        padding: 1.5rem 1rem;
    }

    .campaign-product-card__image {
        height: 220px;
        margin: 1.5rem 0;
    }

    .campaign-product-card__body {
        padding: 1rem;
    }

    .campaign-product-card__title {
        font-size: 1.6rem;
    }

    .campaign-product-card__price {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .campaign-product-card__body .campaign-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (min-width: 1200px) {
    .campaign-product-card-grid {
        padding: 0 0 4rem 0;
    }

    .campaign-product-card-grid__heading {
        font-size: 72px;
        line-height: 1;
    }

    .campaign-product-card-grid__items {
        grid-template-columns: repeat(4, 1fr);
    }

    .campaign-product-card {
        padding: 2rem 1rem;
    }

    .campaign-product-card__image {
        height: 280px;
        margin: 2.5rem 0;
    }

    .campaign-product-card__body {
        padding: 1.25rem;
    }

    .campaign-product-card__title {
        font-size: 2.2rem;
    }

    .campaign-product-card__price {
        font-size: 1.25rem;
    }

    .campaign-product-card__body .campaign-btn {
        padding: 10px 30px;
        font-size: 16px;
    }
}

/* ==========================================
   CAMPAIGN FOOTER
   ========================================== */
.campaign-footer__main {
    position: relative;
    padding: 1rem;
    padding-top: 120px;
    background-image: url("../img/footer/world_map_5.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: #111;
}

.campaign-footer__main::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, #000, #00000000 100%);
}

.campaign-footer__main::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 325px;
    background: linear-gradient(0deg, #000, #00000000 100%);
    z-index: 0;
}

.campaign-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.campaign-footer__heading {
    font-family: "atrament-web", "Atrament", sans-serif;
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin: 0 0 2rem;
}

/* Stats grid */
.campaign-footer__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    margin-top: 1rem;
    border-bottom: #fff 2px solid;
}

.campaign-footer__stat {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
    margin-bottom: 0.5rem;
}

.campaign-footer__stat:nth-child(1),
.campaign-footer__stat:nth-child(2) {
    margin-bottom: 3rem;
}

.campaign-footer__stat-icon {
    margin-bottom: 1rem;
    height: 50px;
    width: auto;
}

.campaign-footer__stat-label {
    text-transform: uppercase;
    color: #fff;
    font-size: 26px;
    font-family: "Fira Sans", sans-serif;
    margin: 0;
}

.campaign-footer__stat-value {
    color: #e52521;
    font-size: 41px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Fira Sans", sans-serif;
    line-height: 41px;
    margin: 0;
}

/* Description */
.campaign-footer__description {
    display: block;
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
    font-size: 16px;
    padding: 0 1rem;
    max-width: 830px;
}

/* Buttons */
.campaign-footer__btn {
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 0.75rem;
    border-radius: 25px;
    margin-bottom: 1rem;
    z-index: 1;
    position: relative;
    transition: background-color ease-in-out 250ms, color ease-in-out 250ms;
}

.campaign-footer__btn--primary {
    background-color: #e52521;
    color: #fff;
}

.campaign-footer__btn--primary:hover {
    background-color: #fff;
    color: #333;
}

.campaign-footer__btn--outline {
    background-color: transparent;
    border: 1px solid #e52521;
    color: #fff;
}

.campaign-footer__btn--outline:hover {
    background-color: #e52521;
    color: #fff;
}

/* Logo */
.campaign-footer__logo {
    margin-top: 5rem;
    margin-bottom: 4rem;
    width: 200px;
    height: auto;
    z-index: 1;
    position: relative;
}

/* Brands */
.campaign-footer__brands {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: #545454 1px solid;
    z-index: 1;
    position: relative;
    max-width: 768px;
    width: 100%;
}

.campaign-footer__brands img {
    height: auto;
    width: 100%;
    max-width: 100px;
}

/* Nav */
.campaign-footer__nav {
    margin-bottom: 1.5rem;
    z-index: 1;
    position: relative;
}

.campaign-footer__nav ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    list-style: none;
    gap: 1rem;
    text-align: center;
    padding: 0;
    margin: 0;
}

.campaign-footer__nav ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 25px;
    text-align: center;
    transition: background-color ease-in-out 250ms;
}

.campaign-footer__nav ul li a:hover {
    background-color: #e52521;
}

/* Notice / Policies bar */
.campaign-footer__notice {
    position: relative;
    background-color: #b60e0e;
    color: #fff;
    padding-top: 2rem;
}

.campaign-footer__notice-inner {
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.campaign-footer__notice nav {
    margin-bottom: 1rem;
}

.campaign-footer__notice nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.campaign-footer__notice nav ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    text-align: center;
    margin-bottom: 0.5rem;
    border-radius: 25px;
    border: 1px solid transparent;
    padding: 0.5rem 0.75rem;
    transition: border ease-in-out 250ms, color ease-in-out 250ms, background-color ease-in-out 250ms;
}

.campaign-footer__notice nav ul li a:hover {
    border: 1px solid #333;
    background-color: #fff;
    color: #333;
}

.campaign-footer__notice p {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* ---- Footer responsive ---- */
@media (min-width: 400px) {
    .campaign-footer__nav ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 667px) {
    .campaign-footer__nav ul {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .campaign-footer__description {
        margin-bottom: 2.5rem;
        font-size: 18px;
        padding: 0 2rem;
    }

    .campaign-footer__inner {
        margin-top: 0px;
    }

    .campaign-footer__heading {
        font-size: 48px;
    }
}

@media (min-width: 1160px) {
    .campaign-footer__stats {
        flex-wrap: nowrap;
        gap: 3rem;
    }

    .campaign-footer__stat {
        width: unset;
    }

    .campaign-footer__stat:nth-child(1),
    .campaign-footer__stat:nth-child(2) {
        margin-bottom: unset;
    }
}

@media (min-width: 1240px) {
    .campaign-footer__notice {
        padding: 1rem;
    }

    .campaign-footer__notice-inner {
        flex-direction: row;
        justify-content: space-between;
        padding: 0;
    }

    .campaign-footer__notice nav {
        margin: 0;
    }

    .campaign-footer__notice nav ul {
        flex-direction: row;
    }

    .campaign-footer__notice nav ul li a {
        margin: 0;
    }

    .campaign-footer__notice p {
        margin: 0;
    }
}

/* ==========================================
   CAMPAIGN CONTACT CTA
   "Get in Touch" button between content and footer
   ========================================== */
.campaign-contact-cta {
    display: flex;
    justify-content: center;
    padding: 3rem 1rem;
    background: transparent;
}

.campaign-contact-cta__btn {
    min-width: 200px;
    text-align: center;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}
