:root {
    /* Layout */
    --container-width: 70.65rem;
    /* 1132px of 1280px */
    --content-width: 65.078125%;
    --section-space: 96px;

    /* Colors */
    --color-sounders-green: #2DC84D;
    --color-sounders-blue: #0033A0;
    --color-sounders-aqua: #7CE0D3;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-reign-sesame: #EEF1EB;

    /* Typography - Desktop */
    /* Headlines - Sound */
    --h1-font-size: 4.25rem;
    /* 68px */
    --h2-font-size: 3.5rem;
    /* 56px */
    --h3-font-size: 3rem;
    /* 48px */
    --h4-font-size: 1.875rem;
    /* 30px */
    --font-size-100: 6.25rem;
    /* 100px */
    --font-size-50: 3.125rem;
    /* 50px */

    --h1-line-height: 78px;
    --h2-line-height: 64px;
    --h3-line-height: 56px;
    --h4-line-height: 38px;
    --line-height-68: 68px;



    /* Body Text - Inter */
    --body-large-font-size: 1.25rem;
    /* 20px */
    --body-font-size: 1.125rem;
    /* 18px */
    --body-small-font-size: 1rem;
    /* 16px */
    --body-xsmall-font-size: 0.875rem;
    /* 14px */
    --body-xxsmall-font-size: 0.6875rem;
    /* 11px */

    /* Body Text - Inter */
    --body-large-line-height: 28px;
    --body-line-height: 26px;
    --body-small-line-height: 24px;
    --body-xsmall-line-height: 20px;

    /* Font Weights */
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden !important;
    -webkit-tap-highlight-color: transparent;
    -ms-tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
}

h1 {
    font-family: 'Sound', sans-serif;
    font-weight: var(--font-bold);
    font-size: var(--h1-font-size);
    line-height: var(--h1-line-height);
}

h2 {
    font-family: 'Sound', sans-serif;
    font-weight: var(--font-bold);
    font-size: var(--h2-font-size);
    line-height: var(--h2-line-height);
}

h3 {
    font-family: 'Sound', sans-serif;
    font-weight: var(--font-bold);
    font-size: var(--h3-font-size);
    line-height: var(--h3-line-height);
}

h4 {
    font-family: 'Sound', sans-serif;
    font-weight: var(--font-bold);
    font-size: var(--h4-font-size);
    line-height: var(--h4-line-height);
}

p,
li {
    font-family: 'Inter', sans-serif;
    font-weight: var(--font-medium);
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
}

.body-large {
    font-size: var(--body-large-font-size);
    line-height: var(--body-large-line-height);
}

.body-small {
    font-size: var(--body-small-font-size);
    line-height: var(--body-small-line-height);
}

.body-xsmall {
    font-size: var(--body-xsmall-font-size);
    line-height: var(--body-xsmall-line-height);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
}

img {
    display: block;
}

ul {
    padding-left: 25px;
}

p a, li a {
    color: var(--color-white);
}

.initiatives p a, .initiatives li a,
.image-and-text p a, .image-and-text li a,
.imageAndNewsletterForm__wrapper p a, .imageAndNewsletterForm__wrapper li a,
.textAndImage p a, .textAndImage li a,
.fullWidthTextBlog p a, .fullWidthTextBlog li a {
    text-decoration: none;
    color: var(--color-sounders-blue);
}

.initiatives p a:hover, .initiatives li a:hover, 
.image-and-text p a:hover, .image-and-text li a:hover, 
.imageAndNewsletterForm__wrapper p a:hover, .imageAndNewsletterForm__wrapper li a:hover, 
.textAndImage p a:hover, .textAndImage li a:hover, 
.fullWidthTextBlog p a:hover, .fullWidthTextBlog li a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mobile-only {
    display: none;
}
.desktop-only {
    display: block;
}


/* Primary button styling */
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 12px 40px;
    gap: 10px;
    position: relative;
    border-radius: 8px;
    border: 2px solid var(--color-sounders-green);
    background-color: transparent;
    color: var(--color-sounders-green);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: var(--body-font-size);
    line-height: 100%;
    letter-spacing: 0;
    transition: all 0.5s ease;
    cursor: pointer;
}

.primary-button:hover {
    background-color: var(--color-sounders-green);
    color: var(--color-white);
    content: "Hover";
    animation-timing-function: ease;
    animation-duration: 0.5s;
}

/* Secondary button styling */
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 12px 40px;
    gap: 10px;
    position: relative;
    border-radius: 8px;
    border: 2px solid var(--color-white);
    background: transparent;
    color: var(--color-white);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: var(--body-font-size);
    line-height: 100%;
    letter-spacing: 0;
    transition: all 0.5s ease;
    cursor: pointer;
}

/* Secondary button hover state */
.secondary-button:hover {
    background: var(--color-white);
    color: var(--color-sounders-green);
    transition: all 0.5s ease;
}

.swiper-button-next.primary-button,
.swiper-button-prev.primary-button{
    border-width: 1px;
}

#transparent-bg {
    background-color: transparent;
}

@media (max-width: 1199px) {
    :root {
        --container-width: 90%;
    }
}

/* Mobile Typography Variables */
@media (max-width: 767px) {
    :root {
        /* Headlines - Sound */
        --h1-font-size: 40px;
        --h1-line-height: 48px;
        --h2-font-size: 32px;
        --h2-line-height: 40px;
        --h3-font-size: 28px;
        --h3-line-height: 36px;
        --h4-font-size: 24px;
        --h4-line-height: 32px;
        --font-size-38: 38px;

        /* Body Text - Inter */
        --body-large-font-size: 20px;
        --body-large-line-height: 28px;
        --body-font-size: 18px;
        --body-line-height: 26px;
        --body-small-font-size: 16px;
        --body-small-line-height: 24px;
        --body-xsmall-font-size: 14px;
        --body-xsmall-line-height: 20px;

        --section-space: 64px;
        --container-width: 87.2%;
        /* 327px of 375px */
        --content-width: 100%;
    }

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

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

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

    h4 {
        font-size: var(--h4-font-size);
        line-height: var(--h4-line-height);
    }

    p,
    li {
        font-size: var(--body-font-size);
        line-height: var(--body-line-height);
    }

    .body-large {
        font-size: var(--body-large-font-size);
        line-height: var(--body-large-line-height);
    }

    .body-small {
        font-size: var(--body-small-font-size);
        line-height: var(--body-small-line-height);
    }

    .body-xsmall {
        font-size: var(--body-xsmall-font-size);
        line-height: var(--body-xsmall-line-height);
    }
    .mobile-only {
        display: block;
    }
    .desktop-only {
        display: none;
    }
}