*,
*::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

:root {
    --background: #ffffff;
    --text: #131313;
    --button-text: #ffffff;
    --button: #e93124;
    --button-100: #920a0a;
    --tertiaryColor: #ffffff;

    --base: #555;
    --base-100: #f1f1f1;
    --base-200: #e2e2e2;
    --base-400: #555;
    --base-800: #000;

    --button: #0c8af1;
    --button-100: #0070da;
    --primary: #558653;
    --primary-400: #29e729;
    --primary-800: #129c29;
    --white: #ffffff;
    --base: #888;
    --base-100: #f1f1f1;
    --base-800: #000;
    --yellow: #d1c6a6;
    --yellow-400: #dbca86;
    --yellow-800: #ad8c4f;
}

.darkmode {
    --background: #18181d;
    --text: #f5f5f5;
    --button: #6cc216;
    --button-100: #4d9109;
}

.container {
    max-width: 1440px;
    margin: 30px auto 50px;
    gap: 30px;

    @media (max-width: 768px) {
        padding-left: 30px;
        padding-right: 30px;
    }
}

body {
    font-family: "Open Sans", sans-serif;
    background-color: var(--background);
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 20px;
}

.privacy {
    margin: 25px;
    padding: 10px 0px;
    text-align: start;

    h2 {
        text-align: start;
    }
}

a {
    text-decoration: none;
    color: var(--tertiaryColor);

    &:hover {
        text-decoration: underline;
    }
}

title {
    text-decoration: none;
}

.theme {
    margin: 15px;
    border-radius: 15px;
    padding: 10px 10px;

    .icon {
        color: var(--yellow);
        width: 35px;
        height: auto;
    }

    .moon {
        display: none;

        &.switch {
            display: flex;

            .sun {
                display: none;
            }
        }
    }

    &:hover {
        border-radius: 15px;
        text-decoration: none;

        .sun {
            display: none;
        }

        .moon {
            color: white;
            display: inline;
        }
    }
}

.button {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--button);
    font-size: 20px;
    font-weight: bold;
    color: var(--button-text);
    border-radius: 10px;
    transition: ease 0.3s all;

    &:hover {
        text-decoration: none;
        background-color: var(--button-100);
    }

    &.white {
        background-color: white;
        color: var(--base-800);

        &:hover {
            color: var(--blue-800);
        }
    }

    &.black {
        background-color: black;
        color: white;

        &:hover {
            background-color: var(--blue-800);
            color: var(--base-100);
        }
    }
}


/* --- Header & Navigation --- */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(58, 58, 58, 0.5);
    backdrop-filter: blur(1px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    z-index: 1000;
    border-bottom: 1px solid rgba(22, 22, 22, 0.1);

    .logo-holder {
        display: flex;
        align-items: center;
        gap: 15px;
        color: #ffffff;

        &:hover {
            text-decoration: none;
        }

        .logo img {
            width: 75px;
            height: 75px;
            border-radius: 50%;
        }

        .logo-text {
            font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
            font-size: 28px;
            font-weight: bold;
            white-space: nowrap;
        }
    }

    nav {
        display: flex;
        align-items: center;

        ul {
            display: flex;
            list-style-type: none;
            gap: 5px;
            align-items: center;

            li {
                display: inline-block;

                a {
                    display: inline-block;
                    padding: 10px 20px;
                    font-size: 16px;

                    &:hover {
                        background-color: #e9e9e942;
                        border-radius: 10px;
                        text-decoration: none;
                    }
                }
            }
        }

        .mobile-toggle {
            display: none;
            color: #ffffff;
            cursor: pointer;
        }
    }

    @media (max-width: 992px) {
        padding: 15px 20px;

        .logo-holder .logo-text {
            font-size: 18px;
        }

        nav {
            .mobile-toggle {
                display: block;
            }

            #menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(43, 43, 43, 0.568);
                flex-direction: column;
                padding: 20px 0;
                text-align: center;
                gap: 20px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);

                &.active {
                    display: flex;
                }

                li {
                    width: 80%;

                    a {
                        display: block;
                        padding: 10px;
                        font-size: 18px;
                    }
                }
            }
        }
    }
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
    /* Contains any background art/glows inside this section */

    .hero-bg,
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        background: rgba(31, 25, 21, 0.3);
        z-index: -1;
    }

    .hero-content {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        max-width: 650px;
        margin-top: 300px;

        .hero-info {
            h1 {
                color: white;
                font-size: 4rem;
                font-family: "Story Script", sans-serif;
                font-weight: 200;
                margin-bottom: 15px;
                line-height: 1.1;

                @media (max-width: 768px) {
                    font-size: 3rem;
                }
            }

            p {
                color: #f1f1f1;
                font-weight: 500;
                font-size: 1.35rem;
                line-height: 1.6;

                @media (max-width: 768px) {
                    font-size: 1rem;
                }
            }
        }

        .social-links {
            display: flex;
            gap: 15px;

            a {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 45px;
                height: 45px;
                background-color: white;
                color: var(--base-800);
                border-radius: 50%;
                transition: 0.3s ease;

                &:hover {
                    background-color: var(--accent-color);
                    color: white;
                    transform: translateY(-3px);
                }
            }
        }
    }
}

/* Featured Game (Updated Composition) */
.feature-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Image slightly wider to match reference */
    gap: 4rem;
    align-items: center;
}

/* Left side: Image styling */
.feature-art {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background-color: #2a2d3a;
    /* Fallback matching the reference image's blank state */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.feature-art .featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right side: Text and Button styling */
.feature-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Specific badge style matching the image */
.badge-purple {
    background: rgba(88, 80, 236, 0.1);
    color: #a5b4fc;
    border: 1px solid rgba(88, 80, 236, 0.3);
}

.feature-info h2 {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.game-status {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.game-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 95%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Button styles matching the image */
.btn-purple {
    background: #4f46e5;
    color: #ffffff;
    border: 1px solid #4f46e5;
}

.btn-purple:hover {
    background: #4338ca;
    border-color: #4338ca;
}

.btn-outline {
    background: transparent;
    color: #2b2b2b;
    border: 1px solid #475569;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #94a3b8;
}

/* Responsive adjust */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 2.5rem;
    }
}

.aboutinfo {
    display: flex;
    font-size: 17px;

    @media (max-width: 1024px) {
        flex-direction: column;
    }

    .about-text {
        flex: 1;
        /* background-color: var(--blue-100); */
        border-radius: 30px;
        padding: 25px 30px;
        display: flex;
        flex-direction: column;

        span {
            @media (max-width:768px) {
                display: none;
            }
        }

        h1 {
            font-size: 35px;
        }

        .call-to-action {
            margin-top: 20px;
            margin-bottom: 5px;

            a {
                margin-right: 10px;
                margin-bottom: 10px;
            }
        }

        .social-links {
            display: flex;

            a {
                background-color: var(--base-200);
                color: var(--base-800);
                width: 45px;
                height: 45px;
                padding: 10px;
                margin: 0px 2px;
                border-radius: 50%;
                box-sizing: border-box;
                flex-shrink: 0;
                /* place-items: center; */
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);

                &:hover {
                    background-color: var(--accent-color);
                    color: var(--base-100);
                    text-decoration: none;
                }
            }
        }
    }
}

.tech {
    @media (max-width:1440px) {
        border-radius: 0px;
    }

    .marquee {
        background-color: var(--base-100);
        border-radius: 15px;
        padding: 10px 0px;
        height: 60px;
        overflow: hidden;
        position: relative;
        align-items: center;
        justify-content: center;

        .track {
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            white-space: nowrap;
            will-change: transform;
            animation: marquee 40s linear infinite;
        }

        ul {
            font-size: 15px;
            list-style-type: none;

            li {
                background-color: var(--base-200);
                border-radius: 10px;
                display: inline-block;
                padding: 10px 20px;
            }
        }
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

h2 {
    /* font-size: 40; */
    line-height: 1;
    margin-bottom: 10px;
    text-align: center;
    color: var(--base-800);
    /* padding: 15px; */

    small {
        display: block;
        font-weight: 100;
        font-size: 0.5em;
        color: var(--base);
    }

    @media (max-width:1024px) {
        font-size: 48px;
    }
}

.games {
    .game-list {
        display: flex;
        gap: 30px;
        justify-content: center;
        margin-bottom: 30px;

        @media(max-width:1024px) {
            flex-wrap: wrap;
        }

        article {
            background-color: var(--base-100);
            padding: 25px;
            border-radius: 30px;
            width: 300px;
            transition: 300ms ease;

            a {
                color: #000;
                text-decoration: none;
            }

            h3 {
                margin-top: 10px;
                margin-bottom: 10px;
            }

            div {
                font-weight: 600;
                margin-bottom: 5px;
                color: var(--base-800);
            }

            p {
                margin-bottom: 10px;
                overflow-wrap: break-word;
                white-space: normal;
            }

            figure {
                width: 100%;
                overflow: hidden;
                position: relative;
                border-radius: 15px;
            }

            &:hover {
                transform: scale(1.02);
                background-color: var(--base-200);
            }
        }
    }
}

.stats-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 0px;

    .stats {
        border-radius: 15px;
        padding: 10px 25px;
        display: flex;

        ol {
            list-style-type: none;

            li {

                font-size: 35px;
                font-weight: bold;
                display: inline-block;
                background-color: var(--base-100);
                padding: 10px 20px;
                border-radius: 10px;
                margin-bottom: 15px;
                text-align: center;
            }
        }
    }
}

.services {

    .services-holder {
        display: flex;
        align-items: center;
        padding: 10px;
        gap: 20px;


        .services-list {
            display: flex;
            padding: 0px;
            border-radius: 15px;
            flex-wrap: wrap;
            justify-content: center;


            .cards {
                background-color: var(--base-100);
                width: 10em;
                height: 10em;
                display: flex;
                border-radius: 10px;
                flex-direction: column;
                text-align: center;
                justify-content: center;
                padding: 25px 25px;
                margin: 10px;
                transition: 300ms ease;

                &:hover {
                    transform: scale(1.02);
                    background-color: var(--accent-color);

                    svg {
                        color: white;
                    }

                    color: white;

                    h4 {
                        cursor: default;
                    }

                    p {
                        cursor: default;
                    }
                }

                svg {
                    /* color: var(--accent-color); */
                    padding: 15px;
                }

                p {
                    font-size: .75em;
                }
            }
        }

        @media (max-width:1024px) {
            flex-direction: column;
            justify-content: center;
        }
    }
}

.founders {
    flex-direction: column;
    justify-content: center;
    font-size: 15px;
    padding-bottom: 25px;

    .founder-list {
        display: flex;
        gap: 30px;
        justify-content: center;

        @media(max-width:1024px) {
            flex-wrap: wrap;
        }
    }

    article {
        display: flex;
        flex-direction: column;
        background-color: var(--base-100);
        width: 350px;
        padding: 25px;
        border-radius: 30px;

        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: 300ms ease;

        a {
            color: #000;
        }

        img {
            -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
            width: 225px;
            height: auto;
            border-radius: 25px;
            margin-bottom: 15px;
            transition: 200ms ease;
        }

        &:hover {
            background-color: var(--base-200);

            img {
                -webkit-filter: grayscale(0%);
                filter: grayscale(0%);
                transform: scale(1.02);
            }
        }
    }
}

.contact {
    max-width: 1200px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 125px;
    display: flex;
    padding: 30px 30px;
    border-radius: 25px 25px;
    background-color: var(--base-200);
    justify-content: center;
    gap: 10px;

    @media (max-width:1440px) {
        flex-direction: column;

    }

    .contact-left {
        flex: 1;
        flex-direction: column;
        padding: 25px;
        border-radius: 25px;
        /* background-color: var(--base-100);
        box-shadow: 1px 2px 15px rgba(0, 0, 0, 0.1); */

        h2 {
            padding: 0px;
            text-align: start;
            line-height: 1.2;
        }

        small {
            color: #000;
        }

        p {
            margin-top: 15px;
            font-size: 15px;
            text-wrap: 1;
            line-height: 1.2;
        }

        .con-info {
            margin-top: 10px;
            display: flex;
            flex-direction: column;
            padding: 25px;

            li {
                list-style: none;
                padding: 5px;
            }

            svg {
                margin: 0px 15px;
            }
        }
    }

    .contact-right {
        background-color: var(--base-100);
        box-shadow: 1px 2px 15px rgba(0, 0, 0, 0.1);
        border-radius: 25px;
        padding: 25px;
        display: flex;
        text-align: center;

        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        input {
            background-color: #ffffff;
            width: 100%;
            padding: 15px 10px;
            border-radius: 10px;
            border-style: none;
            white-space: nowrap;
            overflow-x: auto;

            @media (max-width: 1440px) {
                width: 80%;
            }
        }

        ::placeholder {
            font-family: Arial, Helvetica, sans-serif;
        }

        textarea {
            background-color: #ffffff;

            width: 100%;
            padding: 15px 10px;
            border-radius: 10px;
            border-style: none;
            resize: none;
            overflow: auto;
        }
    }
}

.footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    background-color: var(--base-100);
    padding: 25px 150px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1;
    font-size: 15px;

    a {
        color: #000;
    }

    .admin {
        color: var(--base-400);

        &:hover {
            text-decoration: none;
            cursor: text;
        }
    }

    .up-btn {
        position: absolute;
        right: 30px;
        bottom: 10px;
        color: #e0e0e0;
        background-color: var(--button);
        width: 50px;
        height: 50px;
        border-radius: 25px;
        padding: 12px 10px;
        text-align: center;

        &:hover {
            background-color: var(--button-100);
        }
    }
}


/* --- Floating Actions --- */

.float {
    position: fixed;
    bottom: 90px;
    /* Increased from 30px to avoid overlapping the up button */
    right: 20px;
    z-index: 1000;
    /* Ensure it stays above everything */
    display: flex;
    align-items: center;
    /* Aligns the text and button horizontally */
    gap: 12px;
    /* Adds space between the message and button */
}

.float .float-button {
    width: 60px;
    height: 60px;
    display: flex;
    background-color: var(--primary-400);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    /* Perfect circle */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: 300ms ease;
    position: relative;
    /* Positioning is now handled by the .float container */

    &:hover {
        background-color: var(--primary-800);
        transform: scale(1.1);
    }

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--primary-400);
        border-radius: inherit;
        z-index: -1;
        animation: pulse-ring 2s ease-out infinite;
    }
}

.float .message {
    display: flex;

    p {
        margin: 0;
        white-space: nowrap;
        /* Forces text to stay on one line */
        padding: 8px 16px;
        color: #333;
        font-size: 13px;
        font-weight: 600;
        border: 1px solid #333;
        border-radius: 20px;
        /* Modern pill shape */
        /* box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1); */

        /* Slight transparency/blur so content behind it is vaguely visible */
        background-color: rgba(255, 255, 255, 0.479);
        backdrop-filter: blur(4px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.about-section {
    color: var(--base-100);
    position: relative;

    .about-info h1 {
        color: #e0e0e0;
        font-size: 120;
        font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
        font-weight: 500;
        font-style: normal;
        margin-top: 30px;
        margin-bottom: 5px;
    }

    .about-info {
        margin-top: 30px;
        z-index: 1;
        position: absolute;
        top: 10%;
        left: 2%;
    }

    .about-info p {
        max-width: 400px;
    }
}

.R-portfolio {
    padding: 50px;
    margin: auto;
    margin-top: 150px;
    display: flex;
    flex-direction: row;

    .R-info {
        width: 500px;

        h1 {
            font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
            font-weight: 500;
        }
    }
}

.description {
    margin: 50px;
    padding: 25px;
    display: flex;

    .screenshots {
        margin: auto;
        gap: 50px;
        padding: 25px;
        flex: 1;

        img {
            width: 250px;
        }
    }

    .text-info {
        flex: 1;
    }
}

.kickstarter-button {
    margin-top: 10px;
    display: flex;
    position: relative;

    p {
        position: absolute;
        top: 18px;
        left: 75px;
        text-align: center;
        color: white;

        &:hover {
            cursor: default;
        }
    }

    a {
        background-color: var(--accent-color);
        color: white;
        width: 200px;
        height: 64px;
        padding: 0px 10px;
        /* margin: 0px 2px; */
        border-radius: 50px;
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
        transition: ease 200ms;

        svg {
            margin: 10px;
            width: 2em;
        }

        &:hover {
            background-color: #027250;
            text-decoration: none;
        }
    }
}

.cta {
    display: flex;
    justify-content: center;
    text-align: center;
}

.under-construction {
    display: flex;
    padding: 25px 30px;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.adminpage {
    padding: 5px 5px;
    flex-direction: column;
    text-align: center;

    .button {
        margin: 5px;
    }

    a {
        &:hover {
            text-decoration: none;
        }
    }
}

.privacypage {
    margin: 2rem auto;
    max-width: 1440px;
    padding: 2rem;
    line-height: 1.6;

    h3 {
        font-weight: 600;
        margin: 1.5rem 0 .75rem;
        text-align: start;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .ppheader {
        padding: 1.5rem;
        background-color: var(--base-200);
        text-align: center;
        border-radius: 8px 8px 0 0;
        color: var(--white);
    }

    .ppdate {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        color: var(--text-muted);
        border-bottom: 1px solid var(--base-200);
    }

    section {
        padding: 1rem 1.5rem;
    }

    p {
        margin-bottom: 1rem;
    }

    ul {
        margin: 1rem 0 1.5rem;
        padding-left: 1.2rem;

        li {
            padding-left: 0.25rem;
            margin-bottom: 0.6rem;
            list-style: disc;
        }
    }

    @media(max-width: 768px) {
        h1 {
            font-size: 1.5em;
        }

        h2 {
            font-size: 1em;
        }

        h3 {
            font-size: .9em;
        }

        b {
            font-size: .9em;
        }

        p {
            font-size: .9em;
        }

        li {
            font-size: .9em;
        }
    }
}

/*Block Puzzle */
/* =========================================
   WIREFRAME PORTFOLIO PAGE STYLES
   ========================================= */

.bp-portfolio-wrapper {
    margin-top: 120px;
    margin-bottom: 50px;
    background-color: var(--background);
    color: var(--text);
    padding: 30px;
    font-family: "Open Sans", sans-serif;

    /* Global Typography Overrides for this template */
    h2 {
        text-align: left;
        font-size: 32px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
        color: #111;
    }

    p {
        font-size: 14px;
        line-height: 1.6;
        color: #555;
        margin-bottom: 25px;
    }

    .bp-link {
        font-size: 15px;
        font-weight: 700;
        color: #111;
        text-decoration: none;
        display: inline-block;
        transition: 0.2s ease;

        &:hover {
            text-decoration: underline;
        }
    }

    /* Top Wide Image Banner */
    .bp-top-banner {
        margin-bottom: 50px;
        width: 100%;

        .bp-wide-img {
            width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: cover;
            display: block;
            border-radius: 8px;
            /* Optional: remove if you want sharp edges */
        }
    }

    /* Generic Image Placeholder Setup (Replaces the actual image tag if empty) */
    .bp-placeholder {
        background-color: #dfdfdf;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        color: #999;

        svg {
            width: 48px;
            height: 48px;
            opacity: 0.7;
        }
    }

    /* Section 1: Hero */
    .bp-hero {
        display: flex;
        gap: 40px;
        margin-bottom: 40px;

        .bp-text-content {
            flex: 1;
            padding-right: 20px;
        }

        .bp-image-content {
            flex: 1.2;

            .bp-placeholder.large {
                height: 350px;
            }
        }
    }

    /* Section 2: 4-Column Grid */
    .bp-gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 40px;

        .bp-placeholder.square {
            aspect-ratio: 1 / 1;
            /* Makes them perfectly square */
        }
    }

    /* Section 3: Feature */
    .bp-feature {
        display: flex;
        gap: 40px;
        margin-bottom: 40px;
        align-items: center;

        .bp-image-content {
            flex: 1.2;

            .bp-placeholder.landscape {
                height: 300px;
            }
        }

        .bp-text-content {
            flex: 1;
            padding-left: 20px;
        }
    }

    /* Section 4: CTA Banner */
    .bp-cta-banner {
        background-color: #dfdfdf;
        padding: 40px 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;

        .bp-text-content {
            flex: 2;

            h2 {
                margin-bottom: 10px;
            }

            p {
                margin-bottom: 20px;
                max-width: 600px;
            }
        }

        .bp-cta-image {
            flex: 1;
            display: flex;
            justify-content: flex-end;

            .bp-placeholder.small {
                background: transparent;
                /* Blends into banner */
                width: auto;

                svg {
                    width: 80px;
                    height: 80px;
                }
            }
        }
    }

    /* Responsive Design Mobile/Tablets */
    @media (max-width: 900px) {

        .bp-hero,
        .bp-feature,
        .bp-cta-banner {
            flex-direction: column;
        }

        .bp-feature {
            flex-direction: column-reverse;
            /* Puts image below text on mobile */
        }

        .bp-gallery-grid {
            grid-template-columns: repeat(2, 1fr);
            /* 2x2 grid on medium screens */
        }

        .bp-hero .bp-text-content,
        .bp-feature .bp-text-content {
            padding: 0;
        }

        .bp-cta-banner {
            text-align: center;

            .bp-cta-image {
                justify-content: center;
            }
        }
    }

    @media (max-width: 500px) {
        .bp-gallery-grid {
            grid-template-columns: 1fr;
            /* 1 column on small phones */
        }
    }
}