/*
 Theme Name:   The Blue Crew
 Description:  Theme for thebluecrew.com
 Author:       Matt Denner
 Author URI:   http://mablue-crewenner.net
 Version:      1.1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
*/
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

@font-face {
    font-family: 'Content Hub';
    src: url('fonts/ContentHub.woff2') format('woff2'),
       url('fonts/ContentHub.woff') format('woff');
    font-synthesis: none;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --blue-crew-primary: #004aad;
    --blue-crew-primary-highlight: #D4DCFF;
    --blue-crew-secondary: #f6c844;
    --blue-crew-tertiary: #0c153a;
    --blue-crew-quaternary: #000000;
    --blue-crew-white: #ffffff;
    --blue-crew-black: #000000;
    --blue-crew-grey: #9296A6;
    --blue-crew-grey-light: #ced0d8;
    --blue-crew-teal: #4490ab;
    --blue-crew-dark-blue: #214a74;
    --blue-crew-orange: #cf8b56;
    --blue-crew-background: #fcfafa;
    --blue-crew-alert-green: #259872;
    --blue-crew-alert-yellow: #FDA829;
    --blue-crew-alert-red: #E64959;
    --blue-crew-primary-font: 'Google Sans Flex', sans-serif;
    --blue-crew-secondary-font: 'Open Sans', sans-serif;
    --blue-crew-tertiary-font: 'Times New Roman', serif;
    --header-height: 68px;
    --bar-height: 2.5px;
    --hamburger-gap: 6px;
    --hamburger-height: calc(2.5px * 3 + 6px * 2);
    --dropdown-height: calc(2.5px * 2 + 12px);
    --grid-line-color-1: #c7c7c70f;
    --grid-line-color-2: #afafaf0f;
    --grid-dot-color-1: #c7c7c70f;
    --grid-line-color-3: #ffffff2c;
    --grid-line-color-4: #ffffff2c;
    --grid-dot-color-2: #c7c7c71f;
}

/* ------------------------------ Global Styles ----------------------------------- */
* {
    font-family: var(--blue-crew-primary-font);
    color: var(--blue-crew-primary);
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
html {
    scroll-behavior: smooth;
}
body {
    display: grid;
    grid-template-rows: 1fr auto;
    height: 100vh;
    background-size: 100px 100px;
    background-position: center center;
    background-image: linear-gradient(to right, var(--grid-line-color-1) 1px, transparent 1px), linear-gradient(to bottom, var(--grid-line-color-2) 1px, transparent 1px);

    &.logged-in.admin-bar {
        position: relative;
        height: calc(100vh - var(--admin-bar-height, 32px));

        .main-header-section {
            top: calc(0px + 32px);

            @media (max-width: 782px) {
                top: calc(0px + 46px);
            }
        }
    }

    &:not(.home) {

        .main-header-menu ul.sub-menu {
            background-color: var(--blue-crew-background);
        }
    }
}
.home {

    .main-header-menu ul.sub-menu {
        background-color: var(--blue-crew-white);
    }
}
body, h1, h2, h3, h4, h5, h6, p {
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    margin: 0;
}
body

.unclickable-menu-item {
    cursor: default;
}

/* ------------------------------ Main Header Styles (Desktop) ----------------------------------- */
.main-header-section {
    background-color: transparent;
    backdrop-filter: blur(30px);
    box-shadow: 1px 1px 1px rgba(146, 150, 166, 0.15);
}
.main-header-section {
    position: fixed;
    top: 0;
    width: 100%;
    height: 68px;
    z-index: 9999;
    color: var(--blue-crew-tertiary);
    transition: all .3s ease;
}
/* Main header row styles */
.main-header-row {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    height: 100%;
    padding: 0 5%;
    z-index: 9999;
}
/* Main header logo column styles */
.main-header-logo {
	display: flex;
	align-items: center;
	flex-basis: fit-content;
    height: 100%;
}
.custom-logo-link {
    display: flex;
    padding: 20px 30px;
    height: 100%;
}
img.custom-logo {
    height: 100%;
    width: auto;
}
.main-header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    margin-left: auto;

    @media only screen and (max-width: 980px) {
        display: none;
    }

    a {
        color: var(--blue-crew-tertiary);
        font-weight: 500;
        text-decoration: none;
    }
}
.main-header-menu ul {
    display: flex;
    margin: 0;
    height: 100%;
    padding: 0;
}
.main-header-menu li {
    display: flex;
    height: 100%;
}
.main-header-menu>li>a {
    display: flex !important;
    align-items: center;
    font-family: var(--blue-crew-primary-font);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 27px 21px;
    height: 100%;
}
.main-header-menu>li>a:hover {
    background-color: #d8dceb45;
    transition: all .3s ease;
    -webkit-transition: all .4s ease-in-out;
}
.main-header-menu>.current-menu-item>a {
	color: var(--blue-crew-primary);
	background-color: rgba(216, 220, 235, 0.271);
}
.unclickable-menu-item {
	cursor: default;
}
.main-header-menu .menu-item-has-children>a::after {
    content: url('images/down-arrow.svg');
    width: 10px;
    margin-top: -1px;
    margin-left: 5px;
    margin-right: -5px;
}
.main-header-menu>li:hover>ul {
    visibility: visible;
    opacity: 1;
}
.main-header-menu ul.sub-menu {
    position: absolute;
    flex-direction: column;
    top: 68px;
    background-color: var(--blue-crew-white);
    height: auto;
    min-width: 240px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    border: 1px solid rgba(146, 150, 166, 0.15);
}
.main-header-menu .sub-menu .menu-item a {
    font-family: var(--blue-crew-primary-font);
    font-size: 14px;
    color: #767677;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 14px 20px;
    width: 100%;
}
.main-header-menu .sub-menu .menu-item a:hover {
    color: var(--blue-crew-primary);
    background-color: rgba(216, 220, 235, 0.271);
    transition: all .5s ease;
}
.header-btns {
    display: flex;
    gap: 15px;

    @media only screen and (max-width: 980px) {
        display: none;
    }
}
.main-header-button:hover {
    background-color: var(--blue-crew-primary);
	color: var(--blue-crew-white);
	transition: all .3s ease;
}
.mobile-hamburger-button {
    display: none;
    --x-width: calc(var(--hamburger-height) * 1.41421356237);
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: var(--hamburger-gap);
    height: 100%;
    aspect-ratio: 1;
    padding: 20px;
    transition: all .3s ease;
    cursor: pointer;

    @media only screen and (max-width: 980px) {
        display: flex;
    }
}
.mobile-hamburger-button:hover::before, .mobile-hamburger-button:hover::after {
    width: 100%;
}
.mobile-hamburger-button::before {
    width: 60%;
}
.mobile-hamburger-button input {
    width: 100%;
    flex-shrink: 0;
    appearance: none;
    padding: 0;
    margin: 0;
    outline: none;
    pointer-events: none;
}
.mobile-hamburger-button:has(input:focus-visible)::before,
.mobile-hamburger-button:has(input:focus-visible)::after,
.mobile-hamburger-button input:focus-visible {
    border: 1px solid var(--blue-crew-white);
    box-shadow: 0 0 0 1px var(--blue-crew-primary);
}

.mobile-hamburger-button::before,
.mobile-hamburger-button::after,
.mobile-hamburger-button input {
    content: '';
    height: var(--bar-height);
    background-color: var(--blue-crew-primary);
    border-radius: 100px;
    padding: 0;
    margin: 0;
    transform-origin: right center;
    transition: all .3s ease;
}
.mobile-hamburger-button::after {
    width: 85%;
}
.mobile-hamburger-button input:checked {
    background-color: var(--blue-crew-white);
    opacity: 0;
    width: 0;
}
.mobile-hamburger-button:has(input:checked)::before {
    background-color: var(--blue-crew-white);
    rotate: -45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / -2);
}
.mobile-hamburger-button:has(input:checked)::after {
    background-color: var(--blue-crew-white);
    rotate: 45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / 2);
}
.main-header-section:has(.mobile-hamburger-button input:checked) .mobile-slider-section {
    translate: 0;
}
.custom-logo.dark-bg {
    display: none;
}
.main-header-row:has(input:checked) .light-bg {
    display: none;
}
.main-header-row:has(input:checked) .dark-bg {
    display: flex;
}
.mobile-slider-section {
    display: none;
    translate: -100%;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    background-color: var(--blue-crew-tertiary);
    transition: all .3s ease;
    z-index: 9998;

    @media only screen and (max-width: 980px) {
        display: flex;
    }
}
.mobile-slider-menu {
    display: flex;
    flex-direction: column;
    margin-top: calc(95px + 32px);
    width: 100%;
    padding: 0 40px 10px 40px;

    @media (max-width: 782px) {
        margin-top: calc(95px + 46px);
    }
}
.menu-item-wrapper {
    display: flex;
    gap: 30px;
}
.mobile-slider-menu li {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.mobile-slider-menu li a {
    font-family: var(--blue-crew-secondary-font);
    font-size: 24px;
    font-weight: bold;
    color: var(--blue-crew-white);
    padding: 20px 0;
    width: 100%;
}
.mobile-sub-menu-wrapper {
    position: relative;
    height: fit-content;
    overflow: hidden;
}
.mobile-slider-menu .sub-menu {
    margin-top: -100%;
    top: 0;
    padding: 0;
    transition: all .3s ease;
}
.mobile-slider-menu .sub-menu li a {
    font-size: 16px;
    font-weight: normal;
    color: #a3b8e0;
    padding: 10px 0;
}
.mobile-slider-menu li:has(input:checked) .sub-menu {
    margin-top: 0;
}
.dropdown-button::after
 {
    content: '';
    background-color: var(--blue-crew-white);
    height: var(--bar-height);
    width: 100%;
}
.dropdown-button {
    display: flex;
    --drop-x-width: calc(var(--dropdown-height) * 1.41421356237);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--hamburger-gap);
    height: 100%;
    aspect-ratio: 1;
    padding: 10px;
    transition: all .3s ease;
    cursor: pointer;
    rotate: -90deg;
}
.dropdown-button::after,
.dropdown-button input {
    content: '';
    height: var(--bar-height);
    width: calc(var(--drop-x-width) / 2 + var(--bar-height) / 2);
    background-color: var(--blue-crew-white);
    border-radius: 100px;
    padding: 0;
    margin: 0;
    transform-origin: center;
    transition: all .3s ease;
}
.dropdown-button input {
    flex-shrink: 0;
    appearance: none;
    padding: 0;
    margin: 0;
    outline: none;
    pointer-events: none;
    rotate: -45deg;
    translate: 0 calc(var(--bar-height) * .1);
}
.dropdown-button::after {
    rotate: 45deg;
    translate: 0 calc(var(--bar-height) * -.1);
}
.dropdown-button:has(input:checked)::after {
    rotate: -45deg;
}
.dropdown-button input:checked {
    rotate: 45deg;
}
.blue-crew .search-btn {
    background-color: var(--blue-crew-tertiary);
    font-family: var(--blue-crew-secondary-font);
    transition: background-color .3s ease;
}
.blue-crew .search-btn:hover {
    background-color: var(--blue-crew-primary);
}
.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: var(--blue-crew-tertiary);
    width: 100%;
    height: 300px;

    .social-links {
        display: flex;
        gap: 10px;
        padding: 10px;

        .social-link {
            display: flex;
            height: 25px;

            .social-icon {
                height: 100%;

                .icon-fill {
                    fill: #ffffff;
                }
            }
        }
    }
}
.content-area {
    margin-top: var(--header-height);
}
/* ------------------------------ Footer Styles ----------------------------------- */
.footer-area {
    display: flex;
    flex-direction: column;
    gap: 60px;

    &.left {
        width: 30%;
    }

    &.right {
        width: 70%;
    }

    .conventions-events-menus, .resources-menus, .contact-menus {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .menu-area {
        display: flex;
        justify-content: flex-start;
        gap: 20px;

        .footer-menu-container {
            max-width: 25%;
            min-width: 25%;
        }
    }

    .blue-crew-address {
        color: var(--blue-crew-white);
        line-height: 1.3;
        cursor: default;
    }
}
.footer-lower {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    width: 80%;
}
.footer-paragraph {
    font-family: var;
}
.footer-text-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-lower {

    .footer-text {
        padding: 20px;
        font-size: 12px;
    }
}
.footer-text {
    font-family: var(--blue-crew-secondary-font);
    color: var(--blue-crew-primary-highlight);
    text-decoration: none;

    &h1 {
        font-size: 30px;
    }

    &p {
        font-size: 14px;
    }
}
.footer-logo-img-wrapper {
    display: flex;
    max-width: 100px;
}
img.footer-logo-img {
    width: 100%;
    height: 100%;
}
.logo-img-wrapper .custom-logo-link {
    position: relative;
    display: flex;
    padding: 20px;
    height: 100%;
    width: fit-content;
}
.logo-img-wrapper img.custom-logo {
    width: 100%;
    height: 100%;
}
.footer-text.tagline {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 1.3;
    text-wrap: balance;
    width: 75%;
}
.footer-text.terms {
    margin-left: auto;
}
.footer-upper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 40px;
    width: 80%;

    @media only screen and (max-width: 980px) {
        flex-direction: column;
    }

}
.footer-menus {
    display: flex;
    gap: 60px;
}
.footer-branding {
    display: flex;
    gap: 60px;
}
.footer-menu-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-menu-container.resources {
    margin-left: auto;

    @media only screen and (max-width: 980px) {
        margin-left: 0;
    }
}
.footer-menu-title {
    font-family: var(--blue-crew-secondary-font);
    font-size: 14px;
    font-weight: bold;
    color: var(--blue-crew-primary-highlight);
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    cursor: default;
}
.footer-menu-small-title {
    font-family: var(--blue-crew-secondary-font);
    font-size: 14px;
    font-weight: bold;
    color: var(--blue-crew-white);
    text-transform: uppercase;
    cursor: default;
}
.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;

    .menu-item {

        a {
            color: var(--blue-crew-white);
        }
    }
}
.footer-menu li {
    display: flex;
}
.footer-menu li a {
    font-family: var(--blue-crew-secondary-font);
    font-size: 14px;
    color: #95a1b0;
}
.site-main {
    width: 100%;
    max-width: 100vw;
}

.plain-section {
    position: relative;
    display: flex;
    width: 100%;
    padding: 60px;

    &.vertical {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    &.center {
        justify-content: center;
        text-align: center;

        .inner {
            justify-content: center;
            align-items: center;
        }
    }

    .blue-crew-heading {
        color: var(--blue-crew-tertiary);
        font-size: 36px;

        @media only screen and (max-width: 1500px) {
            font-size: 28px;
        }
    }

    .blue-crew-subheading {
        font-family: var(--blue-crew-secondary-font);
        font-size: 20px;
        line-height: 1.3;
        color: var(--blue-crew-grey);

        @media only screen and (max-width: 1500px) {
            font-size: 16px;
        }
    }

    &.fundraisers {
        padding: 0 60px;
    }

    &.horizontal {

        @media only screen and (max-width: 980px) {

            &.inner, .inner {
                display: grid;
            }
        }
    }
}
.specialty-section {
    position: relative;
    display: flex;
    overflow: hidden;
    margin: 60px;
    padding: 10%;
    border-radius: 10px;
    background-size: 100px 100px;
    background-position: center center;
    background-image: linear-gradient(to right, var(--grid-line-color-3) 1px, transparent 1px), linear-gradient(to bottom, var(--grid-line-color-4) 1px, transparent 1px);

    &.vertical {
        flex-direction: column;
        gap: 60px;
    }

    &.center {
        justify-content: center;
        align-items: center;
        text-align: center;

        div {
            justify-content: center;
            align-items: center;
        }
    }

    .blue-crew-heading {
        color: var(--blue-crew-tertiary);
        font-size: 36px;
    }

    .blue-crew-subheading {
        font-family: var(--blue-crew-secondary-font);
        font-size: 20px;
        line-height: 1.3;
        color: var(--blue-crew-grey);
    }

    .section-gradient-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    @media only screen and (max-width: 1500px) {
        padding: 5%;
    }

    @media only screen and (max-width: 980px) {
        padding: 60px;
        margin: 0 60px;
    }
}

.inner {
    display: flex;
    gap: 30px;

    &.vertical {
        flex-direction: column;
    }

    &.horizontal {

        @media only screen and (max-width: 980px) {
            display: grid;
        }
    }

    &.center {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    &.thin {
        width: 35%;

        @media only screen and (max-width: 980px) {
            width: 75%;
        }
    }

    &.standard {
        width: 75%;

        @media only screen and (max-width: 1500px) {
            width: 100%;
        }
    }

    &.wide {
        width: 100%;
    }
}

.section-bg-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;

    .section-bg {
        position: absolute;
        width: 100%;
        object-fit: cover;
    }
}

.landing-header {
    position: relative;
    display: flex;
    align-items: center;
    height: 800px;
    padding: 0 200px;
    background-size: cover;
    background-position: center;

    .landing-header-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 700px;
        z-index: 2;

        .landing-header-heading {
            color: var(--blue-crew-tertiary);
            font-weight: 500;
            font-size: 65px;

            @media only screen and (max-width: 1500px) {
                font-size: 3.5em;
            }

            @media only screen and (max-width: 980px) {
                font-size: 3em;
            }

            @media only screen and (max-width: 670px) {
                font-size: 8vw;
            }
        }

        .landing-header-paragraph {
            font-size: 20px;
            color: var(--blue-crew-grey);
            line-height: 1.3;

            &.landing-highlight {

                @media only screen and (max-width: 670px) {
                    font-size: 3vw;
                }
            }

            @media only screen and (max-width: 670px) {
                font-size: 3.5vw;
            }
        }

        .landing-highlight {
            color: var(--blue-crew-primary);
            font-weight: 500;
            background-color: var(--blue-crew-primary-highlight);
            padding: 15px 30px;
            border-radius: 100px;
            width: fit-content;
        }

        .landing-links {
            display: flex;
            gap: 20px;

            @media only screen and (max-width: 670px) {
                flex-wrap: wrap;
                gap: 10px;

                .blue-crew-btn {
                    width: 100%;
                    justify-content: center;
                }
            }
        }
    }

    .section-gradient-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .section-bg-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        overflow: hidden;

        .section-bg {
            height: 100%;
            object-position: right center;
        }
    }

    @media only screen and (max-width: 980px) {
        padding: 100px;
    }

    @media only screen and (max-width: 670px) {
        padding: 10%;
    }
}

.about-highlight {
    display: flex;
    height: 800px;
    overflow: hidden;

    .about-highlight-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 120px;

        h1 {
            font-size: 60px;
        }

        h2 {
            font-size: 25px;
        }

        .about-highlight-heading {
            color: var(--blue-crew-tertiary);
            font-weight: 500;
        }

        .about-highlight-paragraph {
            font-size: 20px;
            color: var(--blue-crew-grey);
            line-height: 1.3;

            br {
                display: block;
                content: "";
                margin-top: 1rem;
            }
        }
    }

    .about-highlight-image-wrapper {
        width: fit-content;

        .about-highlight-image {
            height: 100%;
            object-fit: cover;
        }
    }
}

.blue-crew-highlight {
    display: flex;
    height: 800px;
    overflow: hidden;

    .blue-crew-highlight-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        width: 50%;
        padding: 120px;

        h1 {
            font-size: 60px;
        }

        h2 {
            font-size: 25px;
        }

        .blue-crew-highlight-heading {
            color: var(--blue-crew-tertiary);
            font-weight: 500;
        }

        .blue-crew-highlight-paragraph {
            font-size: 20px;
            color: var(--blue-crew-grey);
            line-height: 1.3;

            br::after {
                display: block;
                content: "";
                margin-top: 1rem;
            }
        }
    }

    .blue-crew-highlight-image-wrapper {
        width: 50%;

        .blue-crew-highlight-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}

.steps {

    .blue-crew-blurb-card {

        &:not(:last-of-type)::after {
            position: absolute;
            right: -101px;
            top: 50%;
            width: 100px;
            content: '';
            border-bottom: 2px solid var(--blue-crew-primary);

            @media only screen and (max-width: 980px) {
                transform: rotate(90deg);
                transform-origin: left;
                top: auto;
                bottom: -2px;
                right: auto;
                left: 50%   ;
            }
        }

    }
}

.blue-crew-blurb-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px;
    border: 1px solid var(--blue-crew-grey-light);
    border-radius: 10px;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    background-color: #ffffff;
    cursor: default;
    z-index: 1;

    &.horizontal {

        .content-wrapper{
            display: flex;
            flex-direction: row;
            align-items: flex-start;

            .blurb-content {
                align-items: flex-start;
                text-align: left;
            }
        }
    }

    &:has(.link-overlay) {

        &:hover {
            box-shadow: 0 0 20px 5px #004bad0d;
            transition: all .3s ease;
        }
    }

    .link-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .landing-blurb-image {
        display: flex;
        width: 75px;
        padding: 15px;
        background-color: var(--blue-crew-primary-highlight);

        &.radius-sm {
            border-radius: 10px;
        }

        &.radius-md {
            border-radius: 20px;
        }

        &.radius-lg {
            border-radius: 30px;
        }

        &.radius-full {
            border-radius: 100%;
        }
    }

    .blurb-title {
        color: var(--blue-crew-tertiary);
        font-weight: 500;
    }

    .blurb-subheading {
        color: var(--blue-crew-grey);
        font-size: 12px;
        line-height: 1.3;

        @media only screen and (max-width: 1500px) {
            font-size: 10px;
        }
    }

    .blurb-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

.fundraiser-module {
    text-align: left;
    width: 30%;
    background-color: #fff;
    border: 1px solid rgba(146, 150, 166, 0.15);;
    border-radius: 10px;
    overflow: hidden;

    .fundraiser-image-wrapper {
        overflow: hidden;

        .featured-image {
            width: 100%;
        }
    }

    .fundraiser-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 30px;

        .fundraiser-header {
            display: flex;
            gap: 10px;
            cursor: default;

            .fundraiser-meta {
                display: flex;
                flex-direction: column;
                gap: 5px;

                .fundraiser-category {
                    font-family: var(--blue-crew-secondary-font);
                    color: var(--blue-crew-tertiary);
                    font-weight: bold;
                    text-transform: uppercase;
                }

                .fundraiser-title {
                    font-size: 24px;
                    font-weight: bold;
                    text-transform: uppercase;
                }
            }
        }

        .fundraiser-info {
            display: flex;
            gap: 10px;
            width: 100%;
            cursor: default;

            p {
                font-family: var(--blue-crew-secondary-font);
                color: var(--blue-crew-quaternary);
                font-size: 14px;
                font-weight: bold;
                text-transform: uppercase;

                &::before {
                    font-family: 'Content Hub';
                    font-size: 18px;
                }
            }

            .fundraiser-type {

                &::before {
                    content: '\e206';
                    color: var(--blue-crew-primary);
                    margin-right: 5px;
                }
            }

            .fundraiser-state {

                &::before {
                    content: '\e80e';
                    color: var(--blue-crew-primary);
                    margin-right: 5px;
                }
            }

            .fundraiser-create-date {

                &::before {
                    content: '\e202';
                    color: var(--blue-crew-primary);
                    margin-right: 5px;
                }
            }
        }

        .blue-crew-btn, a.blue-crew-btn {
            width: 100%;
        }
    }

    @media only screen and (max-width: 980px) {
        width: 100%;
    }
}

.blue-crew-btn, a.blue-crew-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: fit-content;
    padding: 15px 30px;
    border-radius: 7.5px;
    font-size: 14px;
    color: var(--blue-crew-white);
    text-decoration: none;
    background-color: var(--blue-crew-primary);
    cursor: pointer;

    &:hover {
        opacity: 0.9;
        transition: all .5s ease;
    }

    &.secondary {
        position: relative;
        background-color: var(--blue-crew-white);
        color: var(--blue-crew-tertiary);
        border: 1px solid var(--blue-crew-grey);

        &:hover {
            background-color: #f0f0f0;
            transition: all .5s ease;

            &::before {
                background: none;
                border: 4px solid #fff;
                content: "";
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                border-radius: 7.5px;
                pointer-events: none;
            }
        }
    }

    &.blurb {
        width: 100%;
    }
}
