.center {
    text-align: center !important;
}


.bold {
    font-weight: bold !important;
}

.margin-right {
    margin-right: 6px;
}

div.box {
    margin: 20px;
    padding: 20px;
}

.gold {
    color: #C29D3D;
}

:root {
    --color-paper: oklch(96.2% 0.006 185);
    --color-graphite: oklch(23% 0.028 308);
    --color-ink: oklch(25% 0.035 248);
    --color-badge-accent-soft: rgba(194, 157, 61, 0.64);
    --color-black-22: rgba(0, 0, 0, 0.22);
    --duration-base: 320ms;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}



/**
cookie banner
*/

#cookie-banner {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.2);
    color: white;
    background-color: rgb(54, 69, 79);
    padding: 10px;
    border-radius: 5px;
    z-index: 999;
    font-size: 70%
}




code {
    background-color: grey !important;
    font-size: 0.9rem !important;
    color: white;
    border-radius: 3px;
    padding: 0 6px !important;
    font-style: italic;
}











.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 2rem;
}

.footer-links {
    padding-left: 5rem;
}

.footer-column {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    font-size: 0.7rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #C29D3D !important;
    text-decoration: none;
}

.colorful-icon {
    color: #C29D3D !important;
}

.footer-column ul li a {
    color: #C29D3D;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}



.social-icons li a {
    width: 50px;
    height: 50px;
    background-color: #C29D3D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem; /* Adjust icon size */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons li a i{
    color: #ffffff !important;
}

.social-icons li a:hover {
    background-color: black;
    text-decoration: none !important;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.7rem;
}

.social-icons li {
    margin: 0;
    display: inline-block; /* Ensures the list items behave like inline elements */
}


.footer-bottom {
    text-align: center;
    border-top: 1px solid #333333;
    padding-top: 1rem;
    padding-bottom: 0;
    margin-top: 2rem;
}

.page__footer footer.page__footer {
    padding-bottom: 0;
}

.footer-bottom p {
    margin-bottom: 1.6rem;
}

.footer-bottom a:not(.site-footer__badge) {
    color: #C29D3D !important;
    text-decoration: none;
}

.footer-bottom a:not(.site-footer__badge):hover {
    text-decoration: underline;
}

/* Made-by badge — inspired by 8man, signature PSWD detail */
.site-footer__badge {
    --badge-orbit-duration: 6.8s;
    --badge-orbit-thickness: 3px;
    --badge-trace-length: 8;
    --badge-trace-opacity: 0.67;
    --badge-rail: color-mix(in srgb, var(--color-paper) 90%, var(--color-ink) 10%);
    position: relative;
    display: inline-flex;
    justify-self: start;
    align-items: center;
    width: max-content;
    max-width: 100%;
    padding: 0.24rem;
    border: 0;
    border-radius: calc(0.52rem - 3px);
    background: transparent;
    box-shadow: 0 0.45rem 1.3rem -0.65rem var(--color-black-22);
    isolation: isolate;
    overflow: visible;
    transition: transform var(--duration-base) var(--ease-out);
}
.site-footer__badge-orbit {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}
.site-footer__badge-orbit-fill {
    fill: var(--color-paper);
}
.site-footer__badge-orbit-rail,
.site-footer__badge-orbit-trace {
    fill: none;
    vector-effect: non-scaling-stroke;
}
.site-footer__badge-orbit-rail {
    stroke: var(--badge-rail);
    stroke-width: 2px;
}
.site-footer__badge-orbit-trace {
    stroke: #C29D3D;
    stroke-width: var(--badge-orbit-thickness);
    stroke-linecap: round;
    opacity: 0;
    filter: drop-shadow(0 0 1px var(--color-badge-accent-soft));
}
.site-footer__badge-orbit.is-ready .site-footer__badge-orbit-trace {
    opacity: var(--badge-trace-opacity);
}
.site-footer__badge-core {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.24em;
    min-height: 1.14rem;
    padding: 0.24rem 0.88rem;
    border-radius: max(1px, calc(0.28rem - 3px));
    background: transparent;
    color: var(--color-graphite);
    font-size: 0.66rem;
    line-height: 1;
    letter-spacing: 0.035em;
    font-weight: 500;
    text-transform: none;
    white-space: nowrap;
}
.site-footer__badge-core strong {
    font-weight: 600;
}
.site-footer__badge:hover,
.site-footer__badge:focus-visible {
    transform: translateY(-2px);
    text-decoration: none !important;
}

@media (min-width: 860px) {
    .site-footer__badge { justify-self: end; }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-column {
        flex: 1 1 100%;
    }

    .footer-links {
        padding-left: 0;
    }

}




.sep-section {
    padding: 0 5vw 0 5vw;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    background-color: #C29D3D;
    text-align: center;
    margin-bottom: -15rem;
    color: black;
}

@media (max-width: 1300px) {
    .sep-section {
        margin-bottom: -16rem;
    }
}

@media (max-width: 1100px) {
    .sep-section {
        margin-bottom: -17rem;
    }
}

@media (max-width: 900px) {
    .sep-section {
        margin-bottom: -8rem;
    }
}



.small-bottom-margin {
    margin-bottom: 20px !important;
}











.overlapping-hero-img {
    position: relative;
    width: 400px;
    bottom: 180px;
    left: 70%;
    transform: translateX(-50%);
    border-radius: 5px;
    z-index: 100;
}

.content {
    position: relative;
    bottom: 250px;
    margin-bottom: -200px;
}


.small-top-margin {
    margin-top: 5rem;
}

.home-heading-one {
    padding-left: 3rem;
    max-width: 40vw;
    margin-top: -0.5rem;
}


@media (max-width: 1250px) {
    .overlapping-hero-img {
        bottom: 150px;
    }
}

@media (max-width: 900px) {
    .overlapping-hero-img {
        width: 300px;
        bottom: 120px;
        left: 50%;
    }

    .content {
        bottom: 80px;
        margin-bottom: -20px;
    }

    .home-heading-one {
        padding-left: 0;
        text-align: center;
        max-width: 100vw;
        margin-top: 0.5rem;
    }

}


.page__hero--overlay {
    background-attachment: fixed !important;
}


@media screen and (max-width: 768px) {
    .page__hero--overlay {
        background-attachment: scroll !important;
    }
}




.about-layout {
    display: flex;
    align-items: stretch;
    gap: 40px;
    flex-wrap: nowrap;
    margin-top: 3rem;
}

.about-image {
    flex: 0 0 30%;
    max-width: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.about-primary-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    border: 1px solid #C29D3D;
    background-color: rgba(194, 157, 61, 0.1);
    border-radius: 8px;
    box-sizing: border-box;
}

.about-primary-box h3 {
    margin-bottom: 1rem;
}

.about-primary-box p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.about-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 3rem;
    justify-content: space-between;
}

.about-box {
    flex: 1 1 calc(48%);
    padding: 2rem;
    border: 1px solid black;
    background-color: rgba(194, 157, 61, 0.05);
    border-radius: 8px;
    box-sizing: border-box;
}



@media (max-width: 768px) {
    .about-layout {
        flex-direction: column;
        align-items: center;
    }

    .about-image {
        max-width: 70vw;
    }

    .about-primary-box {
        width: 100%;
        margin-top: 1.5rem;
    }

    .about-boxes {
        flex-direction: column;
    }

    .about-box {
        flex: 1 1 100%;
    }
}





.box-with-bg {
    position: relative;
    background-image: url('/images/background-1.webp');
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

.box-with-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.box-with-bg > * {
    position: relative;
    z-index: 1;
}

.bg-two {
    background-image: url('/images/background-2.webp');
}

.bg-three {
    background-image: url('/images/background-3.webp');
}




.athletes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.athlete-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.athlete-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: border 0.3s ease;
    aspect-ratio: 4 / 5;
}

.athlete-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

/* Hover zoom effect */
.athlete-image:hover img {
    transform: scale(1.05);
}

/* Click effect */
.athlete-image.clicked {
    border: 2px solid #C29D3D;
}

/* Overlay on click */
.athlete-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    text-align: left;
}

.athlete-image.clicked .athlete-overlay {
    display: flex;
}

.info-hint {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 4px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 1;
}

.athlete-card h4 {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Responsive: 2 columns on tablets and smaller */
@media (max-width: 768px) {
    .athletes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Optional: 1 column on very small screens */
@media (max-width: 480px) {
    .athletes-grid {
        grid-template-columns: 1fr;
    }
}



.overlapping-hero-img-home {
    border: 1.5px solid #C29D3D;
}









.testimonials {
    padding: 2rem 1rem;
}

.testimonials h2 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial {
    background-color: rgba(194, 157, 61, 0.1);
    border: 1px solid #C29D3D;
    border-radius: 8px;
    padding: 1.5rem;
    flex: 1 1 calc(45% - 1rem);
    box-sizing: border-box;
    max-width: 500px;
    color: white;
    font-size: 1rem;
    line-height: 1.5;
}

.testimonial p {
    text-align: center;
    font-style: italic;
}

.testimonial-author {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: #C29D3D;
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 768px) {
    .testimonial {
        flex: 1 1 100%;
    }
}






.shop-section {
    margin-top: 4rem;
    text-align: center;
}


.shop-heading {
    margin-bottom: 2rem;
    text-align: center;
}

.shop-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    padding: 0 1rem;
}

.product-button-wrapper {
    flex: 1 1 calc(33% - 40px);
    max-width: 400px;
    display: flex;
    justify-content: center;
}

.shop-product-link-card {
    width: 100%;
}

.shop-product-link-card__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 1.15rem;
    border-radius: 12px;
    border: 1px solid rgba(194, 157, 61, 0.35);
    background: rgba(194, 157, 61, 0.06);
    color: #f4f4f4;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.shop-product-link-card__inner:hover,
.shop-product-link-card__inner:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(194, 157, 61, 0.8);
}

.shop-product-link-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #111111;
}

.shop-product-link-card__title {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.3;
}

.shop-product-link-card__subtitle {
    margin: 0.2rem 0 0;
    color: #e4d19b;
    font-size: 0.86rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.shop-product-link-card__inner .shop-product-link-card__subtitle {
    margin: 0.2rem 0 0;
}

.shop-product-link-card__subtitle + .shop-product-link-card__price {
    margin-top: 0.18rem;
}

.shop-product-link-card__price {
    margin: 0.4rem 0 0;
    color: #C29D3D;
    font-weight: 700;
    font-size: 1.05rem;
}

.shop-product-link-card__inner .shop-product-link-card__price {
    margin: 0.4rem 0 0;
}

.shop-product-link-card__inner .shop-product-link-card__subtitle + .shop-product-link-card__price {
    margin-top: 0.18rem;
}

.shop-product-link-card__summary {
    margin: 0.8rem 0 1rem;
    color: #d7d7d7;
    line-height: 1.45;
    flex-grow: 1;
}

.shop-product-link-card__inner .shop-product-link-card__summary {
    margin: 0.8rem 0 1rem;
}

.shop-product-link-card__cta {
    align-self: flex-start;
    margin: 0;
}

.shop-product-link-card--compact .shop-product-link-card__inner {
    padding: 0.95rem;
}

.shop-product-link-card--compact .shop-product-link-card__title {
    font-size: 1.05rem;
}

.competition-signup-card .shop-product-link-card__inner {
    align-items: flex-start;
}

.competition-signup-card .shop-product-link-card__summary {
    margin-bottom: 0.8rem;
}

.competition-signup-card .product-note--warning {
    margin: 0 0 1rem;
    text-align: left;
}

.competition-signup-card .js-signup-code-trigger {
    margin-top: auto;
}

.shop-grid--recommended {
    gap: 24px;
}

.shop-grid--recommended .product-button-wrapper {
    flex: 1 1 calc(33% - 24px);
    max-width: 320px;
}

.shop-product-page {
    width: min(1120px, 100%);
    margin: 1.2rem auto 3.5rem;
    padding: 0 1rem;
}

.shop-product-layout-hero {
    width: min(1120px, calc(100% - 2rem));
    margin: 1.45rem auto 0;
    border: 1px solid rgba(194, 157, 61, 0.45);
    border-radius: 16px;
    padding: 2.2rem 1.4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(194, 157, 61, 0.22), rgba(31, 31, 31, 0.9));
}

.shop-product-layout-hero__kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    color: #e4d19b;
}

.shop-product-layout-hero__title {
    margin: 0.55rem 0 0;
    font-size: clamp(1.8rem, 5vw, 2.7rem);
    line-height: 1.15;
}

.shop-product-layout-hero__subtitle {
    margin: 0.35rem 0 0;
    color: #e4d19b;
    font-size: 0.92rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.shop-product-layout-hero__price {
    margin: 0.6rem 0 1.1rem;
    font-size: 1.15rem;
    color: #f3dfa3;
    font-weight: 700;
}

.shop-product-layout-content {
    margin-top: 0;
}

.shop-product-page__back-link {
    margin-bottom: 1rem;
}

.shop-product-page__back-link .btn {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.shop-product-page__back-link .btn:hover,
.shop-product-page__back-link .btn:focus-visible {
    background-color: rgba(194, 157, 61, 0.2);
    border-color: #C29D3D;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.shop-product-gallery-full {
    margin-top: 0.45rem;
}

.shop-product-gallery-existing {
    margin: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    float: none;
}

.shop-product-gallery-existing > a,
.shop-product-gallery-existing > img {
    display: block;
    width: 100% !important;
    float: none !important;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(194, 157, 61, 0.28);
    background: #121212;
}

.shop-product-gallery-existing > a img,
.shop-product-gallery-existing > img {
    width: 100%;
    display: block;
    margin: 0;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.shop-product-gallery-existing--square > a img,
.shop-product-gallery-existing--square > img {
    aspect-ratio: 1 / 1;
}

.shop-product-gallery-existing--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shop-product-gallery-existing--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-product-details {
    margin-top: 1.4rem;
    padding: 1.2rem 1.15rem;
    border: 1px solid rgba(194, 157, 61, 0.3);
    border-radius: 12px;
    background: rgba(194, 157, 61, 0.07);
}

.shop-product-details__intro {
    margin: 0;
    line-height: 1.6;
}

.shop-product-details__intro + .shop-product-details__intro {
    margin-top: 0.45rem;
}

.shop-product-details__heading {
    margin: 1.2rem 0 0.35rem;
    font-size: 1.05rem;
}

.shop-product-details__list {
    margin: 0;
    padding-left: 1.1rem;
    line-height: 1.5;
}

.shop-product-details__list li {
    margin-bottom: 0.35rem;
}

.shop-product-details__sizes {
    margin: 0.85rem 0 0;
}

.shop-product-buy-box {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(194, 157, 61, 0.35);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.shop-product-buy-box__heading {
    margin: 0 0 0.9rem;
    font-size: 1.05rem;
}

.shop-product-buy-box .shopify-buy-frame--product {
    width: min(100%, 360px) !important;
}

.shop-recommended-products {
    margin-top: 2.4rem;
}

.shop-recommended-products__title {
    margin-bottom: 1.2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .product-button-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .shop-product-page {
        margin-top: 1.15rem;
    }

    .shop-grid--recommended .product-button-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .shop-product-gallery-existing--4 {
        grid-template-columns: 1fr 1fr;
    }

    .shop-product-gallery-existing--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .shop-grid {
        padding: 0;
    }

    .shop-product-link-card__inner {
        padding: 1rem;
    }

    .shop-product-gallery-existing--4 {
        grid-template-columns: 1fr 1fr;
    }

    .shop-product-gallery-existing--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}



.bigger {
    font-size: 120% !important;
}

.button-and-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.product-note {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    text-align: center;
    color: #aaa;
    width: 100%;
}

.product-note--warning {
    margin: 0.75rem 0 1rem;
    color: #e6cf8d;
    font-size: 0.9rem;
}



.product-custom {
    background-color: #1F1F1F;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
}

.product-image {
    max-width: 100%;
    width: 300px;
    height: auto;
    margin-bottom: 16px;
}

.product-title {
    font-weight: bold;
    margin-bottom: 8px;
}

.product-price {
    font-size: 1rem;
    color: #d4b76a;
    margin-bottom: 16px;
}






/* Form */

.competition-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.competition-links .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-bottom: 0;
    width: 190px;
    min-height: 42px;
    text-align: center;
}

.competition-links .btn--dark {
    border: 1px solid #C29D3D;
}

.competition-gallery-quad {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    width: min(100%, 680px);
    margin: 1rem auto 0;
}

.competition-gallery-quad > a {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    transition: box-shadow 0.2s ease-in-out;
}

.competition-gallery-quad > a:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.competition-gallery-quad > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.future-competition-gallery {
    display: block;
    width: min(100%, 260px);
    margin: 0 auto 0.8rem;
}

.future-competition-gallery > a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.future-competition-gallery > a img {
    width: 100%;
    height: auto;
    margin: 0;
}

.future-competition-inline-link {
    color: #111111 !important;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.18em;
}

.future-competition-inline-link:hover,
.future-competition-inline-link:focus {
    color: #5a5a5a !important;
}

.competition-form {
    background-color: #1F1F1F;
    padding: 2rem;
    border-radius: 12px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #eaeaea;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #1B1B1B;
    border: 1px solid #C29D3D;
    border-radius: 8px;
    padding: 0.75rem;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cccccc;
}






.padded {
    margin: 0 2rem;
}

/* Partner Page Styles */
.partner-section {
  padding: 2rem 0;
}
.partner-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
  max-width: 1200px; /* Or another max-width as you prefer */
  padding: 0 1rem;
}
.partner-container + .partner-container {
  margin-top: 4rem;
}
.partner-image {
  flex: 1;
  max-width: 400px; /* Adjust as needed */
}
.partner-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.partner-content {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.partner-logo {
  max-width: 150px; /* Adjust as needed */
  margin-bottom: 1.5rem;
}
.partner-logo img {
  width: 100%;
}
.partner-logo.partner-logo-duo {
  max-width: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.partner-logo.partner-logo-duo img {
  width: auto;
  height: 32px;
}
.partner-logo.partner-logo-duo .partner-logo-secondary {
  transform: translateY(3px);
}
.partner-content h2 {
  margin-top: 0;
  font-size: 2rem;
}
.partner-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.partner-content p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.partner-image-no-photo {
  display: flex;
}

.partner-brand-card {
  width: 100%;
  min-height: 280px;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(194, 157, 61, 0.35);
  background:
    radial-gradient(circle at 15% 20%, rgba(194, 157, 61, 0.16), transparent 55%),
    linear-gradient(135deg, #1a1a1a, #0e0e0e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-brand-card img {
  width: 100%;
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}


.partner-container.partner-container-reversed {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .partner-container {
    flex-direction: column;
  }
  .partner-container.partner-container-reversed {
    flex-direction: column;
  }
  .partner-content {
    order: 1;
    align-items: center;
    text-align: center;
  }
  .partner-image {
    order: 2;
    margin-top: 2rem;
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }
  .partner-content h2 {
    order: 1;
  }
  .partner-logo {
    order: 2;
  }
  .partner-logo.partner-logo-duo {
    justify-content: center;
  }
  .partner-content p {
    order: 3;
  }
  .partner-content p:last-child {
    justify-content: center;
  }
  .partner-image-no-photo {
    display: block;
    width: 100%;
  }
  .partner-brand-card {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }
}
