/* ============================================
   FULL-SCREEN MENU OVERLAY - JOSEPH SAN STYLE
   ============================================ */

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    /* Show on portfolio page only */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: var(--transition-fast);
}

.portfolio-slider-section~* .menu-toggle,
body:has(#portfolio-slider) .menu-toggle {
    display: flex;
    align-items: center;
}

.menu-toggle-text {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--letter-spacing-wider);
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.menu-toggle:hover .menu-toggle-text {
    color: var(--color-text-primary);
}

/* Full-Screen Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hide nav pill when menu is open - MOBILE ONLY */
@media (max-width: 768px) {

    .menu-overlay.active~.slider-nav-pill,
    .menu-overlay.active~* .slider-nav-pill,
    body:has(.menu-overlay.active) .slider-nav-pill {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        z-index: -1 !important;
    }
}

/* Close Button */
.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--color-text-primary);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close:hover {
    border-color: var(--glass-border-hover);
    background: var(--glass-bg);
    transform: rotate(90deg);
}

/* Menu Navigation */
.menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.menu-link {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: var(--font-weight-light);
    letter-spacing: var(--letter-spacing-tight);
    color: var(--color-text-tertiary);
    text-transform: capitalize;
    transition: var(--transition-smooth);
    position: relative;
}

.menu-link:hover,
.menu-link-active {
    color: var(--color-text-primary);
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-text-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link:hover::after,
.menu-link-active::after {
    width: 100%;
}

/* Mobile Menu - Consistent Button Sizes */
@media (max-width: 768px) {

    /* X Close button - top right corner */
    .menu-overlay .menu-close {
        position: absolute !important;
        top: 1rem !important;
        right: 1rem !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 1.8rem !important;
        border-radius: 50% !important;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        background: rgba(0, 0, 0, 0.5) !important;
        color: #fff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 10001 !important;
        cursor: pointer !important;
    }

    .menu-overlay .menu-nav .menu-link {
        font-size: 1rem !important;
        font-weight: 500 !important;
        width: 200px !important;
        min-width: 200px !important;
        max-width: 200px !important;
        text-align: center !important;
        padding: 1rem 1.5rem !important;
        border: 1px solid rgba(255, 255, 255, 0.35) !important;
        border-radius: 50px !important;
        display: block !important;
        box-sizing: border-box !important;
        letter-spacing: 0.08em !important;
        text-transform: uppercase !important;
    }

    .menu-overlay .menu-nav .menu-link.menu-link-active {
        border-color: rgba(255, 255, 255, 0.6) !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }

    .menu-overlay .menu-nav .menu-link::after {
        display: none !important;
    }
}

/* ============================================
   PORTFOLIO HORIZONTAL SLIDER - JOSEPH SAN  
   ============================================ */

/* Disable page scrolling on portfolio page */
body:has(.portfolio-slider-section) {
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
}

.portfolio-slider-section {
    position: fixed;
    inset: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: none;
    overflow: visible;
    /* Changed from hidden to allow adjacent slide previews */
    z-index: 10;
    /* Above smoke background */
}

.portfolio-slider-section.active {
    display: block;
}

/* Ensure header stays above everything */
body:has(.portfolio-slider-section) .header {
    z-index: 100;
}

.portfolio-slider {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: visible;
    /* Changed from hidden to allow previews */
}

.slider-track {
    display: flex;
    height: 100%;
    gap: 4vw;
    /* Gap for preview effect */
    transition: none;
    /* Remove transition - handled by GSAP */
    will-change: transform;
}

.slide {
    min-width: 60vw;
    /* Reduced for larger preview areas (20vw visible on each side) */
    max-width: 60vw;
    min-height: 70vh;
    /* Reduced for vertical preview areas */
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    flex-shrink: 0;
}

/* Vertical mode - ensure previews show even under nav/pill */
.portfolio-slider-section.vertical .slide {
    min-height: 70vh;
    height: 70vh;
}

/* Joseph San Dreamy Project Cover - Invisible Container */
.slide-cover {
    position: relative;
    width: 100%;
    max-width: 900px;
    /* Reduced 25% from 1200px */
    height: auto;
    aspect-ratio: 2/1;
    /* 2:1 ratio */
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: none;
}

.slide-cover img,
.slide-cover video {
    position: absolute;
    /* Makes container respect aspect-ratio */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    /* Match container, crops overflow */
    filter: brightness(0.9) saturate(1.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    will-change: transform;
}

/* Hover effects removed - handled by parallax-effect.js */

/* liquidRipple animation removed - conflicts with parallax */

.slide-cover video {
    pointer-events: none;
}

/* Old hover transform removed - parallax handles this now */

/* ===========================================
   JOSEPH SAN - FIXED PROJECT INFO
   Positioned outside slider, updates dynamically
   =========================================== */

/* In-slide text - HIDDEN (now using fixed container) */
.slide-info {
    display: none !important;
}

/* Fixed Project Info - stays in one position */
.fixed-project-info {
    position: fixed;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    /* Exact vertical center */
    z-index: 100;
    text-align: left;
    max-width: 350px;
    pointer-events: none;
}

.fixed-category {
    font-size: 0.7rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--letter-spacing-wider);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    display: block;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fixed-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--font-weight-light);
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--color-text-primary);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

/* Animate in when content is set */
.fixed-project-info.visible .fixed-category,
.fixed-project-info.visible .fixed-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-category {
    font-size: 0.65rem;
    /* Reduced 25% from var(--font-size-xs) */
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--letter-spacing-wider);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    display: block;
}

.slide-title {
    font-size: clamp(1.875rem, 3.75vw, 3rem);
    /* Reduced 25% */
    font-weight: var(--font-weight-light);
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--color-text-primary);
}

/* ===========================================
   HOVER OVERLAY - ONLY VIEW PROJECT BUTTON
   No blur, transparent background
   =========================================== */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    /* NO blur or dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.slide:hover .slide-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* View Project Button - Joseph San Rounded */
.view-project-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--letter-spacing-wider);
    text-transform: uppercase;
    color: var(--color-text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.view-project-btn:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
}

/* Old slider-controls removed - now using circular-nav.css pill navigation */

/* Old mode-switcher removed - now using orientation toggle button in circular-nav.css */

/* ============================================
   PORTFOLIO GRID SECTION - ARCHIVE VIEW
   ============================================ */

.portfolio-grid-section {
    display: none;
    min-height: 100vh;
    padding: clamp(8rem, 15vw, 12rem) 0 var(--space-xl);
}

.portfolio-grid-section.active {
    display: block;
}

.portfolio-grid-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-light);
    letter-spacing: var(--letter-spacing-tight);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding-bottom: calc(var(--space-lg) + 160px);
    /* Space for mode switcher */
}

@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Grid Project Cards - Glassmorphic */
.portfolio-grid .project-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(var(--glass-blur));
    backdrop-filter: blur(var(--glass-blur));
    overflow: hidden;
    transition: var(--transition-smooth);
}

.portfolio-grid .project-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
}

.portfolio-grid .project-card-image {
    aspect-ratio: 4/3;
}

.portfolio-grid .project-card-info {
    padding: var(--space-sm);
}

.portfolio-grid .project-card-title {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.25rem;
}

.portfolio-grid .project-card-category {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-normal);
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

/* ============================================
   PROJECT MODAL - JOSEPH SAN STYLE
   ============================================ */

.project-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    cursor: pointer;
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    /* Joseph San rounded corners */
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    z-index: 1;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-modal.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    /* Round button */
    color: var(--color-text-primary);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-scroll {
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--space-xl) var(--space-lg);
    scrollbar-width: thin;
    scrollbar-color: var(--glass-border) transparent;
}

.modal-header {
    margin-bottom: var(--space-lg);
    text-align: center;
}

.modal-category {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--letter-spacing-wider);
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.modal-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: var(--font-weight-light);
    letter-spacing: var(--letter-spacing-tight);
    color: var(--color-text-primary);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.modal-images {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.modal-images img,
.modal-images video {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.modal-footer {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.modal-cta {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

.modal-contact-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.modal-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(var(--glass-blur));
    backdrop-filter: blur(var(--glass-blur));
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
    color: var(--color-text-primary);
    transition: var(--transition-smooth);
}

.modal-contact-link:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
}

.modal-contact-link svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   MOBILE RESPONSIVE - JOSEPH SAN POSTER WINDOW
   Controlled-height media frame, subtle vignette
   ============================================ */

@media (max-width: 768px) {

    /* --- CSS VARIABLES for poster dimensions --- */
    :root {
        --poster-height: clamp(520px, 78dvh, 760px);
        --mobile-inset: 0px;
    }

    /* --- SLIDER SECTION: Full viewport container --- */
    .portfolio-slider-section {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        overflow: hidden;
    }

    .portfolio-slider {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .slider-track {
        gap: 20px;
        /* GSAP handles positioning - no scroll-snap */
    }

    /* --- SLIDES: Poster-window sized, not full-screen --- */
    .slide {
        min-width: 100vw;
        max-width: 100vw;
        /* Height matches JS calculation: clamp(520, 78vh, 760) */
        min-height: var(--poster-height);
        max-height: var(--poster-height);
        height: var(--poster-height);
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    /* --- MEDIA FRAME: Creates the center-crop window --- */
    .slide-cover {
        position: relative;
        width: calc(100% - 2rem);
        height: 100%;
        max-width: none;
        margin: 0 1rem;
        border-radius: 28px;
        overflow: hidden;
        /* Edge fade effect is handled by ::after overlay gradient */
    }

    /* --- CENTER-CROP MEDIA --- */
    .slide-cover img,
    .slide-cover video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 50%;
        /* CENTER CROP */
        border-radius: 0;
        filter: brightness(0.9);
        display: block;
    }

    /* --- STRONG HORIZONTAL FADE: Black fade on left/right edges --- */
    .slide-cover::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 1;
        border-radius: 28px;
        /* 
         * Strong fade to BLACK on left and right edges
         * 30% fade zone on each side, solid center
         */
        background: linear-gradient(to right,
                rgba(0, 0, 0, 1) 0%,
                /* Left edge - solid black */
                rgba(0, 0, 0, 0.7) 8%,
                /* Quick fade */
                rgba(0, 0, 0, 0.3) 18%,
                /* Medium fade */
                rgba(0, 0, 0, 0) 30%,
                /* Fully transparent at 30% */
                rgba(0, 0, 0, 0) 70%,
                /* Solid middle section */
                rgba(0, 0, 0, 0.3) 82%,
                /* Start right fade */
                rgba(0, 0, 0, 0.7) 92%,
                /* Quick fade */
                rgba(0, 0, 0, 1) 100%
                /* Right edge - solid black */
            );
    }

    /* --- BOTTOM GRADIENT: Subtle, for text readability --- */
    .slide-cover::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 35%;
        pointer-events: none;
        z-index: 2;
        border-radius: 0 0 28px 28px;
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.6) 0%,
                rgba(0, 0, 0, 0.2) 50%,
                transparent 100%);
    }

    /* --- FIXED PROJECT INFO: Inside poster, bottom --- */
    .fixed-project-info {
        position: fixed;
        left: 2rem;
        right: auto;
        top: auto;
        bottom: calc((100dvh - var(--poster-height)) / 2 + 1.5rem);
        transform: none;
        max-width: 70%;
        z-index: 300;
        text-align: left;
    }

    .fixed-category {
        font-size: 0.65rem;
        letter-spacing: 0.12em;
        margin-bottom: 0.35rem;
        opacity: 0.6;
        text-transform: uppercase;
    }

    .fixed-title {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        line-height: 1.15;
        font-weight: 400;
    }

    /* --- VIEW PROJECT BUTTON: Bottom right of poster --- */
    .slide-overlay {
        position: absolute;
        inset: 0;
        opacity: 1;
        pointer-events: none;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        padding: 1.5rem 2rem;
        z-index: 200;
    }

    .view-project-btn {
        pointer-events: auto;
        padding: 0.75rem 1.5rem;
        font-size: 0.7rem;
        min-height: 44px;
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    /* --- HIDE DESKTOP ORIENTATION TOGGLE --- */
    .orientation-toggle {
        display: none;
    }

    /* --- NAV PILL: Centered below poster --- */
    .slider-nav-pill {
        position: fixed;
        bottom: calc((100dvh - var(--poster-height)) / 2 - 80px);
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        width: auto;
        min-width: 200px;
        justify-content: center;
        padding: 0.4rem;
        border-radius: 50px;
        gap: 0.25rem;
        z-index: 9999;
    }

    .pill-arrow-btn {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        flex-shrink: 0;
    }

    .pill-arrow-btn svg {
        width: 18px;
        height: 18px;
    }

    .pill-counter {
        flex: 0 0 auto;
        font-size: 0.8rem;
        padding: 0 0.75rem;
        min-width: 50px;
    }

    /* --- PORTFOLIO GRID --- */
    .portfolio-grid-section {
        padding-top: 100px;
        overflow-y: auto;
    }

    .portfolio-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
        padding-bottom: 120px;
    }

    .portfolio-grid .project-card {
        width: 100%;
    }

    .portfolio-grid .project-card-image {
        aspect-ratio: 16/9;
        overflow: hidden;
        border-radius: 12px;
    }

    .portfolio-grid .project-card-image img,
    .portfolio-grid .project-card-image video {
        object-fit: cover;
        object-position: center;
    }

    .portfolio-grid .project-card-title {
        font-size: 1.1rem;
    }

    .portfolio-grid .project-card-category {
        font-size: 0.75rem;
    }

    /* --- MODAL --- */
    .modal-container {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        max-height: 100dvh;
        border-radius: 0;
    }

    .modal-scroll {
        padding: 1.5rem 1rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }

    .modal-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   EXTRA SMALL PHONES (≤380px)
   ============================================ */

@media (max-width: 380px) {
    :root {
        --poster-height: clamp(480px, 75dvh, 680px);
    }

    .fixed-project-info {
        left: 1.5rem;
        max-width: 65%;
    }

    .fixed-title {
        font-size: 1.1rem;
    }

    .slide-cover {
        width: calc(100% - 1.5rem);
        margin: 0 0.75rem;
        border-radius: 16px;
    }

    .slide-overlay {
        padding: 1.25rem 1.5rem;
    }

    .slider-nav-pill {
        min-width: 180px;
        padding: 0.35rem;
    }

    .pill-arrow-btn {
        width: 40px;
        height: 40px;
    }

    .view-project-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.65rem;
        min-height: 40px;
    }
}