/**
 * Driven Theme - Main Styles
 * Ported from the original Next.js/Tailwind static site
 *
 * @package Driven
 * @since 1.0.0
 */

/* ========================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ======================================== */

:root {
    /* Fonts */
    --font-business-system: 'AA00BusinessSystem', sans-serif;
    --font-helvetica: 'Helvetica', sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --default-font-family: var(--font-helvetica);

    /* Colors */
    --color-black: #000;
    --color-white: #fff;
    --color-red: #e80300;
    --driven-dot-active-color: #e80300;
    --color-gray-light: #F3F3F3;
    --color-gray-mid: #5a5a5a;

    /* Spacing */
    --spacing: 0.25rem;
    --spacing-container: clamp(12px, calc(-9px + 2vw), 30px);

    /* Layout */
    --header-h: clamp(40px, calc(25px + 2vw), 57px);
    --width-page-binding: clamp(30px, calc(22px + 4.2vw), 85px);
    --width-tix-sidebar: clamp(13rem, 19vw, 19.5rem);

    /* Z-index layers */
    --z-header: 50;
    --z-entrance: 60;
    --z-dotted-layer: 5;
    --z-dotted-layer-above: 6;
    --z-page-marquee: 8;
    --z-page-sticky-bar: 10;
    --z-skip: 99999;

    /* Typography scale - exact match from original compiled CSS */
    --text-headline: clamp(1.75rem, .25rem + 4.3vw, 3.875rem);
    --text-headline-sm: clamp(1.25rem, .4rem + 2.2vw, 2.125rem);
    --text-headline-xs: clamp(1rem, 1.8vw, 1.5rem);
    --text-headline-base: clamp(1rem, 2.2vw - .1rem, 1.5rem);
    --text-base: clamp(1rem, 2.2vw - .1rem, 1.5rem);
    --text-xs: 0.75rem;
    --text-tiny: 0.6875rem;
    --tracking-tighter: -0.04em;

    /* Dash button */
    --dash-border-width: 1px;
    --dash-border-horizontal: repeating-linear-gradient(to right, var(--color-black) 0, var(--color-black) 8px, transparent 8px, transparent 16px);
    --dash-border-vertical: repeating-linear-gradient(to bottom, var(--color-black) 0, var(--color-black) 8px, transparent 8px, transparent 16px);

    /* Transitions */
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-default: 0.15s;
    --duration-300: 300ms;
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    line-height: 1;
    font-family: var(--font-business-system);
}

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overscroll-behavior: none;
    background-color: var(--color-white);
    color: var(--color-black);
    min-height: 100vh;
    font-family: var(--font-business-system);
    font-size: var(--text-base);
    line-height: 1;
    letter-spacing: var(--tracking-tighter);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

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

/* ========================================
   UTILITY CLASSES (Tailwind-equivalent)
   ======================================== */

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.driven-skip-link:focus {
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-skip);
    width: auto;
    height: auto;
    padding: 1rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: var(--color-white);
    color: var(--color-black);
}

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.static { position: static; }

/* Inset */
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }

/* Width & Height */
.w-full { width: 100%; }
.w-auto { width: auto; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.min-h-screen { min-height: 100vh; }

/* Flex */
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.gap-x-1 { column-gap: 0.25rem; }
.gap-x-2 { column-gap: 0.5rem; }
.gap-x-3 { column-gap: 0.75rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-y-1 { row-gap: 0.25rem; }
.gap-y-3 { row-gap: 0.75rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-7 { row-gap: 1.75rem; }
.gap-y-9 { row-gap: 2.25rem; }
.gap-y-10 { row-gap: 2.5rem; }
.flex-wrap { flex-wrap: wrap; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.overflow-scrolling { -webkit-overflow-scrolling: touch; }

/* Text */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.uppercase { text-transform: uppercase; }
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.whitespace-nowrap { white-space: nowrap; }
.min-w-0 { min-width: 0; }
.min-w-\[fit-content\] { min-width: fit-content; }
.top-1\/2 { top: 50%; }
.left-1\/2 { left: 50%; }
.-translate-x-1\/2 { transform: translateX(-50%); }

/* Spacing */
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-1\.5 { padding-bottom: 0.375rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-12 { padding-bottom: 3rem; }
.py-2\.25 { padding-top: 0.5625rem; padding-bottom: 0.5625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-11 { padding-top: 2.75rem; padding-bottom: 2.75rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }

/* Border */
.border-t-2 { border-top-width: 2px; border-top-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-black { border-color: var(--color-black); }

/* Rounded */
.rounded-full { border-radius: 9999px; }

/* Background */
.bg-white { background-color: var(--color-white); }
.bg-black { background-color: var(--color-black); }

/* Opacity */
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }

/* Transform */
.scale-0 { transform: scale(0); }
.scale-100 { transform: scale(1); }

/* Transition */
.transition-transform {
    transition-property: transform;
    transition-timing-function: var(--ease-in-out);
    transition-duration: var(--duration-default);
}
.duration-300 {
    transition-duration: 300ms;
}

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Pointer Events */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* Select */
.select-none { user-select: none; }

/* Aspect Ratio */
.aspect-square { aspect-ratio: 1 / 1; }

/* Object Fit */
.object-cover { object-fit: cover; }

/* Scrollbar */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Shadow */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

@media (min-width: 640px) {
    .sm\:block { display: block; }
}

@media (min-width: 768px) {
    .md\:block { display: block; }
    .md\:hidden { display: none; }
    .md\:flex { display: flex; }
    .md\:grid { display: grid; }
    .md\:flex-row { flex-direction: row; }
    .md\:flex-1 { flex: 1 1 0%; }
    .md\:min-h-0 { min-height: 0; }
    .md\:gap-x-4 { column-gap: 1rem; }
    .md\:gap-y-4 { row-gap: 1rem; }
    .md\:gap-y-14 { row-gap: 3.5rem; }
    .md\:mb-14 { margin-bottom: 3.5rem; }
    .md\:mt-40 { margin-top: 10rem; }
    .md\:pt-5 { padding-top: 1.25rem; }
    .md\:pt-8 { padding-top: 2rem; }
    .md\:pb-3 { padding-bottom: 0.75rem; }
    .md\:pb-5 { padding-bottom: 1.25rem; }
    .md\:pb-12 { padding-bottom: 3rem; }
    .md\:py-0 { padding-top: 0; padding-bottom: 0; }
    .md\:absolute { position: absolute; }
    .md\:top-0 { top: 0; }
    .md\:left-0 { left: 0; }
    .md\:w-full { width: 100%; }
    .md\:px-0 { padding-left: 0; padding-right: 0; }
    .md\:first\:pl-0:first-child { padding-left: 0; }
    .md\:last\:pr-0:last-child { padding-right: 0; }
    .md\:overflow-hidden { overflow: hidden; }
    .md\:overflow-y-auto { overflow-y: auto; }
    .md\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .md\:col-start-2 { grid-column-start: 2; }
    .md\:z-0 { z-index: 0; }
    .md\:pl-container { padding-left: var(--spacing-container); }
    .md\:pr-0 { padding-right: 0; }
    .md\:pt-0 { padding-top: 0; }
}

@media (min-width: 1024px) {
    .lg\:pt-0 { padding-top: 0; }
    .lg\:pt-6 { padding-top: 1.5rem; }
    .lg\:pt-9 { padding-top: 2.25rem; }
    .lg\:pb-6 { padding-bottom: 1.5rem; }
    .lg\:gap-y-8 { row-gap: 2rem; }
    .lg\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
}

@media (min-width: 1280px) {
    .xl\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
    .xl\:flex-\[0\.75\] { flex: 0.75; }
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

/* All headline classes share Helvetica font and bold weight */
[class*="text-headline"] {
    font-family: var(--font-helvetica);
    font-weight: 700;
}

.text-headline {
    font-size: var(--text-headline);
    line-height: 1;
    letter-spacing: var(--tracking-tighter);
}

.text-headline-sm {
    font-size: var(--text-headline-sm);
    line-height: 1;
    letter-spacing: var(--tracking-tighter);
}

.text-headline-xs {
    font-size: var(--text-headline-xs);
    line-height: 1;
    letter-spacing: var(--tracking-tighter);
}

.text-headline-base {
    font-size: var(--text-headline-base);
    line-height: 1;
    letter-spacing: var(--tracking-tighter);
}

.text-base {
    font-size: var(--text-base);
    line-height: 1;
    letter-spacing: var(--tracking-tighter);
}

.text-xs {
    font-size: var(--text-xs);
    line-height: 1;
    letter-spacing: var(--tracking-tighter);
}

.text-tiny {
    font-size: var(--text-tiny);
    line-height: 1;
    letter-spacing: var(--tracking-tighter);
}

/* ========================================
   CONTAINER
   ======================================== */

.container {
    width: 100%;
    padding-left: var(--spacing-container);
    padding-right: var(--spacing-container);
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   PAGE CONTENT LAYOUT
   ======================================== */

.page-content {
    padding-top: var(--header-h);
}

.page-content.pt-\[var\(--header-h\)\],
.pt-\[var\(--header-h\)\] {
    padding-top: var(--header-h);
}

/* ========================================
   DOTTED BACKGROUND PATTERN
   ======================================== */

body.driven-theme {
    background-color: var(--color-white);
    background-image: radial-gradient(circle, #ccc 1px, transparent 1px);
    background-size: 20px 20px;
}

.driven-dotted-bg {
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
}

@media (max-width: 639px) {
    .driven-dotted-bg {
        background-image: url('../images/dotted-layers/dotted-layer-4.png');
    }
}
@media (min-width: 640px) and (max-width: 767px) {
    .driven-dotted-bg {
        background-image: url('../images/dotted-layers/dotted-layer-5.png');
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .driven-dotted-bg {
        background-image: url('../images/dotted-layers/dotted-layer-6.png');
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .driven-dotted-bg {
        background-image: url('../images/dotted-layers/dotted-layer-8.png');
    }
}
@media (min-width: 1280px) {
    .driven-dotted-bg {
        background-image: url('../images/dotted-layers/dotted-layer-12.png');
    }
}

/* ========================================
   BUTTONS - btn-dash (original dashed button)
   ======================================== */

.btn-dash {
    padding-inline: calc(var(--spacing) * 2);
    padding-block: calc(var(--spacing) * 4.5);
    font-weight: 700;
    text-transform: uppercase;
    gap: 0;
    border: none;
    background: var(--color-white);
    color: var(--color-black);
    justify-content: center;
    align-items: center;
    display: inline-flex;
    position: relative;
    text-decoration: none;
    line-height: 1;
    letter-spacing: var(--tracking-tighter);
}

.btn-dash:not(:disabled) {
    cursor: pointer;
}

.btn-dash::before,
.btn-dash::after {
    content: "";
    width: calc(100% + var(--dash-border-width));
    height: var(--dash-border-width);
    background: var(--dash-border-horizontal);
    position: absolute;
    left: 0;
}

.btn-dash::before {
    top: 0;
}

.btn-dash::after {
    bottom: 0;
}

.btn-dash__insert {
    pointer-events: none;
    inset: 0;
    position: absolute;
}

.btn-dash__insert::before,
.btn-dash__insert::after {
    content: "";
    width: var(--dash-border-width);
    background: var(--dash-border-vertical);
    position: absolute;
    top: 0;
    bottom: 0;
}

.btn-dash__insert::before {
    left: 0;
}

.btn-dash__insert::after {
    right: 0;
}

/* ========================================
   MAIN LOGO
   ======================================== */

.driven-main-logo {
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain;
}

@media (min-width: 768px) {
    .driven-main-logo {
        max-width: 50%;
    }
}

@media (min-width: 1280px) {
    .driven-main-logo {
        max-width: 43%;
    }
}

/* ========================================
   PAGE GRID (Invitational layout)
   ======================================== */

.page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .page-grid {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
    }
}

.col-span-full {
    grid-column: 1 / -1;
}

/* ========================================
   STICKY BAR (Invitational sub-header)
   ======================================== */

.sticky-bar-border {
    background-color: var(--color-black);
    width: 100%;
    height: 1px;
    position: relative;
}

.sticky-bar-border::before,
.sticky-bar-border::after {
    content: "";
    background-color: var(--color-black);
    width: 1px;
    height: 12px;
    position: absolute;
}

.sticky-bar-border::before {
    left: 0;
}

.sticky-bar-border::after {
    right: 0;
}

.sticky-bar-border--down::before,
.sticky-bar-border--down::after {
    top: 100%;
}

.sticky-bar-border--up::before,
.sticky-bar-border--up::after {
    bottom: 100%;
}

/* ========================================
   HORIZONTAL RULE
   ======================================== */

hr {
    border: none;
    border-top: 1px solid #ccc;
}

/* ========================================
   IMAGE MARQUEE (Database section slider)
   ======================================== */

.image-marquee-container {
    width: 100%;
    overflow: hidden;
}

.image-marquee {
    overflow: hidden;
    white-space: nowrap;
}

.image-marquee-track {
    display: inline-flex;
    animation: driven-marquee 30s linear infinite;
}

.marquee-image {
    height: 300px;
    width: auto;
    margin-right: 20px;
    flex-shrink: 0;
}

@keyframes driven-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.image-marquee:hover .image-marquee-track {
    animation-play-state: paused;
}

/* ========================================
   ABOUT PAGE MARQUEE
   ======================================== */

.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0;
    background: white;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: driven-marquee-scroll 60s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    padding: 0 10px;
    display: flex;
    align-items: center;
}

.marquee-item .marquee-image,
.about-marquee .marquee-image {
    height: 250px;
    width: auto;
    max-width: none;
    object-fit: cover;
    margin-right: 0;
}

@media (max-width: 768px) {
    .marquee-item .marquee-image,
    .about-marquee .marquee-image {
        height: 200px;
    }
}

@keyframes driven-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   SLIDE PAGE LAYOUT
   ======================================== */

/* On slide pages, remove the transform from the wrapper so position:fixed works */
body.driven-slide-page .driven-main-wrapper {
    transform: none !important;
}

body.driven-slide-page #main-content {
    position: fixed;
    top: var(--header-h, 57px);
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.driven-slide-container,
#horizontal-sections {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.driven-slide-container::-webkit-scrollbar,
#horizontal-sections::-webkit-scrollbar {
    display: none;
}

.driven-slide-container,
#horizontal-sections {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.horizontal-section {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.section-content {
    min-height: 100%;
}

/* Prevent body scroll when in slide mode */
html.driven-slide-page,
body.driven-slide-page {
    overflow: hidden;
    height: 100%;
    margin: 0;
}

/* Hide footer on slide pages — it breaks fixed layout */
body.driven-slide-page .driven-footer {
    display: none;
}

/* ========================================
   LOADING OVERLAY (disabled for WP)
   ======================================== */

.driven-entrance-overlay {
    position: fixed;
    z-index: var(--z-entrance);
    top: 0;
    left: 0;
    width: 100%;
    height: 100lvh;
    background: white;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Mobile menu/burger styles are in driven-header.css */

/* ========================================
   FOOTER
   ======================================== */

.driven-footer {
    background: var(--color-white);
    border-top: 2px solid var(--color-black);
    padding: 2rem 0;
}

.driven-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.driven-footer-logo-img {
    height: 1.5em;
    width: auto;
}

.driven-footer-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--font-business-system);
    font-size: var(--text-xs);
    text-transform: uppercase;
}

.driven-footer-copy {
    font-size: var(--text-xs);
    opacity: 0.5;
}

/* ========================================
   SEARCH FORM
   ======================================== */

.driven-search-form {
    display: flex;
    gap: 0.5rem;
    max-width: 30rem;
}

.driven-search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-black);
    background: var(--color-white);
    font-family: var(--default-font-family);
    font-size: var(--text-base);
}

.driven-search-input:focus {
    outline: none;
    border-color: var(--color-red);
}

/* ========================================
   WORDPRESS SPECIFIC
   ======================================== */

/* Elementor full-width sections */
.elementor-section.elementor-section-full_width {
    max-width: 100%;
}

/* Ensure Elementor sections work with our header offset */
.driven-content-area .elementor {
    padding-top: 0;
}

/* WP block alignment */
.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* WP pagination */
.driven-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.driven-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--color-black);
    text-decoration: none;
    font-family: var(--font-business-system);
    font-size: var(--text-xs);
}

.driven-pagination .page-numbers.current {
    background: var(--color-black);
    color: var(--color-white);
}

/* ========================================
   DRAG PREVENTION
   ======================================== */

.drag-none {
    -webkit-user-drag: none;
}

/* ========================================
   RESPONSIVE HELPERS
   ======================================== */

/* Min-height viewport for sections */
.min-h-\[100lvh\] {
    min-height: 100lvh;
}

@supports not (min-height: 100lvh) {
    .min-h-\[100lvh\] {
        min-height: 100vh;
    }
}

/* Responsive flex */
@media (max-width: 767px) {
    .driven-front-page-content .flex-col.md\:flex-row {
        flex-direction: column;
    }
}

/* Group utilities for mobile nav */
.group:first-child .group-first\:border-t-2 {
    border-top-width: 2px;
    border-top-style: solid;
}

/* Min width fit-content */
.min-w-\[fit-content\] {
    min-width: fit-content;
}
