:root {
    --primary-blue: #0A1FF0;
    --secondary-blue: #6D7AF7;
    --card-bg: #EEF1F5;
    --body-bg: #FFFFFF;
    --text-color: var(--primary-blue);
    --border-rad: 80px;
    --gap: 30px;
    --dot-size: 14px;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--body-bg);
    color: var(--text-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================== FIXED NAVIGATION RAIL ================== */
.nav-rail {
    position: fixed;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
}

.nav-dot {
    width: var(--dot-size);
    height: var(--dot-size);
    border-radius: 50%;
    border: 2px solid var(--body-bg);
    background-color: transparent;
    transition: all 0.3s ease;
}

.nav-dot.active,
.nav-dot:hover {
    background-color: var(--body-bg);
}

/* ================== MAIN LAYOUT ================== */
.container {
    padding: var(--gap);
    padding-right: 90px;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    scroll-snap-type: y mandatory;
    height: 100vh;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

.card {
    flex-shrink: 0;
    height: calc(100vh - (var(--gap) * 2));
    border-radius: var(--border-rad);
    background-color: var(--card-bg);
    position: relative;
    overflow: hidden;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    padding: 60px;
}

/* ================== VERTICAL MARQUEE ================== */
.vertical-marquee-container {
    position: fixed;
    top: -400%;
    right: 33px;
    height: 1000vh;
    display: flex;
    justify-content: center;
    z-index: 50;
    pointer-events: none;
}

.vertical-marquee-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-blue);
    transition: transform 0.1s ease-out;
}

/* ================== HERO SECTION ================== */
.hero-card {
    background-color: var(--card-bg);
}

.hero-header {
    position: absolute;
    top: 60px;
    right: 60px;
    z-index: 50;
}

.top-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.top-nav a {
    font-weight: 800;
    font-size: 32px;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
    transition: opacity 0.2s;
}

.top-nav a:hover {
    opacity: 0.7;
}

.hero-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 60px;
}

.hero-title {
    font-size: 16vw;
    line-height: 0.5;
    font-weight: 900;
    text-transform: uppercase;
    z-index: 10;
    white-space: nowrap;
    position: relative;
    letter-spacing: -0.04em;
}

.title-top {
    display: block;
}

.title-bottom {
    display: block;
}

.section-title3 {
    font-size: 2vw;
    font-weight: 200;
    word-spacing: 0.3em;
    padding-top: 80px;
    padding-left: 8px;
}

.hero-blur-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: rgba(10, 31, 240, 0.2);
    filter: blur(80px);
    border-radius: 50%;
    top: 30%;
    left: 10%;
    z-index: 0;
}

.hero-blur-blob.blob-2 {
    top: 60%;
    left: 20%;
    background-color: rgb(125, 192, 255);
    width: 500px;
    height: 300px;
}

/* ================== CASES CARD ================== */
.cases-card .project-number {
    color: var(--primary-blue);
}

.cases-card .project-name {
    color: var(--primary-blue);
}

.cases-card a {
    color: var(--primary-blue);
}

.cases-card .go-to-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 700;
    width: 100%;
    transition: color 0.4s ease;
}

.cases-card .link-text {
    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 15px;
}

.cases-card .go-line {
    flex-grow: 1;
    height: 2px;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.cases-card .go-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--primary-blue);
    transition: width 0.6s ease;
}

.cases-card .go-to-link:hover .go-line::after {
    width: 100%;
}

/* ================== PROJECT CARDS ================== */
.project-card {
    background-color: #2D3E50;
    color: #FFFFFF;
    justify-content: space-between;
}

.project-bg-blur {
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 120%;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-logo {
    width: 80%;
    height: 80%;
    object-fit: contain;
    filter: blur(70px);
    opacity: 0.7;
}

.bg-logo.red-tint {
    filter: blur(20px) contrast(1.2);
}

.bg-photo-blob {
    width: 60%;
    height: 80%;
    background: linear-gradient(135deg, #7da3a1, #1e2f3d, #5a7b7a);
    filter: blur(100px);
    border-radius: 50%;
    position: absolute;
}

.bg-photo-blob.blob-2 {
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2b4f6e, #ffffff, #0d1e2e);
    opacity: 0.6;
}

.project-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.project-number {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 100;
    letter-spacing: 3px;
}

.return-button {
    display: inline-flex;
    align-items: baseline;
    color: inherit;
    text-decoration: none;
    vertical-align: baseline;
    font-weight: 500;
}

.project-number-about {
    color: var(--primary-blue);
    font-size: 30px;
    font-weight: 100;
    letter-spacing: 3px;
}

.return-button .return-icon {
    font-size: 30px;
    font-weight: 500;
    max-width: 0;
    opacity: 0;
    transform: translateX(10px);
    transition: max-width 0.4s ease, opacity 0.4s ease, transform 0.4s ease, margin-right 0.4s ease;
    white-space: nowrap;
    display: inline-block;
    overflow: hidden;
    margin-right: 0;
}

.return-button:hover .return-icon {
    max-width: 40px;
    opacity: 1;
    transform: translateX(0);
    margin-right: 10px;
}

.return-button .return-text {
    display: inline-block;
}

.project-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-name {
    font-size: 7vw;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.project-description {
    font-size: 1.5vw;
    font-style: italic;
    font-weight: 200;
    max-width: 70%;
}

.project-client {
    font-size: 2vw;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.project-footer {
    display: flex;
    align-items: flex-end;
}

.go-to-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    width: 100%;
    transition: color 0.4s ease;
}

.link-text {
    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 15px;
}

.go-line {
    flex-grow: 1;
    height: 2px;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.go-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #FFFFFF;
    transition: width 0.6s ease;
}

.go-to-link:hover .go-line::after {
    width: 100%;
}

.ggd-card {
    background-color: #003547;
}

.stc-card {
    background-color: #da291c;
}

.prestatie-card {
    background-color: #116600b3;
}

.project4-card {
    background-color: #fd7d14;
}

/* ================== ABOUT SECTION ================== */
.about-card {
    background-color: var(--card-bg);
    color: var(--primary-blue);
    justify-content: center;
    align-items: first baseline;
}

.about-bg-text {
    position: absolute;
    font-size: 30vw;
    font-weight: 900;
    color: rgba(10, 31, 240, 0.05);
    filter: blur(20px);
    z-index: 0;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.about-bg-text.p4 {
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.698);
    filter: blur(30px);
}

.about-bg-text.cases {
    color: rgba(10, 29, 240, 0.072);
}

.about-content {
    position: relative;
    z-index: 10;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.section-title {
    font-size: 8vw;
    font-weight: 900;
    letter-spacing: -2px;
}

.section-title2 {
    font-size: 2vw;
    font-weight: 200;
    letter-spacing: -1px;
}


.title-i {
    font-size: 8vw;
    font-weight: 200;
    letter-spacing: -2px;
    color: #0A1FF0;
}

.about-text {
    max-width: 60%;
    font-size: 1.5vw;
    font-weight: 200;
    line-height: 1.5;
    padding-top: 2vw;
}

.meer-over-mij {
    font-size: 1.5vw;
    font-weight: 400;
    margin-bottom: 20px;
    padding-top: 20px;
    display: inline-flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    border-bottom: 2px solid currentColor;
    padding-bottom: 2px;
}

.meer-over-mij::before {
    content: ">";
    font-size: inherit;
    font-weight: inherit;
    max-width: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: max-width 0.4s ease, opacity 0.4s ease, transform 0.4s ease, margin-right 0.4s ease;
    white-space: nowrap;
    display: inline-block;
    overflow: hidden;
    margin-right: 0;
}

.meer-over-mij:hover::before {
    max-width: 30px;
    opacity: 1;
    transform: translateX(0);
    margin-right: 15px;
}

.about-footer-links {
    margin-top: auto;
    display: flex;
    flex-direction: row;
    align-self: flex-start;
    align-items: center;
    gap: 40px;
    font-size: 24px;
    font-weight: 800;
    text-decoration: underline;
}

/* ================== CONTACT / FOOTER SECTION ================== */
.contact-card {
    background-color: var(--primary-blue);
    color: #FFFFFF;
}

.contact-bg-pattern {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100px 100px;
}

.contact-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

.contact-card .section-title {
    color: #FFFFFF;
    margin-bottom: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 60px;
    margin-left: 6px;
}

.footer-heading {
    font-size: 2vw;
    font-weight: 400;
    margin-bottom: 10px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-list:not(.split) {
    padding-left: 50px;
}

.footer-list a {
    font-size: 24px;
    font-weight: 400;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.footer-list a[href^="project"] {
    display: inline-flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    border-bottom: 2px solid currentColor;
    padding-bottom: 2px;
}

.footer-list a[href^="project"]::before {
    content: ">";
    font-size: inherit;
    font-weight: inherit;
    max-width: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: max-width 0.4s ease, opacity 0.4s ease, transform 0.4s ease, margin-right 0.4s ease;
    white-space: nowrap;
    display: inline-block;
    overflow: hidden;
    margin-right: 0;
}

.footer-list a[href^="project"]:hover::before {
    max-width: 30px;
    opacity: 1;
    transform: translateX(0);
    margin-right: 15px;
}

.footer-list.split a {
    font-size: 32px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    border-bottom: 2px solid currentColor;
    padding-bottom: 2px;
}

.footer-list.split a::before {
    content: ">";
    font-size: inherit;
    font-weight: inherit;
    max-width: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: max-width 0.4s ease, opacity 0.4s ease, transform 0.4s ease, margin-right 0.4s ease;
    white-space: nowrap;
    display: inline-block;
    overflow: hidden;
    margin-right: 0;
}

.footer-list.split a:hover::before {
    max-width: 30px;
    opacity: 1;
    transform: translateX(0);
    margin-right: 15px;
}

.footer-spinning-circle {
    position: absolute;
    bottom: -250px;
    right: -250px;
    z-index: 0;
}

.scroll-prompt {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 20px;
}

.scroll-down-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    animation: bounce 2s infinite;
}

.scroll-down-hint svg {
    width: 48px;
    height: 48px;
    stroke: #FFFFFF;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ================== DETAIL PROJECT PAGES ================== */
.detail-page-container {
    padding: var(--gap);
    padding-right: 90px;
    min-height: 100vh;
}

.detail-card {
    flex-shrink: 0;
    height: calc(100vh - (var(--gap) * 2));
    border-radius: var(--border-rad);
    background-color: var(--primary-blue);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    padding: 60px;
}

.gallery-card {
    justify-content: center;
}

.p1-card { background-color: #003547 !important; }
.p2-card { background-color: #da291c !important; }
.p3-card { background-color: #2c6200d7 !important; }
.p4-card { background-color: #fd7d14 !important; }

.detail-header-block {
    margin-bottom: 40px;
}

.detail-project-number {
    font-size: 30px;
    font-weight: 200;
    letter-spacing: 3px;
    margin-bottom: 35px;
}

.detail-project-title {
    font-size: 4vw;
    font-weight: 800;
    text-transform: uppercase;
}

.detail-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.detail-col-header {
    font-size: 42px;
    font-weight: 400;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.detail-text {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 200;
    opacity: 0.95;
    margin-bottom: 20px;
}

.detail-text2 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 200;
    opacity: 0.95;
    text-indent: 20px;
}

.detail1-text {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 200;
    font-style: italic;
    opacity: 0.95;
    margin-bottom: 30px;
}

.detail-sub-header {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
}

.detail-link {
    text-decoration: underline;
}

/* ================== GALLERY GRID ================== */
.detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: 300px 200px 200px;
    gap: 30px;
    margin-top: 0;
}

.dg-item {
    border: 2px solid #FFFFFF;
    border-radius: 24px;
    background-color: transparent;
    overflow: hidden;
}

.dg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dg-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gallery P1 */
.dg-top-1.p1 { grid-column: 1 / 6; grid-row: 1 / 3; }
.dg-top-2.p1 { grid-column: 6 / 9; grid-row: 1 / 4; }
.dg-bot-left.p1 { grid-column: 1 / 4; grid-row: 3; padding: 10px; border: none; background-color: var(--body-bg); color: #003547;}
.dg-bot-mid.p1 { grid-column: 4 / 6; grid-row: 3; }

/* Gallery P2 */
.dg-top-1.p2 { grid-column: 1 / 3; grid-row: 1 / 3; }
.dg-top-2.p2 { grid-column: 6 / 9; grid-row: 1 / 4; }
.dg-bot-left.p2 { grid-column: 1 / 6; grid-row: 3; }
.dg-bot-mid.p2 { grid-column: 4 / 6; grid-row: 3; }

/* Gallery P3 */
.dg-top-1.p3 { grid-column: 1 / 4; grid-row: 1 / 4; }
.dg-top-2.p3 { grid-column: 4 / 9; grid-row: 1 / 3; }
.dg-bot-left.p3 { grid-column: 1 / 3; grid-row: 2 / 4; }
.dg-bot-mid.p3 { grid-column: 4 / 6; grid-row: 2 / 4; }
.dg-bot-right-1.p3 { grid-column: 6 / 9; grid-row: 2; }
.dg-bot-right-2.p3 { grid-column: 6 / 9; grid-row: 3; }

/* Gallery P4 */
.dg-top-1.p4 { grid-column: 1 / 4; grid-row: 1 / 4; overflow-y: scroll; }
.dg-top-1.p4::-webkit-scrollbar { display: none; }
.dg-top-1.p4 img { height: auto; object-fit: unset; }
.dg-top-2.p4 { grid-column: 4 / 8; grid-row: 1 / 3; }
.dg-bot-mid.p4 { grid-column: 4 / 6; grid-row: 2 / 4; }
.dg-bot-right-1.p4 { grid-column: 6 / 9; grid-row: 2; }
.dg-bot-right-2.p4 { grid-column: 6 / 9; grid-row: 3; }

/* ================== RESPONSIVE VISIBILITY ================== */
.desktop-only {
    display: revert;
}

.detail-gallery-grid.desktop-only {
    display: grid;
}

.mobile-only {
    display: none;
}

.mobile-card {
    display: none;
}

/* ================== MOBILE GALLERY CAROUSEL ================== */
.gallery-carousel {
    display: none;
}

.gallery-carousel-track-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.gallery-carousel-slide {
    min-width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-carousel-placeholder {
    opacity: 0.3;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.gallery-carousel-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.gallery-carousel-dots span.active {
    background-color: #FFFFFF;
    transform: scale(1.3);
}

/* ================== MOBILE ================== */
@media (max-width: 768px) {
    :root {
        --dot-size: 10px;
        --gap: 20px;
        --border-rad: 40px;
    }

    .nav-rail {
        left: 35px;
        gap: 15px;
    }

    .container,
    .detail-page-container {
        padding-right: 40px;
    }

    .vertical-marquee-container {
        right: 10px;
    }

    .vertical-marquee-text {
        font-size: 14px;
        font-weight: 800;
    }

    .card,
    .detail-card {
        padding: 30px;
    }

    .top-nav a {
        font-size: 24px;
    }

    .hero-content {
        padding-left: 20px;
        justify-content: center;
        text-align: left;
    }

    .hero-header {
        top: 30px;
        right: 30px;
    }

    .hero-title {
        font-size: 24vw;
        text-align: left;
    }

    .hero-blur-blob {
        width: 250px;
        height: 250px;
        filter: blur(50px);
    }

    .hero-blur-blob.blob-2 {
        width: 250px;
        height: 200px;
    }

    .project-name {
        font-size: 8vw;
        margin-bottom: 15px;
    }

    .project-description {
        max-width: 100%;
        font-size: 20px;
    }

    .project-client {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .project-number {
        font-size: 20px;
        margin-top: 40px;
        margin-left: 20px;
    }

    .project-details {
        justify-content: flex-start;
        margin-top: 30px;
        margin-left: 20px;
    }

    .go-to-link {
        font-size: 24px;
        margin-bottom: 20px;
        margin-left: 20px;
    }

    .section-title {
        font-size: 14vw;
        margin-top: 20px;
    }

    .about-content {
        margin-left: 20px;
    }

    .about-content .section-title {
        font-size: 40px;
    }

    .title-i {
        font-size: 40px;
    }

    .about-bg-text {
        font-size: 40vw;
    }

    .about-text {
        max-width: 100%;
        font-size: 20px;
        margin-top: 20px;
    }

    .meer-over-mij {
        font-size: 20px;
        margin-top: 10px;
    }

    .about-footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: auto;
        margin-bottom: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .contact-card .section-title {
        font-size: 40px;
    }

    .footer-heading {
        font-size: 24px;
    }

    .footer-list a {
        font-size: 18px;
        font-weight: 400;
        text-decoration-thickness: 1px;
    }

    .footer-list.split a {
        font-size: 24px;
        font-weight: 800;
    }

    .footer-spinning-circle {
        transform: scale(0.3);
        transform-origin: bottom right;
        bottom: -100px;
        right: -100px;
    }

    .detail-section {
        margin-left: 20px;
    }

    .detail-project-number {
        font-size: 20px;
        margin-bottom: 15px;
        margin-top: 40px;
    }

    .detail-project-title {
        font-size: 30px;
        font-weight: 800;
    }

    .detail-text {
        font-size: 20px;
        line-height: 1.2;
    }

    .detail-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .detail-gallery-grid {
        display: none;
    }

    #gallery.detail-card {
        padding: 0;
        position: relative;
        overflow: hidden;
    }

    .gallery-carousel {
        display: flex;
        flex-direction: column;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        padding: 0;
    }

    .gallery-carousel-track-wrapper {
        flex: 1;
        border-radius: 0;
        height: 100%;
    }

    .gallery-carousel-track {
        height: 100%;
    }

    .gallery-carousel-slide {
        height: 100%;
        min-width: 100%;
        aspect-ratio: unset;
        border-radius: 0;
        border: none;
    }

    .gallery-carousel-dots {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
        z-index: 10;
    }

    .detail-col-header {
        font-size: 28px;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .mobile-card {
        display: flex !important;
    }
}
