/**
 * Hiring Manager Page Styles
 * Dashboard-style layout with collapsible sidebar
 */

/* =============================================================================
   CSS VARIABLES
   ============================================================================= */
:root {
    /* Gray True Scale */
    --gray-true-25: #FAFAFA;
    --gray-true-50: #F5F5F5;
    --gray-true-100: #E3E3E3;
    --gray-true-200: #CACACA;
    --gray-true-300: #B1B1B1;
    --gray-true-400: #989898;
    --gray-true-500: #7F7F7F;
    --gray-true-600: #666666;
    --gray-true-650: #545454;
    --gray-true-700: #4D4D4D;
    --gray-true-750: #414141;
    --gray-true-800: #343434;
    --gray-true-850: #282828;
    --gray-true-900: #1B1B1B;
    --gray-true-950: #141414;

    /* Transitions */
    --transition-base: 0.2s ease;
    --transition-sidebar: 0.3s ease;
}

/* =============================================================================
   TEXT SELECTION
   ============================================================================= */
::selection {
    background-color: var(--gray-true-600);
    color: #FFFFFF;
}

::-moz-selection {
    background-color: var(--gray-true-600);
    color: #FFFFFF;
}

/* =============================================================================
   RESET & BASE STYLES
   ============================================================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(136deg, #1A1A1A 21.92%, #0F0F0F 78.08%);
    background-attachment: fixed;
    color: var(--gray-true-100);
    min-height: 100vh;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* =============================================================================
   TOP BAR
   ============================================================================= */
.hm-topbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 15px 30px;
    pointer-events: none;
}

/* Top Bar Divider - starts from collapse button */
.hm-topbar-divider {
    position: fixed;
    top: 0;
    left: 280px;
    right: 0;
    z-index: 90;
    display: flex;
    padding: 0 15px 0 30px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 2px;
    height: 72px;
    background: linear-gradient(136deg, #1A1A1A 21.92%, #0F0F0F 78.08%);
    transition: left var(--transition-sidebar);
}

.sidebar-wrapper.collapsed ~ .hm-topbar-divider {
    left: 90px;
}

.topbar-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000;
}

.topbar-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    pointer-events: auto;
}

/* Contact Reveal Button */
.btn-contact-reveal {
    display: flex;
    height: 40px;
    padding: 5px 25px 5px 21px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
    border: 1px solid var(--gray-true-700);
    background: transparent;
    color: var(--gray-true-100); /* #E3E3E3 */
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: border-color var(--transition-base), color var(--transition-base);
}

.btn-contact-reveal:hover {
    border-color: #7F7F7F;
    color: #FFF;
}

.btn-contact-reveal .icon {
    width: 20px;
    height: 20px;
}

.btn-contact-reveal:hover .icon {
    filter: brightness(0) saturate(100%) invert(95%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(95%);
}

.btn-contact-reveal.hidden {
    display: none;
}

/* Contact Info (revealed) */
.contact-info {
    display: none;
}

.contact-info.visible {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info-item .icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(85%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.contact-info-item a {
    color: var(--gray-true-200);
    font-size: 14px;
    transition: color var(--transition-base);
}

.contact-info-item a:hover {
    color: var(--gray-true-100);
}

/* Download Button */
.btn-download {
    display: flex;
    height: 40px;
    padding: 5px 25px 5px 21px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
    border: 1px solid var(--gray-true-700);
    background: var(--gray-true-850);
    box-shadow: 1px 1px 0.5px 0 rgba(0, 0, 0, 0.25), 1px 2px 10px 0 rgba(0, 0, 0, 0.50);
    color: var(--gray-true-100); /* #E3E3E3 */
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: border-color var(--transition-base), background var(--transition-base), color var(--transition-base);
}

.btn-download:hover {
    border-color: var(--gray-true-300);
    background: #414141;
    color: #FFF;
}

.btn-download .icon {
    width: 20px;
    height: 20px;
}

.btn-download:hover .icon {
    filter: brightness(0) saturate(100%) invert(95%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(95%);
}

/* =============================================================================
   MAIN LAYOUT
   ============================================================================= */
.hm-layout {
    display: flex;
    min-height: 100vh;
}

/* =============================================================================
   SIDEBAR WRAPPER
   ============================================================================= */
.sidebar-wrapper {
    display: flex;
    width: 280px;
    height: 100vh;
    padding: 15px;
    align-items: center;
    gap: 10px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: width var(--transition-sidebar);
}

.sidebar-wrapper.collapsed {
    width: 90px;
}

/* =============================================================================
   SIDEBAR
   ============================================================================= */
.sidebar {
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 10px;
    border: 1px solid var(--gray-true-800);
    background: var(--gray-true-900);
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
    position: relative;
    overflow: visible;
}

/* =============================================================================
   SIDEBAR TOGGLE BUTTON
   ============================================================================= */
.sidebar-toggle {
    display: flex;
    width: 30px;
    height: 30px;
    padding: 5px;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 20px;
    right: -30px;
    border-radius: 0 5px 5px 0;
    background: var(--gray-true-800);
    box-shadow: 1px 1px 0.5px 0 rgba(0, 0, 0, 0.25), 2px 2px 8px 0 rgba(0, 0, 0, 0.60);
    z-index: -1;
}

.sidebar-toggle .icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(50%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
    transition: filter var(--transition-base);
}

.sidebar-toggle:hover .icon {
    filter: brightness(0) saturate(100%) invert(95%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(95%);
}

/* Show/hide collapse/expand icons based on state */
.sidebar-toggle .icon-expand {
    display: none;
}

.sidebar-wrapper.collapsed .sidebar-toggle .icon-collapse {
    display: none;
}

.sidebar-wrapper.collapsed .sidebar-toggle .icon-expand {
    display: block;
}

/* =============================================================================
   SIDEBAR LOGO SECTION
   ============================================================================= */
.sidebar-logo-section {
    display: flex;
    padding: 15px 0 20px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    transition: padding var(--transition-sidebar);
}

.sidebar-logo {
    width: 55px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(85%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
    transition: width var(--transition-sidebar), filter var(--transition-base);
}

.sidebar-logo-section:hover .sidebar-logo {
    filter: brightness(0) saturate(100%) invert(95%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(95%);
}

.sidebar-name {
    color: var(--gray-true-100);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    transition: opacity var(--transition-sidebar);
}

/* Collapsed state for logo section */
.sidebar-wrapper.collapsed .sidebar-logo {
    width: 35px;
}

.sidebar-wrapper.collapsed .sidebar-name {
    display: none;
}

.sidebar-wrapper.collapsed .sidebar-logo-section {
    padding: 10px 0 15px 0;
}

/* =============================================================================
   SIDEBAR DIVIDER
   ============================================================================= */
.sidebar-divider {
    display: flex;
    padding: 5px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    align-self: stretch;
}

.sidebar-divider-small {
    height: 2px;
    padding: 0;
    gap: 1px;
}

.sidebar-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000;
}

.sidebar-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

/* =============================================================================
   SIDEBAR MENU
   ============================================================================= */
.sidebar-menu {
    display: flex;
    padding: 5px 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

/* Menu Item */
.menu-item {
    display: flex;
    height: 40px;
    padding: 0 15px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background: var(--gray-true-900);
    border-radius: 5px;
    border: 1px solid transparent;
    transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
    position: relative;
}

/* Menu Item Hover */
.menu-item:hover {
    border-radius: 5px;
    border: 1px solid var(--gray-true-800);
    background: #1D1D1D;
    box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.60);
}

/* Menu Item Active */
.menu-item.active {
    border-radius: 5px;
    border: 1px solid var(--gray-true-700);
    background: var(--gray-true-850);
    box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.60);
}

/* Menu Icon */
.menu-icon {
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    flex-shrink: 0;
}

.menu-icon .icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(40%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%); /* #666666 */
    transition: filter var(--transition-base);
}

.menu-item:hover .menu-icon .icon,
.menu-item.active .menu-icon .icon {
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%); /* #B1B1B1 */
}

/* Menu Text */
.menu-text {
    color: var(--gray-true-300);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    white-space: nowrap;
    transition: opacity var(--transition-sidebar), color var(--transition-base);
}

.menu-item:hover .menu-text {
    color: var(--gray-true-200);
}

.menu-item.active .menu-text {
    color: #FFF;
    font-weight: 400;
}

/* Menu Tooltip (only visible when collapsed) */
.menu-tooltip {
    display: none;
    position: absolute;
    left: calc(100% + 15px);
    height: 40px;
    padding: 0 15px;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    border: 1px solid var(--gray-true-700);
    background: var(--gray-true-850);
    box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.60);
    color: var(--gray-true-300);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    white-space: nowrap;
    z-index: 100;
}

.menu-item.active .menu-tooltip {
    color: #FFF;
    font-weight: 400;
}

/* Menu Divider (between menu items) */
.menu-divider {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.menu-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000;
}

.menu-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

/* =============================================================================
   COLLAPSED STATE
   ============================================================================= */
.sidebar-wrapper.collapsed .menu-item {
    justify-content: center;
    padding: 0;
}

.sidebar-wrapper.collapsed .menu-text {
    display: none;
}

.sidebar-wrapper.collapsed .menu-item:hover .menu-tooltip {
    display: flex;
}

/* =============================================================================
   MAIN CONTENT
   ============================================================================= */
.hm-content {
    flex: 1;
    margin-left: 280px;
    padding: 80px 30px 30px 30px;
    transition: margin-left var(--transition-sidebar);
    overflow-x: hidden;
    max-width: 100%;
}

.sidebar-wrapper.collapsed ~ .hm-content {
    margin-left: 90px;
}

/* Content Sections */
.content-section {
    display: none;
    max-width: 100%;
    overflow-x: hidden;
}

.content-section.active {
    display: block;
}

/* Prevent flash of wrong content during page load */
html.loading .content-section {
    display: none !important;
}

html.loading .content-section.active {
    display: block !important;
}

.content-section h1 {
    color: var(--gray-true-100);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* =============================================================================
   UTILITY CLASSES
   ============================================================================= */
.hidden {
    display: none !important;
}

/* =============================================================================
   RESPONSIVE - MOBILE VIEW (max-width: 768px)
   ============================================================================= */

/* Desktop/Mobile visibility utilities */
.mobile-only {
    display: none !important;
}

/* Hide mobile menu overlay on desktop */
.mobile-menu-overlay {
    display: none;
}

/* Auto-collapse sidebar at 1355px */
@media (max-width: 1355px) {
    .sidebar-wrapper {
        width: 90px;
    }

    .sidebar-wrapper .sidebar-logo {
        width: 35px;
    }

    .sidebar-wrapper .sidebar-name {
        display: none;
    }

    .sidebar-wrapper .sidebar-logo-section {
        padding: 10px 0 15px 0;
    }

    .sidebar-wrapper .menu-item {
        justify-content: center;
        padding: 0;
    }

    .sidebar-wrapper .menu-text {
        display: none;
    }

    .sidebar-wrapper .menu-item:hover .menu-tooltip {
        display: flex;
    }

    .sidebar-wrapper .sidebar-toggle .icon-collapse {
        display: none;
    }

    .sidebar-wrapper .sidebar-toggle .icon-expand {
        display: block;
    }

    .hm-topbar-divider {
        left: 90px;
    }

    .hm-content {
        margin-left: 90px;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

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

    /* Hide desktop sidebar */
    .sidebar-wrapper {
        display: none !important;
    }

    /* Hide desktop topbar divider */
    .hm-topbar-divider {
        display: none !important;
    }

    /* ==========================================================================
       MOBILE TOP BAR
       ========================================================================== */
    .mobile-topbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 200;
        display: flex;
        width: 100%;
        height: 80px;
        padding: 10px 15px;
        justify-content: space-between;
        align-items: center;
        background: transparent;
    }

    /* Mobile Logo Section */
    .mobile-logo-section {
        display: flex;
        width: 230px;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        align-self: stretch;
        text-decoration: none;
        margin-left: 6px;
    }

    .mobile-logo {
        height: 35px;
        width: auto;
        filter: brightness(0) saturate(100%) invert(85%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
        transition: filter var(--transition-base);
    }

    .mobile-logo-section:hover .mobile-logo {
        filter: brightness(0) saturate(100%) invert(95%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(95%);
    }

    .mobile-name {
        color: var(--gray-true-100);
        text-align: center;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        font-weight: 500;
        line-height: normal;
    }

    /* ==========================================================================
       HAMBURGER BUTTON
       ========================================================================== */
    .hamburger-btn {
        display: flex;
        width: 40px;
        height: 40px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        flex-shrink: 0;
        border-radius: 5px;
        border: 1px solid var(--gray-true-700);
        background: var(--gray-true-850);
        box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.60);
        cursor: pointer;
        position: relative;
        z-index: 210;
    }

    .hamburger-line {
        display: block;
        width: 20px;
        height: 1px;
        background: var(--gray-true-300);
        border-radius: 0.5px;
        position: absolute;
        left: 50%;
        margin-left: -10px;
        transform-origin: center center;
        transition: background 0.3s ease;
    }

    /* Position lines for hamburger state */
    .hamburger-btn .hamburger-line:nth-child(1) {
        top: 12px;
        transform: rotate(0deg);
    }

    .hamburger-btn .hamburger-line:nth-child(2) {
        top: 19px;
        opacity: 1;
    }

    .hamburger-btn .hamburger-line:nth-child(3) {
        top: 26px;
        transform: rotate(0deg);
    }

    /* Hamburger to X animation */
    .hamburger-btn.active {
        background: transparent;
        border-color: transparent;
        box-shadow: none;
    }

    .hamburger-btn.active .hamburger-line {
        background: var(--gray-true-400);
    }

    /* Top line: slide to center, then rotate 45deg */
    .hamburger-btn.active .hamburger-line:nth-child(1) {
        animation: topLineToX 0.4s ease forwards;
    }

    /* Middle line: fade out quickly */
    .hamburger-btn.active .hamburger-line:nth-child(2) {
        animation: middleLineFadeOut 0.15s ease forwards;
    }

    /* Bottom line: slide to center, then rotate -45deg */
    .hamburger-btn.active .hamburger-line:nth-child(3) {
        animation: bottomLineToX 0.4s ease forwards;
    }

    /* Reverse animations when closing - only after menu has been opened once */
    .hamburger-btn.was-active .hamburger-line:nth-child(1) {
        animation: topLineToHamburger 0.4s ease forwards;
    }

    .hamburger-btn.was-active .hamburger-line:nth-child(2) {
        animation: middleLineFadeIn 0.15s ease 0.25s forwards;
    }

    .hamburger-btn.was-active .hamburger-line:nth-child(3) {
        animation: bottomLineToHamburger 0.4s ease forwards;
    }

    /* When active, remove was-active animations */
    .hamburger-btn.active.was-active .hamburger-line:nth-child(1) {
        animation: topLineToX 0.4s ease forwards;
    }

    .hamburger-btn.active.was-active .hamburger-line:nth-child(2) {
        animation: middleLineFadeOut 0.15s ease forwards;
    }

    .hamburger-btn.active.was-active .hamburger-line:nth-child(3) {
        animation: bottomLineToX 0.4s ease forwards;
    }

    /* Keyframes for Hamburger → X */
    @keyframes topLineToX {
        0% {
            top: 12px;
            transform: rotate(0deg);
        }
        50% {
            top: 19px;
            transform: rotate(0deg);
        }
        100% {
            top: 19px;
            transform: rotate(45deg);
        }
    }

    @keyframes middleLineFadeOut {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }

    @keyframes bottomLineToX {
        0% {
            top: 26px;
            transform: rotate(0deg);
        }
        50% {
            top: 19px;
            transform: rotate(0deg);
        }
        100% {
            top: 19px;
            transform: rotate(-45deg);
        }
    }

    /* Keyframes for X → Hamburger */
    @keyframes topLineToHamburger {
        0% {
            top: 19px;
            transform: rotate(45deg);
        }
        50% {
            top: 19px;
            transform: rotate(0deg);
        }
        100% {
            top: 12px;
            transform: rotate(0deg);
        }
    }

    @keyframes middleLineFadeIn {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }

    @keyframes bottomLineToHamburger {
        0% {
            top: 19px;
            transform: rotate(-45deg);
        }
        50% {
            top: 19px;
            transform: rotate(0deg);
        }
        100% {
            top: 26px;
            transform: rotate(0deg);
        }
    }

    /* ==========================================================================
       MOBILE TOP BAR DIVIDER
       ========================================================================== */
    .mobile-topbar-divider {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 199;
        display: flex !important;
        padding: 80px 15px 0 15px;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        gap: 0;
        height: 84px;
        background: linear-gradient(136deg, #1A1A1A 21.92%, #0F0F0F 78.08%);
        transition: opacity 0.3s ease;
    }

    /* Hide topbar divider when menu is open */
    body.menu-open .mobile-topbar-divider {
        opacity: 0;
        pointer-events: none;
    }

    .mobile-divider-line-1 {
        width: 100%;
        height: 2px;
        background: #000;
    }

    .mobile-divider-line-2 {
        width: 100%;
        height: 2px;
        background: #282828;
    }

    /* ==========================================================================
       MOBILE CURRENT PAGE INDICATOR
       ========================================================================== */
    .mobile-current-page {
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex !important;
        width: 100%;
        height: 40px;
        padding: 0 15px;
        align-items: center;
        gap: 10px;
        transition: opacity 0.2s ease;
    }

    /* Hide current page indicator when scrolling */
    .mobile-current-page.scrolled {
        opacity: 0;
        pointer-events: none;
    }

    .current-page-icon {
        display: flex;
        width: 20px;
        height: 20px;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        aspect-ratio: 1/1;
    }

    .current-page-icon .icon {
        width: 20px;
        height: 20px;
        filter: brightness(0) saturate(100%) invert(40%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(90%);
    }

    .current-page-text {
        color: var(--gray-true-300);
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        font-weight: 400;
        line-height: normal;
    }

    /* Hide current page indicator when menu is open */
    body.menu-open .mobile-current-page {
        opacity: 0;
        pointer-events: none;
    }

    /* ==========================================================================
       MOBILE MENU OVERLAY
       ========================================================================== */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 150;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
    }

    .mobile-menu-overlay.active {
        pointer-events: auto;
        opacity: 1;
        visibility: visible;
        z-index: 150; /* Below mobile-topbar (200) so topbar stays on top */
    }

    /* ==========================================================================
       MOBILE MENU
       ========================================================================== */
    .mobile-menu {
        position: absolute;
        top: 20px;
        right: 15px;
        width: 40px;
        height: 40px;
        border-radius: 5px;
        border: 1px solid var(--gray-true-800);
        background: var(--gray-true-900);
        box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
        overflow: hidden;
        transform-origin: top right;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu-overlay.active .mobile-menu {
        top: 10px;
        right: 10px;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        border-radius: 10px;
    }

    /* Close Button (X) - hidden since hamburger transforms to X */
    .close-btn {
        display: none;
    }

    /* ==========================================================================
       MOBILE MENU CONTENT
       ========================================================================== */
    .mobile-menu-content {
        display: flex;
        padding: 90px 10px 30px 10px;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        opacity: 0;
        transition: opacity 0.2s ease 0.2s;
    }

    .mobile-menu-overlay.active .mobile-menu-content {
        opacity: 1;
    }

    /* Mobile Menu Items */
    .mobile-menu-items {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }

    .mobile-menu-item {
        display: flex;
        height: 30px;
        padding: 0 15px;
        align-items: center;
        gap: 10px;
        align-self: stretch;
        background: var(--gray-true-900);
        border-radius: 5px;
        border: 1px solid transparent;
        text-decoration: none;
        transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
    }

    .mobile-menu-item:hover {
        border: 1px solid var(--gray-true-800);
        background: #1D1D1D;
        box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.60);
    }

    .mobile-menu-item.active {
        border: 1px solid var(--gray-true-700);
        background: var(--gray-true-850);
        box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.60);
    }

    .mobile-menu-item .menu-icon .icon {
        width: 20px;
        height: 20px;
        filter: brightness(0) saturate(100%) invert(40%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
        transition: filter var(--transition-base);
    }

    .mobile-menu-item:hover .menu-icon .icon,
    .mobile-menu-item.active .menu-icon .icon {
        filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
    }

    .mobile-menu-item .menu-text {
        color: var(--gray-true-300);
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        font-weight: 300;
        line-height: normal;
    }

    .mobile-menu-item:hover .menu-text {
        color: var(--gray-true-200);
    }

    .mobile-menu-item.active .menu-text {
        color: #FFF;
        font-weight: 400;
    }

    /* Mobile Menu Dividers */
    .mobile-menu-items .menu-divider {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1px;
        align-self: stretch;
    }

    /* ==========================================================================
       MOBILE MENU ACTIONS (Bottom Buttons)
       ========================================================================== */
    .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .mobile-menu-actions .btn-contact-reveal,
    .mobile-menu-actions .btn-download {
        width: 100%;
        height: 30px;
        font-size: 12px;
    }

    .mobile-menu-actions .mobile-contact-info {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .mobile-menu-actions .mobile-contact-info.visible {
        display: flex;
    }

    .mobile-menu-actions .contact-info-item {
        justify-content: center;
    }

    /* ==========================================================================
       MAIN CONTENT - MOBILE ADJUSTMENTS
       ========================================================================== */
    .hm-content {
        margin-left: 0;
        padding: 120px 15px 30px 15px; /* Extra 20px top for current page indicator */
    }

    .sidebar-wrapper.collapsed ~ .hm-content {
        margin-left: 0;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* =============================================================================
   PORTFOLIO SECTION
   ============================================================================= */

/* Portfolio Filters Container */
.portfolio-filters {
    display: flex;
    width: 100%;
    padding: 15px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

/* Filter Row (Discipline / Output Type) */
.portfolio-filter-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* Filter Label */
.portfolio-filter-label {
    width: 80px;
    flex-shrink: 0;
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

/* Filter Options Container */
.portfolio-filter-options {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* Individual Filter Item (checkbox + text) */
.portfolio-filter-item {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    user-select: none;
    min-width: 120px;
}

.portfolio-filter-item[data-value="all"] {
    min-width: 50px;
}

/* Filter Checkbox */
.portfolio-filter-checkbox {
    width: 18px;
    height: 18px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    position: relative;
}

.portfolio-filter-checkbox .checkbox-unchecked,
.portfolio-filter-checkbox .checkbox-checked {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
}

.portfolio-filter-checkbox .checkbox-checked {
    display: none;
}

.portfolio-filter-item.active .checkbox-unchecked {
    display: none;
}

.portfolio-filter-item.active .checkbox-checked {
    display: block;
}

/* Filter Text */
.portfolio-filter-text {
    color: var(--gray-true-500);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    transition: color var(--transition-base);
}

.portfolio-filter-item:hover .portfolio-filter-text {
    color: var(--gray-true-300);
}

.portfolio-filter-item.active .portfolio-filter-text {
    color: #FFF;
}

/* Filter Divider (vertical between filters) */
.portfolio-filter-divider {
    display: flex;
    width: 2px;
    height: 18px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.portfolio-filter-divider-line-1 {
    width: 1px;
    height: 100%;
    background: #0F0F0F;
}

.portfolio-filter-divider-line-2 {
    width: 1px;
    height: 100%;
    background: #343434;
}

/* =============================================================================
   PORTFOLIO GRID
   ============================================================================= */
.portfolio-grid-container {
    display: block;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    width: 100%;
}

/* Portfolio Card */
.portfolio-card {
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    border-radius: 10px;
    border: 1px solid var(--gray-true-850);
    background: #161616;
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
    cursor: pointer;
    transition: border-color var(--transition-base),
                transform 0.2s ease,
                opacity 0.2s ease;
    opacity: 1;
}

.portfolio-card:hover {
    border-color: var(--gray-true-700);
    transform: translateY(-2px);
}

/* Portfolio Card Image */
.portfolio-card-image {
    display: flex;
    width: 100%;
    aspect-ratio: 16/9;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--gray-true-850);
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
    overflow: hidden;
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    will-change: opacity;
    backface-visibility: hidden;
}

.portfolio-card:hover .portfolio-card-image img {
    opacity: 1;
}

/* Placeholder image styling (centered with padding) */
.portfolio-card-image img[src*="placeholder"] {
    width: auto;
    height: auto;
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    opacity: 1;
}

/* Portfolio Card Text Container */
.portfolio-card-text {
    display: flex;
    padding: 0 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    align-self: stretch;
}

/* Portfolio Card Title + Categories */
.portfolio-card-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

/* Portfolio Card Title */
.portfolio-card-title {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}

/* Portfolio Card Categories Row */
.portfolio-card-categories {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

/* Portfolio Card Discipline & Output Type */
.portfolio-card-discipline,
.portfolio-card-output-type {
    color: var(--gray-true-500);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

/* Animation states for filtered cards */
.portfolio-card.filtering-out {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.portfolio-card.filtered-out {
    display: none;
}

.portfolio-card.filtering-in {
    opacity: 0;
    transform: scale(0.95);
}

.portfolio-card.filtering-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* =============================================================================
   PROJECT DETAIL VIEW
   ============================================================================= */
.portfolio-detail-container {
    display: none;
    max-width: 100%;
    overflow-x: hidden;
}

.portfolio-detail-container.active {
    display: block;
}

/* Back Button Container */
.portfolio-back-container {
    display: flex;
    width: 100%;
    padding: 15px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

/* Back Button */
.portfolio-back-btn {
    display: flex;
    height: 40px;
    padding: 0 15px;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    border: 1px solid var(--gray-true-800);
    background: var(--gray-true-900);
    box-shadow: 1px 1px 0.5px 0 rgba(0, 0, 0, 0.25), 1px 2px 10px 0 rgba(0, 0, 0, 0.50);
    cursor: pointer;
    transition: border-color var(--transition-base), background var(--transition-base);
}

.portfolio-back-btn:hover {
    border-color: var(--gray-true-700);
    background: var(--gray-true-850);
}

.portfolio-back-btn .icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(40%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.portfolio-back-btn:hover .icon {
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.portfolio-back-btn span {
    color: var(--gray-true-100);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

/* =============================================================================
   PROJECT DETAIL CONTENT - STYLE GUIDE
   ============================================================================= */

/* Project Detail Container */
.project-detail {
    padding: 0 0 30px 0;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* -----------------------------------------------------------------------------
   PROJECT HEADER (Top Section)
   ----------------------------------------------------------------------------- */
.project-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    align-self: stretch;
}

/* Title + Subtitle Container */
.project-title-group {
    display: block;
    align-self: stretch;
}

/* Project Title Typography */
.project-title-group h1.project-title,
.project-title {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

/* Project Sub-Title Typography */
.project-title-group p.project-subtitle,
.project-subtitle {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.2;
    margin: 2px 0 0 0;
    padding: 0;
}

/* Categories Container */
.project-categories {
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

/* Discipline Typography */
.project-discipline {
    color: var(--gray-true-300, #B1B1B1);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
}

/* Category Divider (between Discipline and Output Type) */
.project-category-divider {
    display: flex;
    flex-direction: row;
    width: 2px;
    height: 14px;
}

.project-category-divider-line-1 {
    width: 1px;
    height: 14px;
    background: #0F0F0F;
}

.project-category-divider-line-2 {
    width: 1px;
    height: 14px;
    background: #343434;
}

/* Output Type Typography */
.project-output-type {
    color: var(--gray-true-300, #B1B1B1);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
}

/* -----------------------------------------------------------------------------
   HEADER DIVIDER (Below Categories)
   ----------------------------------------------------------------------------- */
.project-header-divider {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
}

.project-header-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #0F0F0F;
}

.project-header-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #414141;
}

/* -----------------------------------------------------------------------------
   PROJECT CONTENT (Text Sections)
   ----------------------------------------------------------------------------- */
.project-content {
    display: flex;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    margin-top: 15px;
    max-width: 100%;
    box-sizing: border-box;
}

/* Project Hero Image */
.project-hero-image {
    width: 100%;
    margin-bottom: 0;
}

.project-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Project Role & Overview (Two Column) */
.project-role-overview {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
}

.project-role-overview .project-section {
    flex: 1;
    padding-bottom: 0;
}

/* Vertical divider between Overview and My Role */
.project-role-overview-divider {
    display: flex;
    flex-direction: row;
    gap: 0;
    height: auto;
    align-self: stretch;
}

.project-role-overview-divider-line-1 {
    width: 1px;
    background: #282828;
}

.project-role-overview-divider-line-2 {
    width: 1px;
    background: #282828;
}

/* Mobile horizontal divider (hidden on desktop) */
.project-role-overview-divider-mobile {
    display: none;
    width: 100%;
    height: 1px;
    background: #282828;
}

@media (max-width: 768px) {
    .project-role-overview {
        flex-direction: column;
        gap: 20px;
    }

    .project-role-overview-divider {
        display: none;
    }

    .project-role-overview-divider-mobile {
        display: block;
    }
}

/* Project Section */
.project-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    align-self: stretch;
    padding-bottom: 20px;
    scroll-margin-top: 100px;
    max-width: 100%;
    box-sizing: border-box;
}

/* Section Divider (Between Sections) */
.project-section-divider {
    width: 100%;
    height: 1px;
    background: #282828;
    margin: 10px 0 20px 0;
}

/* Project Section Title Typography (e.g., "01. Project Summary") */
.project-section-title {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    margin: 0 0 10px 0;
}

.project-section-title .project-section-number {
    font-weight: 400;
    color: #FFFFFF;
}

/* Project Sub-Section Title Typography (e.g., "04.01.") */
p.project-subsection-title {
    color: var(--gray-true-50, #F0F0F0);
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 20px 0 0 0;
}

p.project-subsection-title .project-subsection-number {
    font-weight: 400;
    color: #FFFFFF;
}

/* Remove top margin when subsection title directly follows section title */
.project-section-title + p.project-subsection-title {
    margin-top: 0;
}

/* Project Sub-Sub-Section Title Typography (e.g., "05.01.01.") */
p.project-subsubsection-title {
    color: var(--gray-true-50, #F0F0F0);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 10px 0 0 0;
}

p.project-subsubsection-title .project-subsubsection-number {
    font-weight: 400;
    color: #FFFFFF;
}

/* Project Section Text Typography (Body Text) */
p.project-section-body {
    color: var(--gray-true-200, #CACACA);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0 0 10px 0;
}

/* Project Code Block */
.project-code-block {
    background: #1a1a1a;
    border: 1px solid #343434;
    border-radius: 5px;
    padding: 15px;
    margin: 10px 0 15px 0;
    width: 100%;
    box-sizing: border-box;
}

.project-code-block pre {
    margin: 0;
    font-family: 'Fira Code', 'Consolas', 'Monaco', monospace;
    font-size: 15px;
    line-height: 1.5;
    color: #E0E0E0;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.project-code-block .code-comment {
    color: #6A9955;
}

.project-code-block .code-command {
    color: #DCDCAA;
}

.project-code-block .code-flag {
    color: #CE9178;
}

.project-code-block .code-string {
    color: #CE9178;
}

.project-code-block .code-variable {
    color: #9CDCFE;
}

.project-code-block .code-value {
    color: #CE9178;
}

.project-code-block .code-url {
    color: #3794FF;
}

.project-code-block .code-package {
    color: #4EC9B0;
}

/* Project Flow Diagram */
.project-flow-diagram {
    background: #1a1a1a;
    border: 1px solid #343434;
    border-radius: 10px;
    padding: 30px;
    margin: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

.flow-section {
    margin-bottom: 30px;
}

.flow-section:last-child {
    margin-bottom: 0;
}

.flow-section-title {
    color: var(--gray-true-100, #E0E0E0);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.flow-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.flow-node {
    background: #252525;
    border: 1px solid #404040;
    border-radius: 6px;
    padding: 5px 10px;
    color: var(--gray-true-200, #CACACA);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
}

.flow-node.primary {
    background: #2a3a2a;
    border-color: #4a6a4a;
    color: #a0d0a0;
}

.flow-node.api {
    background: #2a2a3a;
    border-color: #4a4a6a;
    color: #a0a0d0;
}

.flow-node.notification {
    background: #3a2a2a;
    border-color: #6a4a4a;
    color: #d0a0a0;
}

.flow-node.user {
    background: #3a3a2a;
    border-color: #6a6a4a;
    color: #d0d0a0;
}

.flow-arrow {
    color: #E0E0E0;
    font-size: 18px;
}

.flow-arrow-down {
    display: flex;
    justify-content: center;
    padding: 5px 0;
    color: #E0E0E0;
    font-size: 18px;
}

.flow-divider {
    height: 1px;
    background: #343434;
    margin: 25px 0;
}

.flow-two-columns {
    display: flex;
    gap: 40px;
}

.flow-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-column-divider {
    width: 1px;
    background: #343434;
    align-self: stretch;
}

.flow-column-divider-horizontal {
    display: none;
    height: 1px;
    background: #343434;
    width: 100%;
}

@media (max-width: 1024px) {
    .flow-two-columns {
        flex-direction: column;
        gap: 30px;
    }

    .flow-column-divider {
        display: none;
    }

    .flow-column-divider-horizontal {
        display: block;
    }
}

.flow-container {
    border: 1px solid #404040;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
    box-sizing: border-box;
}

.flow-branch {
    display: flex;
    gap: 15px;
    margin-top: 0;
    width: 100%;
}

.flow-branch-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

@media (max-width: 768px) {
    .project-flow-diagram {
        padding: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .flow-container {
        max-width: 100%;
    }

    .flow-branch {
        max-width: 100%;
    }

    .flow-branch-column {
        max-width: 100%;
    }

    .flow-branch-column .flow-node {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Image-text two column responsive - stack on mobile with image on top */
.project-image-text-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

@media (max-width: 768px) {
    .project-image-text-row {
        flex-direction: column;
    }

    .project-image-text-row .project-gallery {
        width: 100% !important;
        max-width: 300px;
    }
}

/* Project Quote (inline emphasis) */
.project-quote {
    color: var(--gray-true-100, #E3E3E3);
    font-style: italic;
}

/* Project Color Swatch (inline) */
.project-color-swatch {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 2px;
    margin-right: 4px;
    vertical-align: middle;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Project Section Bullets */
.project-section-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-section-bullets li {
    color: var(--gray-true-200, #CACACA);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.project-section-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background: var(--gray-true-500);
    border-radius: 50%;
}

/* Project Section Numbered List */
.project-section-numbered {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: numbered-list;
}

.project-section-numbered li {
    color: var(--gray-true-200, #CACACA);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    counter-increment: numbered-list;
}

.project-section-numbered li::before {
    content: counter(numbered-list) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gray-true-100, #E3E3E3);
    font-weight: 400;
}

/* -----------------------------------------------------------------------------
   PROJECT TABLES
   ----------------------------------------------------------------------------- */

/* Table Description/Caption Typography */
.project-table-description {
    color: var(--gray-true-50, #F0F0F0);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 15px 0 10px 0;
}

/* Table Styles */
.project-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}

.project-table th,
.project-table td {
    color: var(--gray-true-200, #CACACA);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding: 10px 15px;
    text-align: left;
    border-bottom: 1px solid #282828;
}

.project-table th {
    font-weight: 500;
    color: #FFFFFF;
}

/* Header row always has border below */
.project-table thead th {
    border-bottom: 1px solid #282828;
    background-color: rgba(224, 224, 224, 0.05);
}

/* First column in body rows */
.project-table tbody td:first-child {
    font-weight: 400;
}

/* Vertical lines inside table (between columns) */
.project-table th + th,
.project-table td + td {
    border-left: 1px solid #282828;
}

/* No border on last body row */
.project-table tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive table */
@media (max-width: 768px) {
    .project-table th,
    .project-table td {
        font-size: 13px;
        padding: 8px 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* -----------------------------------------------------------------------------
   PROJECT IMAGES
   ----------------------------------------------------------------------------- */
.project-image {
    width: 100%;
    max-width: 1000px;
    margin: 0;
    border-radius: 5px;
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.project-image-caption {
    color: var(--gray-true-400, #8A8A8A);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-top: 8px;
    text-align: center;
}

/* -----------------------------------------------------------------------------
   PROJECT FULL-WIDTH IMAGES (Break out of 800px container)
   ----------------------------------------------------------------------------- */
.project-image-full {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 30px;
    margin-bottom: 30px;
}

.project-image-full img {
    width: 100%;
    height: auto;
}

/* -----------------------------------------------------------------------------
   PROJECT IMAGE PAIR (Two images side by side, same height, stays row on mobile)
   ----------------------------------------------------------------------------- */
.project-image-pair {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
    margin: 20px 0;
}

.project-image-pair img {
    height: 400px;
    width: auto;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .project-image-pair {
        gap: 10px;
    }

    .project-image-pair img {
        height: 150px;
    }
}

/* -----------------------------------------------------------------------------
   PROJECT LOGO ROW
   ----------------------------------------------------------------------------- */
.project-logo-row {
    display: flex;
    width: 100%;
    margin: 20px 0;
}

.project-logo-row img {
    width: 50%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .project-logo-row {
        flex-direction: column;
        gap: 15px;
    }

    .project-logo-row img {
        width: 80%;
        max-width: 250px;
    }
}

/* -----------------------------------------------------------------------------
   PROJECT IMAGE ROW (Fit all images in one row, no scrolling)
   ----------------------------------------------------------------------------- */
.project-image-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    margin: 20px 0;
}

.project-image-row img {
    flex: 1 1 calc(10% - 8px);
    min-width: 0;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid var(--gray-true-800, #343434);
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
}

/* Mobile: 5 images per row */
@media (max-width: 768px) {
    .project-image-row img {
        flex: 1 1 calc(20% - 8px);
    }
}

/* -----------------------------------------------------------------------------
   PROJECT TWO-COLUMN LAYOUT (Text left, images right)
   ----------------------------------------------------------------------------- */
.project-two-column {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    margin: 20px 0;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--gray-true-800, #343434);
    border-radius: 10px;
}

.project-two-column-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-two-column-images {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-shrink: 0;
}

.project-two-column-images img {
    height: 150px;
    width: auto;
    border-radius: 5px;
    border: 1px solid var(--gray-true-800, #343434);
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
}

.project-two-column-images.no-style img {
    height: 200px;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* No border variant */
.project-two-column.no-border {
    border: none;
    padding: 0;
    border-radius: 0;
}

.project-two-column.no-border .project-two-column-images img {
    height: 400px;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* Equal height variant - fixed image height */
.project-two-column.equal-height {
    border: none;
    padding: 0;
    border-radius: 0;
    align-items: center;
}

.project-two-column.equal-height .project-two-column-images {
    display: flex;
    align-items: center;
}

.project-two-column.equal-height .project-two-column-images img {
    height: 170px;
    width: auto;
    object-fit: contain;
    border: none;
    box-shadow: none;
    border-radius: 5px;
}

/* Inline image with text (image left, text right within text column) */
.project-inline-image-text {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--gray-true-800, #343434);
    border-radius: 10px;
    width: 100%;
}

.project-inline-image-text img {
    width: 200px;
    height: auto;
    flex-shrink: 0;
    border-radius: 5px;
    margin: 0 15px;
}

.project-inline-image-text .project-section-body {
    margin: 0;
}

/* Table of Contents link styling */
.project-two-column-text-only a .project-subsection-title {
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.project-two-column-text-only a:hover .project-subsection-title {
    color: var(--gray-true-300, #B1B1B1);
}

/* Two column text only (no images, just text side by side) */
.project-two-column-text-only {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    padding: 20px;
    border: 1px solid var(--gray-true-800, #343434);
    border-radius: 10px;
}

.project-two-column-text-left,
.project-two-column-text-right {
    flex: 1;
}

/* Mobile: Stack vertically */
@media (max-width: 768px) {
    .project-two-column-text-only {
        flex-direction: column;
        gap: 0;
    }

    /* Restore top margin on first subsection title in right column when stacked */
    .project-two-column-text-only .project-two-column-text-right .project-subsection-title:first-of-type {
        margin-top: 20px !important;
    }

    .project-two-column {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .project-two-column.no-border {
        padding: 0;
    }

    /* Image first on mobile (for text-left, image-right layouts) */
    .project-two-column.no-border .project-two-column-images {
        order: -1;
    }

    .project-two-column-images {
        justify-content: center;
    }

    .project-two-column-images img {
        height: 120px;
    }

    .project-two-column-images.no-style img {
        height: 150px;
    }

    .project-two-column.no-border .project-two-column-images img {
        height: 250px;
    }

    /* Equal height on mobile */
    .project-two-column.equal-height {
        padding: 0;
    }

    .project-two-column.equal-height .project-two-column-images {
        order: -1;
    }

    .project-two-column.equal-height .project-two-column-images img {
        height: auto;
        width: 100%;
        max-height: 300px;
        object-fit: contain;
    }

    /* Inline image with text on mobile */
    .project-inline-image-text {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .project-inline-image-text img {
        width: 200px;
        margin: 0;
    }
}

/* -----------------------------------------------------------------------------
   PROJECT IMAGE-TEXT ROW (Image left, text right)
   ----------------------------------------------------------------------------- */
.project-image-text-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    align-items: center;
}

.project-image-text-row-image {
    flex: 1;
    max-width: 50%;
}

.project-image-text-row-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.project-image-text-row-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.project-image-text-row-text .project-section-body {
    margin: 0;
}

/* Reverse layout: text left, image right */
.project-image-text-row.reverse {
    flex-direction: row-reverse;
}

/* Mobile: Stack vertically */
@media (max-width: 768px) {
    .project-image-text-row {
        flex-direction: column;
        gap: 20px;
    }

    .project-image-text-row.reverse {
        flex-direction: column;
    }

    .project-image-text-row-image {
        max-width: 100%;
    }
}

/* -----------------------------------------------------------------------------
   PROJECT COLOR COMPARE (Side by side color boxes)
   ----------------------------------------------------------------------------- */
.project-color-compare {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    margin: 20px 0;
}

.project-color-compare-box {
    flex: 1;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 200;
    color: #fff;
    border-radius: 5px;
}

.project-color-compare-box span {
    display: inline;
}

.project-color-compare-box span:first-child {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .project-color-compare-box {
        flex-direction: column;
        text-align: center;
        padding: 10px 5px;
        height: auto;
        min-height: 60px;
    }

    .project-color-compare-box span {
        display: block;
    }

    .project-color-compare-box span:first-child {
        margin-right: 0;
    }
}

/* -----------------------------------------------------------------------------
   PROJECT COLOR PALETTE (10 color boxes in a row)
   ----------------------------------------------------------------------------- */
.project-color-palette {
    display: flex;
    flex-direction: row;
    gap: 5px;
    width: 100%;
    margin: 0 0 10px 0;
}

.project-color-palette-box {
    flex: 1;
    height: 40px;
    border-radius: 5px;
    box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.30);
}

@media (max-width: 768px) {
    .project-color-palette-box {
        aspect-ratio: 1 / 1;
        height: auto;
    }
}

/* -----------------------------------------------------------------------------
   PROJECT VIDEO EMBEDS
   ----------------------------------------------------------------------------- */
.project-video {
    width: 100%;
    max-width: 1000px;
    margin: 0;
}

.project-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid var(--Gray-True-800, #343434);
    background: var(--Gray-True-900, #1B1B1B);
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
}

.project-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.project-video-caption {
    color: var(--gray-true-400, #8A8A8A);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-top: 10px;
}

/* Full-width video variant */
.project-video-full {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 30px;
    margin-bottom: 30px;
}

.project-video-full .project-video-wrapper {
    border-radius: 0;
}

/* -----------------------------------------------------------------------------
   PROJECT IMAGES
   ----------------------------------------------------------------------------- */
.project-image img {
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
}

.project-image.no-shadow img,
.project-image.no-shadow .project-image-wrapper img {
    box-shadow: none !important;
}

.project-image-card {
    border-radius: 10px;
    border: 1px solid var(--Gray-True-800, #343434);
    background: var(--Gray-True-900, #1B1B1B);
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
}

.project-image-card img {
    display: block;
}

.project-image-stack {
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
    border-radius: 10px;
    overflow: hidden;
}

.project-image-stack img {
    display: block;
    width: 100%;
}

/* -----------------------------------------------------------------------------
   PROJECT IMAGE LOADER
   ----------------------------------------------------------------------------- */
.project-image-wrapper {
    position: relative;
    min-height: 100px;
}

.project-image-wrapper img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-image-wrapper img.loaded {
    opacity: 1;
}

.project-image-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.project-image-loader.visible {
    display: block;
}

.project-image-loader .loader {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 32px 0 #fff, -32px 0 #fff;
    position: relative;
    animation: imageLoaderFlash 0.5s ease-out infinite alternate;
}

@keyframes imageLoaderFlash {
    0% {
        background-color: rgba(255, 255, 255, 0.13);
        box-shadow: 32px 0 rgba(255, 255, 255, 0.13), -32px 0 #fff;
    }
    50% {
        background-color: #fff;
        box-shadow: 32px 0 rgba(255, 255, 255, 0.13), -32px 0 rgba(255, 255, 255, 0.13);
    }
    100% {
        background-color: rgba(255, 255, 255, 0.13);
        box-shadow: 32px 0 #fff, -32px 0 rgba(255, 255, 255, 0.13);
    }
}

/* -----------------------------------------------------------------------------
   PROJECT GALLERY (Thumbnail Grid with Lightbox)
   ----------------------------------------------------------------------------- */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.project-gallery-item {
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #666666;
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 2px 5px 25px 0 rgba(0, 0, 0, 0.75);
}

.project-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .project-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

/* -----------------------------------------------------------------------------
   LIGHTBOX
   ----------------------------------------------------------------------------- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close::before,
.lightbox-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
}

.lightbox-close::before {
    transform: rotate(45deg);
}

.lightbox-close::after {
    transform: rotate(-45deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav img {
    width: 24px;
    height: 24px;
    box-shadow: none;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gray-true-300, #B1B1B1);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-nav img {
        width: 20px;
        height: 20px;
    }
}

/* Wide project layout (max 1600px) */
#projectDetail:has(.project-detail-wide) {
    max-width: 1600px;
}

.project-detail-wide {
    max-width: 1600px;
    width: 100%;
}

.project-detail-wide .project-header {
    max-width: 800px;
}

.project-detail-wide .project-content {
    max-width: 100%;
    width: 100%;
}

.project-detail-wide .project-section {
    width: 100%;
}

.project-detail-wide .project-image-stack {
    max-width: 100%;
    width: 100%;
}

.project-detail-wide .project-header-divider {
    max-width: 100%;
    width: 100%;
}

/* Medium project layout (max 1000px) */
#projectDetail:has(.project-detail-medium) {
    max-width: 1000px;
}

.project-detail-medium {
    max-width: 1000px;
    width: 100%;
}

.project-detail-medium .project-header {
    max-width: 800px;
}

.project-detail-medium .project-content {
    max-width: 100%;
    width: 100%;
}

.project-detail-medium .project-section {
    width: 100%;
}

.project-detail-medium .project-image-stack {
    max-width: 100%;
    width: 100%;
}

.project-detail-medium .project-header-divider {
    max-width: 100%;
    width: 100%;
}

/* Extra wide project layout (max 1920px) */
#projectDetail:has(.project-detail-extra-wide) {
    max-width: 1920px;
}

.project-detail-extra-wide {
    max-width: 1920px;
    width: 100%;
}

.project-detail-extra-wide .project-header {
    max-width: 800px;
}

.project-detail-extra-wide .project-content {
    max-width: 100%;
    width: 100%;
}

.project-detail-extra-wide .project-section {
    width: 100%;
}

.project-detail-extra-wide .project-image-stack {
    max-width: 100%;
    width: 100%;
}

.project-detail-extra-wide .project-image {
    max-width: 100%;
    width: 100%;
}

.project-detail-extra-wide .project-header-divider {
    max-width: 100%;
    width: 100%;
}

/* =============================================================================
   PROJECT NAVIGATION (Previous/Next)
   ============================================================================= */

.project-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
}

.project-nav-card {
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    border-radius: 10px;
    border: 1px solid var(--gray-true-850);
    background: #161616;
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
    cursor: pointer;
    transition: border-color var(--transition-base),
                transform 0.2s ease;
    text-decoration: none;
    max-width: 250px;
    width: 100%;
}

.project-nav-card:hover {
    border-color: var(--gray-true-700);
    transform: translateY(-2px);
}

.project-nav-card-image {
    display: flex;
    width: 100%;
    aspect-ratio: 16/9;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--gray-true-850);
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
    overflow: hidden;
}

.project-nav-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.project-nav-card:hover .project-nav-card-image img {
    opacity: 1;
}

.project-nav-card-text {
    display: flex;
    padding: 0 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    align-self: stretch;
}

.project-nav-label {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-true-500);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.project-nav-label svg {
    width: 16px;
    height: 16px;
}

.project-nav-title {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
}

/* Previous project - left aligned */
.project-nav-prev .project-nav-card-text {
    align-items: flex-start;
}

.project-nav-prev .project-nav-label {
    flex-direction: row;
}

/* Next project - right aligned */
.project-nav-next .project-nav-card-text {
    align-items: flex-end;
}

.project-nav-next .project-nav-label {
    flex-direction: row;
}

.project-nav-next .project-nav-title {
    text-align: right;
}

/* Mobile responsive - cards stay side by side, keep 250px max but allow shrinking */
@media (max-width: 768px) {
    .project-nav-card-image img {
        opacity: 1;
    }

    .project-nav-title {
        font-size: 10px;
    }

    .project-nav-label {
        font-size: 10px;
    }

    .project-nav-label svg {
        width: 12px;
        height: 12px;
    }
}

/* =============================================================================
   PORTFOLIO RESPONSIVE STYLES
   ============================================================================= */

/* Ensure portfolio section doesn't overflow */
.portfolio-section {
    max-width: 100%;
    overflow: hidden;
}

.portfolio-filters {
    max-width: 100%;
}

.portfolio-filter-row {
    max-width: 100%;
    flex-wrap: wrap;
}

.portfolio-filter-options {
    flex-wrap: wrap;
}

@media (max-width: 1900px) {
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1350px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .portfolio-filter-item {
        min-width: 100px;
    }
}

@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-filter-row {
        flex-direction: column;
        gap: 10px;
    }

    .portfolio-filter-label {
        width: auto;
    }
}

@media (max-width: 768px) {
    .portfolio-filters {
        display: none;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Portfolio images at full opacity on mobile (no hover effect) */
    .portfolio-card-image img {
        opacity: 1;
    }

    .portfolio-card-title {
        font-size: 12px;
    }

    .portfolio-card-discipline,
    .portfolio-card-output-type {
        font-size: 10px;
    }

    .project-title {
        font-size: 24px;
    }

    .project-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================================================
   DASHBOARD SECTION - 2 COLUMN LAYOUT
   ============================================================================= */

/* Dashboard Content Container */
.dashboard-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-top: 15px;
    padding-bottom: 60px;
}

/* Dashboard Columns */
.dashboard-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

/* =============================================================================
   DASHBOARD CARDS (Matching Recruiter Page Styling)
   ============================================================================= */
.dashboard-card {
    display: flex;
    padding: 15px;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    border-radius: 15px;
    border: 1px solid #414141;
    background: var(--gray-true-900);
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
}

/* Card Header */
.dashboard-card .card-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    align-self: stretch;
}

.dashboard-card .card-icon {
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
}

.dashboard-card .card-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(91%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
}

.dashboard-card .card-title {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

/* Card Divider */
.dashboard-card .card-divider {
    display: flex;
    padding: 5px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    align-self: stretch;
}

.dashboard-card .card-divider-line-1 {
    width: 100%;
    height: 2px;
    background-color: #000000;
}

.dashboard-card .card-divider-line-2 {
    width: 100%;
    height: 2px;
    background-color: #282828;
}

/* Card Content */
.dashboard-card .card-content {
    width: 100%;
}

/* =============================================================================
   SUMMARY CARD (Matching Recruiter Page)
   ============================================================================= */
.dashboard-card .summary-bullet {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.dashboard-card .summary-bullet .icon {
    width: 10px;
    height: 10px;
    min-width: 10px;
    margin-top: 6px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.dashboard-card .summary-bullet-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.dashboard-card .summary-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.dashboard-card .summary-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000000;
}

.dashboard-card .summary-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

/* =============================================================================
   DESIGN APPROACH CARD (Matching Recruiter Page)
   ============================================================================= */
.dashboard-card .approach-intro {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 0;
}

.dashboard-card .approach-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.dashboard-card .approach-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000000;
}

.dashboard-card .approach-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

.dashboard-card .approach-section-title {
    color: var(--gray-true-100, #E3E3E3);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.dashboard-card .approach-levels {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
    align-items: flex-start;
    gap: 0;
    align-self: stretch;
}

.dashboard-card .approach-level-item {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.dashboard-card .approach-level-number {
    display: inline-block;
    width: 18px;
    text-align: right;
    flex-shrink: 0;
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.dashboard-card .approach-level-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.dashboard-card .approach-cognitive-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}

/* =============================================================================
   AREAS OF INTEREST CARD (Matching Recruiter Page)
   ============================================================================= */
.dashboard-card .interest-section-title {
    color: var(--gray-true-100, #E3E3E3);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.dashboard-card .interest-bullet {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.dashboard-card .interest-bullet .icon {
    width: 10px;
    height: 10px;
    min-width: 10px;
    margin-top: 6px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.dashboard-card .interest-bullet-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.dashboard-card .interest-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.dashboard-card .interest-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000000;
}

.dashboard-card .interest-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

/* =============================================================================
   WORK AUTHORIZATION CARD
   ============================================================================= */
.dashboard-card .auth-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-card .auth-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
}

.dashboard-card .auth-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.dashboard-card .auth-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.dashboard-card .auth-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000000;
}

.dashboard-card .auth-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

/* =============================================================================
   WORK PREFERENCES CARD
   ============================================================================= */
.dashboard-card .pref-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-card .pref-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
}

.dashboard-card .pref-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.dashboard-card .pref-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.dashboard-card .pref-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000000;
}

.dashboard-card .pref-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

/* =============================================================================
   CLIENTS CARD (Matching Recruiter Page)
   ============================================================================= */
.dashboard-card .clients-intro {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 5px;
}

.dashboard-card .clients-divider {
    display: flex;
    padding: 5px 0 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.dashboard-card .clients-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000000;
}

.dashboard-card .clients-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

/* Clients Grid - 4 columns for HM Dashboard */
.dashboard-card .clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
}

.dashboard-card .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid var(--gray-true-750);
    background: #212121;
    box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.20), 1px 3px 8px 0 rgba(0, 0, 0, 0.50);
    overflow: hidden;
}

.dashboard-card .client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =============================================================================
   EXPERIENCE CARD - INTERACTIVE (with expand/collapse)
   ============================================================================= */

/* Expand/Collapse Buttons */
.dashboard-card .experience-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.dashboard-card .btn-expand-collapse {
    display: flex;
    height: 25px;
    padding: 0 15px 0 5px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
    border: 1px solid var(--gray-true-800);
    background: var(--gray-true-900);
    color: #4D4D4D;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    cursor: default;
    transition: all 0.2s ease;
}

.dashboard-card .btn-expand-collapse.active {
    border-color: var(--gray-true-700);
    background: var(--gray-true-850);
    box-shadow: 1px 1px 0.5px 0 rgba(0, 0, 0, 0.25), 2px 2px 8px 0 rgba(0, 0, 0, 0.60);
    color: #E3E3E3;
    cursor: pointer;
}

.dashboard-card .btn-expand-collapse.active:hover {
    border-color: #7F7F7F;
    color: #FFFFFF;
}

.dashboard-card .btn-expand-collapse .icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(28%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(96%) contrast(89%);
}

.dashboard-card .btn-expand-collapse.active .icon {
    filter: brightness(0) saturate(100%) invert(85%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(85%);
}

.dashboard-card .btn-expand-collapse .icon-expand {
    transform: rotate(90deg);
}

.dashboard-card .btn-expand-collapse .icon-collapse {
    transform: rotate(0deg);
}

/* Experience List */
.dashboard-card .experience-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

/* Experience Item (Interactive) */
.dashboard-card .experience-item {
    margin-bottom: 0;
}

.dashboard-card .experience-header {
    display: flex;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid var(--gray-true-800);
    background: #212121;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.50);
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.dashboard-card .experience-header:hover {
    border-color: #666666;
}

.dashboard-card .experience-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-card .experience-toggle-btn {
    display: flex;
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    aspect-ratio: 1/1;
    border-radius: 5px;
    border: 1px solid var(--gray-true-700);
    background: var(--gray-true-800);
    box-shadow: 1px 1px 0.5px 0 rgba(0, 0, 0, 0.25), 1px 1px 8px 0 rgba(0, 0, 0, 0.50);
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.dashboard-card .experience-toggle-btn .icon {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.dashboard-card .experience-item.expanded .experience-toggle-btn {
    border-color: #7F7F7F;
}

.dashboard-card .experience-item.expanded .experience-toggle-btn .icon {
    transform: rotate(90deg);
    filter: brightness(0) saturate(100%) invert(95%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(95%);
}

.dashboard-card .experience-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dashboard-card .experience-logo {
    width: 25px;
    height: 25px;
    object-fit: contain;
    align-self: flex-start;
    margin-top: 2px;
}

.dashboard-card .experience-company {
    color: var(--gray-true-25);
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

.dashboard-card .experience-title {
    color: var(--gray-true-25);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}

.dashboard-card .experience-meta {
    display: flex;
    padding: 3px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    align-self: stretch;
    gap: 0;
    border-radius: 5px;
    border: 1px solid var(--gray-true-750);
    background: var(--gray-true-900);
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.50) inset;
}

.dashboard-card .experience-location {
    color: var(--gray-true-25);
    text-align: right;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}

.dashboard-card .experience-date {
    color: var(--gray-true-200);
    text-align: right;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}

/* Hide meta divider on desktop (only show on mobile) */
.dashboard-card .experience-meta-divider {
    display: none;
}

/* Experience Content (Expandable) */
.dashboard-card .experience-content {
    display: flex;
    padding: 0 10px 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    align-self: stretch;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.dashboard-card .experience-item.expanded .experience-content {
    max-height: 500px;
    opacity: 1;
    padding: 10px 10px 0 20px;
}

.dashboard-card .experience-bullet {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.dashboard-card .experience-bullet .icon {
    width: 15px;
    height: 15px;
    min-width: 15px;
    flex-shrink: 0;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.60));
    margin-top: 3px;
}

.dashboard-card .experience-bullet-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.dashboard-card .experience-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.dashboard-card .experience-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000000;
}

.dashboard-card .experience-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

/* =============================================================================
   SKILLS CARD (2-Column Layout with Toggle)
   ============================================================================= */

/* Skills Toggle Wrapper */
.dashboard-card .skills-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.dashboard-card .skills-toggle-label {
    color: #B1B1B1;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

/* Toggle button base */
.dashboard-card .skills-toggle {
    display: flex;
    padding: 5px 10px;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    border: 1px solid #5A5A5A;
    background: var(--gray-true-850);
    box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.40) inset;
    cursor: pointer;
    position: relative;
}

.dashboard-card .skills-toggle-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: normal;
}

/* Toggle switch (the moving element) */
.dashboard-card .skills-toggle-switch {
    display: flex;
    width: 36px;
    height: 17px;
    padding: 0 10px;
    justify-content: center;
    align-items: center;
    gap: 3px;
    border-radius: 15px;
    border: 0.5px solid var(--gray-true-650);
    background: var(--gray-true-750);
    box-shadow: 1px 1px 0.5px 0 rgba(0, 0, 0, 0.25), 2px 2px 8px 0 rgba(0, 0, 0, 0.60);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: left 0.2s ease, right 0.2s ease;
}

/* Position the switch - default is "hide" (covers Show text on left) */
.dashboard-card .skills-toggle[data-state="hide"] .skills-toggle-switch {
    left: 4px;
}

/* When "show", switch moves to right (covers Hide text) */
.dashboard-card .skills-toggle[data-state="show"] .skills-toggle-switch {
    right: 4px;
    left: auto;
}

/* Toggle lines inside switch */
.dashboard-card .skills-toggle-lines {
    display: flex;
    align-items: center;
    gap: 2px;
}

.dashboard-card .skills-toggle-line {
    display: flex;
    gap: 1px;
}

.dashboard-card .skills-toggle-line .line-1 {
    width: 1px;
    height: 8px;
    background: #1B1B1B;
}

.dashboard-card .skills-toggle-line .line-2 {
    width: 1px;
    height: 8px;
    background: #666;
}

/* Skills List - 2 columns */
.dashboard-card .skills-list-two-column {
    display: flex;
    gap: 15px;
    width: 100%;
}

.dashboard-card .skills-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.dashboard-card .skill-item {
    display: flex;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid var(--gray-true-800);
    background: #212121;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.50);
}

.dashboard-card .skill-header {
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.dashboard-card .skill-dot {
    width: 8px;
    height: 8px;
    aspect-ratio: 1/1;
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.dashboard-card .skill-name {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

/* Skill context - hidden by default, shown on toggle */
.dashboard-card .skill-context {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

/* Show context when toggle is on "show" */
.dashboard-card .skills-list-two-column.context-visible .skill-context {
    max-height: 100px;
    opacity: 1;
    margin-top: 5px;
}

.dashboard-card .skill-divider {
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-self: stretch;
}

.dashboard-card .skill-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #0F0F0F;
}

.dashboard-card .skill-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #414141;
}

.dashboard-card .skill-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    align-self: stretch;
}

.dashboard-card .skill-tag {
    display: flex;
    padding: 3px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    border: 1px solid var(--gray-true-750);
    background: var(--gray-true-900);
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.50) inset;
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
}

/* =============================================================================
   TOOLS CARD (Matching Recruiter Page)
   ============================================================================= */
.dashboard-card .tools-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dashboard-card .tool-item {
    display: flex;
    padding: 5px;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid var(--gray-true-800);
    background: #212121;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.50);
}

.dashboard-card .tool-info {
    display: flex;
    width: 200px;
    align-items: center;
    gap: 10px;
}

.dashboard-card .tool-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.dashboard-card .tool-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dashboard-card .tool-name {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
}

.dashboard-card .tool-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
    padding: 0 5px;
}

.dashboard-card .tool-divider-line-1 {
    width: 1px;
    height: 100%;
    background: #0F0F0F;
}

.dashboard-card .tool-divider-line-2 {
    width: 1px;
    height: 100%;
    background: #414141;
}

.dashboard-card .tool-tags {
    display: flex;
    flex-wrap: wrap;
    padding-left: 5px;
    align-items: center;
    gap: 5px;
    flex: 1 0 0;
    align-self: stretch;
}

.dashboard-card .tool-tag {
    display: flex;
    padding: 3px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    border: 1px solid var(--gray-true-750);
    background: var(--gray-true-900);
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.50) inset;
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
}

/* =============================================================================
   EDUCATION CARD (Matching Recruiter Page)
   ============================================================================= */
.dashboard-card .education-entry {
    display: flex;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid var(--gray-true-800);
    background: #212121;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.50);
}

.dashboard-card .education-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    flex: 1 0 0;
}

.dashboard-card .education-school {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-true-25);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

/* School name spans - inline on desktop with space */
.dashboard-card .education-school-line1::after {
    content: ' ';
}

.dashboard-card .education-school-line2 {
    /* Inline by default */
}

.dashboard-card .education-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-card .education-field,
.dashboard-card .education-degree {
    color: var(--gray-true-25);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.dashboard-card .education-vert-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.dashboard-card .education-vert-line-1 {
    width: 1px;
    height: 100%;
    background: #0F0F0F;
}

.dashboard-card .education-vert-line-2 {
    width: 1px;
    height: 100%;
    background: #414141;
}

.dashboard-card .education-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid var(--gray-true-750);
    background: var(--gray-true-900);
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.50) inset;
}

.dashboard-card .education-location {
    color: var(--gray-true-25);
    text-align: right;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.dashboard-card .education-year {
    color: var(--gray-true-200);
    text-align: right;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

/* Hide right divider on desktop (only show on mobile) */
.dashboard-card .education-right-divider {
    display: none;
}

/* =============================================================================
   DASHBOARD V2 - NEW CARD STYLES
   ============================================================================= */

/* Card Title Sub (e.g., "(LAST ROLE)") */
.dashboard-card .card-title-sub {
    color: var(--gray-true-400);
    font-weight: 500;
}

/* Card Icon SVG Styling */
.dashboard-card .card-icon svg {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(91%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
}

/* -----------------------------------------------------------------------------
   POSITIONING CARD
   ----------------------------------------------------------------------------- */
.positioning-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-self: stretch;
}

.positioning-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.positioning-label svg {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(91%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
}

.positioning-label span {
    color: var(--gray-true-100);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.positioning-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding-left: 32px;
}

/* Reuse profession-tag style */
.positioning-tag {
    display: flex;
    padding: 3px 10px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid var(--gray-true-750);
    background: var(--gray-true-900);
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.50) inset;
    color: var(--gray-true-100);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.positioning-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.positioning-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000;
}

.positioning-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

.positioning-summary {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.positioning-summary-icon {
    display: flex;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.positioning-summary-icon svg {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(91%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
}

.positioning-summary-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}

/* -----------------------------------------------------------------------------
   WHAT I OWNED CARD
   ----------------------------------------------------------------------------- */
.owned-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-self: stretch;
}

.owned-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.owned-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

/* Reuse interest-section-title style */
.owned-section-title {
    color: var(--gray-true-100, #E3E3E3);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.owned-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

/* Reuse interest-bullet style */
.owned-list li {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.owned-list li .owned-bullet-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    min-height: 30px;
    padding: 5px 0;
}

/* Hide divider after last item in list */
.owned-list li:last-child .owned-bullet-divider {
    display: none;
}

.owned-list li .owned-bullet {
    width: 8px;
    height: 8px;
    min-width: 8px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.owned-list li span:last-child {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

/* Bullet point divider (1px lines) */
.owned-bullet-divider {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.owned-bullet-divider-line-1 {
    height: 1px;
    background: #000;
    align-self: stretch;
}

.owned-bullet-divider-line-2 {
    height: 1px;
    background: #282828;
    align-self: stretch;
}

/* Section divider (2px lines) */
.owned-section-divider {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.owned-section-divider-line-1 {
    height: 2px;
    background: #000;
    align-self: stretch;
}

.owned-section-divider-line-2 {
    height: 2px;
    background: #343434;
    align-self: stretch;
}

/* -----------------------------------------------------------------------------
   DESIGN SYSTEMS CAPABILITY CARD
   ----------------------------------------------------------------------------- */
.capability-table {
    display: flex;
    padding: 5px 10px 10px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid var(--gray-true-800);
    background: #212121;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.50);
}

/* Header row (Layer | Scope) */
.capability-header {
    display: flex;
    padding-left: 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.capability-header-label {
    color: var(--gray-true-100);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 24px;
    display: flex;
    align-items: center;
}

/* First header label (Layer) gets fixed width to align with row layers */
.capability-header-label:first-child {
    width: 100px;
}

/* Vertical divider between Layer and Scope */
.capability-header-divider {
    display: flex;
    padding: 0 15px;
    justify-content: center;
    align-items: center;
    gap: 1px;
}

.capability-header-divider-line-1 {
    width: 1px;
    height: 14px;
    background: #000;
}

.capability-header-divider-line-2 {
    width: 1px;
    height: 14px;
    background: #666;
}

/* Content box */
.capability-content {
    display: flex;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid var(--gray-true-750);
    background: var(--gray-true-900);
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.50) inset;
}

/* Content row (Layer text | divider | Scope text) */
.capability-row {
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.capability-row-layer {
    color: var(--gray-true-100);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    width: 100px;
    height: 21px;
    display: flex;
    align-items: center;
}

.capability-row-scope {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    flex: 1;
}

/* Horizontal divider within row (between layer and scope) */
.capability-row-divider {
    display: flex;
    padding: 0 15px;
    justify-content: center;
    align-items: center;
    gap: 1px;
}

.capability-row-divider-line-1 {
    width: 1px;
    height: 14px;
    background: #000;
}

.capability-row-divider-line-2 {
    width: 1px;
    height: 14px;
    background: #666;
}

/* Horizontal divider between rows */
.capability-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.capability-divider-line-1 {
    height: 1px;
    background: #000;
    align-self: stretch;
}

.capability-divider-line-2 {
    height: 1px;
    background: #666;
    align-self: stretch;
}

/* -----------------------------------------------------------------------------
   LEADERSHIP & COLLABORATION CARD
   ----------------------------------------------------------------------------- */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-self: stretch;
}

.leadership-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leadership-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

/* Reuse interest-section-title style */
.leadership-section-title {
    color: var(--gray-true-100, #E3E3E3);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.leadership-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.leadership-list li {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.leadership-list li .leadership-bullet-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    min-height: 30px;
    padding: 5px 0;
}

/* Hide divider after last item in list */
.leadership-list li:last-child .leadership-bullet-divider {
    display: none;
}

.leadership-list li .leadership-bullet {
    width: 8px;
    height: 8px;
    min-width: 8px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.leadership-list li span:last-child {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

/* Bullet point divider (1px lines) */
.leadership-bullet-divider {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.leadership-bullet-divider-line-1 {
    height: 1px;
    background: #000;
    align-self: stretch;
}

.leadership-bullet-divider-line-2 {
    height: 1px;
    background: #282828;
    align-self: stretch;
}

/* Section divider (2px lines) */
.leadership-section-divider {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.leadership-section-divider-line-1 {
    height: 2px;
    background: #000;
    align-self: stretch;
}

.leadership-section-divider-line-2 {
    height: 2px;
    background: #343434;
    align-self: stretch;
}

.leadership-numbered-list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: leadership-counter;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.leadership-numbered-list li {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    counter-increment: leadership-counter;
}

.leadership-numbered-list li .leadership-numbered-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3px;
    min-height: 30px;
    padding: 5px 0;
}

.leadership-numbered-list li .leadership-numbered-row::before {
    content: counter(leadership-counter) ".";
    color: var(--gray-true-400);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    min-width: 16px;
}

.leadership-numbered-list li .leadership-numbered-row span {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

/* Hide divider after last item in numbered list */
.leadership-numbered-list li:last-child .leadership-bullet-divider {
    display: none;
}

/* -----------------------------------------------------------------------------
   CREDENTIALS & LOGISTICS CARD
   ----------------------------------------------------------------------------- */
.credentials-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: stretch;
}

.credentials-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.credentials-label svg {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(91%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
}

.credentials-label span {
    color: var(--gray-true-100);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.credentials-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding-left: 32px;
}

/* Reuse profession-tag style */
.credentials-tag {
    display: flex;
    padding: 3px 10px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid var(--gray-true-750);
    background: var(--gray-true-900);
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.50) inset;
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

/* credentials-tag-highlight removed - use credentials-tag instead */

.credentials-tag-language {
    display: flex;
    align-items: center;
    gap: 6px;
}

.credentials-tag-language .language-flag {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    object-fit: cover;
}

.credentials-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.credentials-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000;
}

.credentials-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

.credentials-languages {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-left: 26px;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.language-flag {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    object-fit: cover;
}

.language-name {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

/* -----------------------------------------------------------------------------
   IMPACT SNAPSHOT CARD
   ----------------------------------------------------------------------------- */
.dashboard-card[data-card="impact-snapshot"] .card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.impact-item {
    display: flex;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid var(--gray-true-800);
    background: #212121;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.50);
}

.impact-label {
    color: var(--gray-true-100);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

/* Reuse process-tag style */
.impact-value-box {
    display: flex;
    height: 35px;
    padding: 3px 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid var(--gray-true-750);
    background: var(--gray-true-900);
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.50) inset;
}

.impact-value {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

/* -----------------------------------------------------------------------------
   FEATURED WORK CARD (matching recruiter-portfolio-card style)
   ----------------------------------------------------------------------------- */
.featured-work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-self: stretch;
}

/* Individual Featured Work Card */
.featured-work-card {
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 10px;
    border: 1px solid var(--gray-true-750);
    background: #161616;
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
    position: relative;
}

/* Featured Work Card Image */
.featured-work-card-image {
    display: flex;
    width: 100%;
    aspect-ratio: 16/9;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--gray-true-850);
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
    overflow: hidden;
}

.featured-work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Featured Work Card Text Container */
.featured-work-card-text {
    display: flex;
    padding: 0 10px 5px 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    align-self: stretch;
}

/* Featured Work Card Title + Description */
.featured-work-card-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

/* Featured Work Card Title */
.featured-work-card-title {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

/* Featured Work Card Description */
.featured-work-card-description {
    color: var(--gray-true-100, #E3E3E3);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.3;
    margin: 0;
}

/* Featured Work Card Divider */
.featured-work-card-divider {
    display: flex;
    padding: 8px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.featured-work-card-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000000;
}

.featured-work-card-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #343434;
}

/* Featured Work Card Bullets */
.featured-work-card-bullets {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    margin-top: 5px;
}

.featured-work-card-bullet {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.featured-work-card-bullet .icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    margin-top: 4px;
}

.featured-work-card-bullet-text {
    color: var(--gray-true-300);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.3;
}

/* -----------------------------------------------------------------------------
   DOMAIN FIT CARD
   ----------------------------------------------------------------------------- */
.domain-fit-grid {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    align-self: stretch;
}

.domain-fit-column {
    display: flex;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    flex: 1 0 0;
    border-radius: 5px;
    border: 1px solid var(--gray-true-800, #343434);
    background: #212121;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.50);
}

.domain-fit-title {
    color: var(--gray-true-100, #E3E3E3);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 0 10px;
}

.domain-fit-list {
    display: flex;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    list-style: none;
    margin: 0;
    border-radius: 5px;
    border: 1px solid var(--gray-true-750, #414141);
    background: var(--gray-true-900, #1B1B1B);
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.50) inset;
}

.domain-fit-list li {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.domain-fit-list li .domain-fit-bullet-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    min-height: 30px;
    padding: 5px 0;
}

/* Hide divider after last item in list */
.domain-fit-list li:last-child .domain-fit-bullet-divider {
    display: none;
}

.domain-fit-list li .domain-fit-bullet {
    width: 8px;
    height: 8px;
    min-width: 8px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.domain-fit-list li span:last-child {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

/* Bullet point divider (1px lines) */
.domain-fit-bullet-divider {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.domain-fit-bullet-divider-line-1 {
    height: 1px;
    background: #000;
    align-self: stretch;
}

.domain-fit-bullet-divider-line-2 {
    height: 1px;
    background: #282828;
    align-self: stretch;
}

/* =============================================================================
   DASHBOARD RESPONSIVE - SINGLE COLUMN (max-width: 992px)
   ============================================================================= */
@media (max-width: 992px) {
    .dashboard-content {
        flex-direction: column;
    }

    .dashboard-column {
        width: 100%;
        display: contents; /* Cards participate directly in parent flex */
    }

    /* Card order for single column (mobile) - Dashboard V2 */
    .dashboard-card[data-card="featured-work"] { order: 1; }
    .dashboard-card[data-card="positioning"] { order: 2; }
    .dashboard-card[data-card="impact-snapshot"] { order: 3; }
    .dashboard-card[data-card="what-i-owned"] { order: 4; }
    .dashboard-card[data-card="design-systems"] { order: 5; }
    .dashboard-card[data-card="leadership"] { order: 6; }
    .dashboard-card[data-card="domain-fit"] { order: 7; }
    .dashboard-card[data-card="credentials"] { order: 8; }

    /* Legacy card ordering (keep for backwards compatibility) */
    .dashboard-card[data-card="summary"] { order: 1; }
    .dashboard-card[data-card="experience"] { order: 2; }
    .dashboard-card[data-card="work-authorization"] { order: 3; }
    .dashboard-card[data-card="work-preferences"] { order: 4; }
    .dashboard-card[data-card="skills"] { order: 5; }
    .dashboard-card[data-card="design-approach"] { order: 6; }
    .dashboard-card[data-card="areas-of-interest"] { order: 7; }
    .dashboard-card[data-card="tools"] { order: 8; }
    .dashboard-card[data-card="clients"] { order: 9; }
    .dashboard-card[data-card="education"] { order: 10; }

    /* Dashboard V2 - Stack grids on tablet */
    .owned-grid,
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Featured work stays 2 columns at 992px */
    .featured-work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Skills - stack columns on mobile */
    .dashboard-card .skills-list-two-column {
        flex-direction: column;
        gap: 10px;
    }

    /* Clients grid: 4 per row on tablet */
    .dashboard-card .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile layout - matching recruiter page */
@media (max-width: 768px) {
    /* Cards take full width */
    .dashboard-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Featured work and domain fit stack to 1 column on mobile */
    .featured-work-grid {
        grid-template-columns: 1fr;
    }

    .domain-fit-grid {
        flex-direction: column;
    }

    .domain-fit-column {
        flex: none;
        width: 100%;
    }

    /* Tools card - vertical layout on mobile */
    .dashboard-card .tool-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        height: auto;
    }

    .dashboard-card .tool-info {
        width: 100%;
    }

    /* Hide vertical divider on mobile */
    .dashboard-card .tool-divider {
        display: none;
    }

    .dashboard-card .tool-tags {
        padding-left: 34px; /* Align with tool-name (24px icon + 10px gap) */
        width: 100%;
        box-sizing: border-box;
    }

    /* Experience card - vertical layout on mobile */
    .dashboard-card .experience-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .dashboard-card .experience-header-left {
        width: 100%;
    }

    .dashboard-card .experience-meta {
        flex-direction: row;
        padding: 3px 10px 3px 15px;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        width: 100%;
        box-sizing: border-box;
    }

    .dashboard-card .experience-location,
    .dashboard-card .experience-date {
        font-size: 12px;
        text-align: left;
    }

    /* Vertical divider between location and date */
    .dashboard-card .experience-meta-divider {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1px;
        align-self: stretch;
        padding: 0 10px;
    }

    .dashboard-card .experience-meta-divider-line-1 {
        width: 1px;
        height: 100%;
        background: #0F0F0F;
    }

    .dashboard-card .experience-meta-divider-line-2 {
        width: 1px;
        height: 100%;
        background: #414141;
    }

    /* Education card - vertical layout on mobile */
    .dashboard-card .education-entry {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .dashboard-card .education-school {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    /* Remove the space after line1 on mobile since they're stacked */
    .dashboard-card .education-school-line1::after {
        content: none;
    }

    .dashboard-card .education-right {
        flex-direction: row;
        align-items: center;
        align-self: stretch;
        gap: 0;
        padding: 3px 10px 3px 15px;
        justify-content: flex-start;
    }

    .dashboard-card .education-location,
    .dashboard-card .education-year {
        font-size: 12px;
        text-align: left;
    }

    /* Vertical divider between location and year */
    .dashboard-card .education-right-divider {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1px;
        align-self: stretch;
        padding: 0 10px;
    }

    .dashboard-card .education-right-divider-line-1 {
        width: 1px;
        height: 100%;
        background: #0F0F0F;
    }

    .dashboard-card .education-right-divider-line-2 {
        width: 1px;
        height: 100%;
        background: #414141;
    }

    /* Clients grid: 3 per row on mobile */
    .dashboard-card .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large screens - 5 columns for Clients grid */
@media (min-width: 2100px) {
    .dashboard-card .clients-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* -----------------------------------------------------------------------------
   SCROLL TO TOP BUTTON
   ----------------------------------------------------------------------------- */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
    border: 1px solid var(--gray-true-600);
    background: var(--gray-true-950);
    box-shadow: var(--shadow-scroll-top);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    z-index: 100;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--gray-true-900);
    border-color: var(--gray-true-600);
}

.scroll-to-top .icon {
    width: 20px;
    height: 20px;
}

/* =============================================================================
   PROFILE SECTION STYLES
   ============================================================================= */

/* -----------------------------------------------------------------------------
   PROFILE FILTER BAR (matching Portfolio filter style)
   ----------------------------------------------------------------------------- */
.profile-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    margin-bottom: 10px;
}

.profile-filter-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.profile-filter-label {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.profile-filter-options {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.profile-filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.profile-filter-item[data-filter="all"] {
    min-width: 50px;
}

.profile-filter-checkbox {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    position: relative;
}

.profile-filter-checkbox .checkbox-unchecked,
.profile-filter-checkbox .checkbox-checked {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.2s ease;
}

.profile-filter-checkbox .checkbox-checked {
    opacity: 0;
}

.profile-filter-item.active .checkbox-unchecked {
    opacity: 0;
}

.profile-filter-item.active .checkbox-checked {
    opacity: 1;
}

.profile-filter-text {
    color: var(--gray-true-400);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    transition: color 0.2s ease;
}

.profile-filter-item:hover .profile-filter-text {
    color: var(--gray-true-200);
}

.profile-filter-item.active .profile-filter-text {
    color: var(--gray-true-100);
}

/* Profile Filter Divider (between items) */
.profile-filter-divider {
    display: flex;
    align-items: center;
    gap: 1px;
    align-self: stretch;
    padding: 0 5px;
}

.profile-filter-divider-line-1 {
    width: 1px;
    height: 16px;
    background: #0F0F0F;
}

.profile-filter-divider-line-2 {
    width: 1px;
    height: 16px;
    background: #414141;
}

/* -----------------------------------------------------------------------------
   PROFILE 2-COLUMN LAYOUT
   ----------------------------------------------------------------------------- */
.profile-content {
    display: flex;
    gap: 15px;
    padding-bottom: 60px;
}

.profile-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: width 0.3s ease;
}

.profile-column-left {
    width: 33.333%;
    min-width: 500px;
}

.profile-column-right {
    width: 66.666%;
    flex: 1;
}

/* Filter-specific layouts: 50/50 columns */
.profile-content[data-active-filter="profile"] .profile-column-left,
.profile-content[data-active-filter="profile"] .profile-column-right,
.profile-content[data-active-filter="design-approach"] .profile-column-left,
.profile-content[data-active-filter="design-approach"] .profile-column-right {
    width: 50%;
    min-width: unset;
}

/* -----------------------------------------------------------------------------
   PROFILE CARD BASE STYLES
   ----------------------------------------------------------------------------- */
.profile-card {
    display: flex;
    padding: 15px;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    border-radius: 15px;
    border: 1px solid #414141;
    background: var(--gray-true-900);
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
    opacity: 1;
    transition: opacity 0.15s ease;
}

/* Fade out state */
.profile-card.fade-out {
    opacity: 0;
}

/* Hidden state (after fade completes) */
.profile-card.card-hidden {
    display: none;
}

/* Card Header */
.profile-card .card-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    align-self: stretch;
}

.profile-card .card-icon {
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.profile-card .card-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(91%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
}

.profile-card .card-title {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

/* Card Divider */
.profile-card .card-divider {
    display: flex;
    padding: 5px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    align-self: stretch;
}

.profile-card .card-divider-line-1 {
    width: 100%;
    height: 2px;
    background-color: #000;
}

.profile-card .card-divider-line-2 {
    width: 100%;
    height: 2px;
    background-color: #282828;
}

/* Card Content */
.profile-card .card-content {
    width: 100%;
}

/* -----------------------------------------------------------------------------
   HIRO FUKUSHIMA CARD
   ----------------------------------------------------------------------------- */
.hiro-info-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    align-self: stretch;
}

.hiro-photo {
    flex-shrink: 0;
}

.hiro-photo img {
    height: 250px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid var(--gray-true-750);
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
}

/* Vertical Divider */
.hiro-vert-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.hiro-vert-divider-line-1 {
    width: 1px;
    height: 100%;
    background: #000000;
}

.hiro-vert-divider-line-2 {
    width: 1px;
    height: 100%;
    background: #282828;
}

/* Info Section */
.hiro-info-section {
    display: flex;
    padding: 5px 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
}

.hiro-background,
.hiro-languages {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.hiro-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.hiro-section-icon {
    display: flex;
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    filter: brightness(0) saturate(100%) invert(53%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(86%);
}

.hiro-section-title {
    color: var(--gray-true-100);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

.hiro-section-text {
    display: block;
    padding-left: 30px;
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Section Divider */
.hiro-section-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.hiro-section-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000;
}

.hiro-section-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

/* Languages */
.hiro-languages {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    align-self: stretch;
}

.hiro-language-list {
    display: flex;
    padding-left: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 5px 10px;
    align-self: stretch;
}

.hiro-language-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hiro-language-item .flag-icon {
    width: 16px;
    height: 16px;
    border-radius: 2px;
}

.hiro-language-item .language-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

/* Language Divider (vertical) */
.hiro-lang-divider {
    display: flex;
    padding: 0 5px;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.hiro-lang-divider-line-1 {
    width: 1px;
    height: 16px;
    background: #0F0F0F;
}

.hiro-lang-divider-line-2 {
    width: 1px;
    height: 16px;
    background: #414141;
}

/* Quote Section */
.hiro-quote-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.hiro-quote-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000;
}

.hiro-quote-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

.hiro-quote {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hiro-quote .quote-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.hiro-quote .quote-text {
    color: var(--gray-true-100);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}

/* -----------------------------------------------------------------------------
   PROFESSION CARD
   ----------------------------------------------------------------------------- */
.profession-section-header {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.profession-section-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(53%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(86%);
}

.profession-title {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}

.profession-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding-left: 26px;
}

.profession-tag {
    display: flex;
    padding: 3px 10px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid var(--gray-true-750);
    background: var(--gray-true-900);
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.50) inset;
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.profession-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.profession-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000;
}

.profession-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

.profession-section-title {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}

/* -----------------------------------------------------------------------------
   ABOUT CARD
   ----------------------------------------------------------------------------- */
.about-bullet {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.about-bullet .icon {
    width: 10px;
    height: 10px;
    min-width: 10px;
    margin-top: 6px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.about-bullet-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.about-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.about-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000;
}

.about-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

/* -----------------------------------------------------------------------------
   COGNITIVE STYLE CARD
   ----------------------------------------------------------------------------- */
.cognitive-bullet {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.cognitive-bullet .icon {
    width: 10px;
    height: 10px;
    min-width: 10px;
    margin-top: 6px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.cognitive-bullet-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.cognitive-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.cognitive-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000;
}

.cognitive-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

/* -----------------------------------------------------------------------------
   CORE PATTERN CARD
   ----------------------------------------------------------------------------- */
.core-bullet {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.core-bullet .icon {
    width: 10px;
    height: 10px;
    min-width: 10px;
    margin-top: 6px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.core-bullet-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.core-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.core-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000;
}

.core-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

/* -----------------------------------------------------------------------------
   DESIGN PROCESS CARD
   ----------------------------------------------------------------------------- */
.process-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.process-toggle-label {
    color: #B1B1B1;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.process-toggle {
    display: flex;
    padding: 5px 10px;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    border: 1px solid #5A5A5A;
    background: var(--gray-true-850);
    box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.40) inset;
    cursor: pointer;
    position: relative;
}

.process-toggle-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: normal;
}

.process-toggle-switch {
    display: flex;
    width: 32px;
    height: 15px;
    padding: 0 10px;
    justify-content: center;
    align-items: center;
    gap: 3px;
    border-radius: 15px;
    border: 0.5px solid var(--gray-true-650);
    background: var(--gray-true-750);
    box-shadow: 1px 1px 0.5px 0 rgba(0, 0, 0, 0.25), 2px 2px 8px 0 rgba(0, 0, 0, 0.60);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: left 0.2s ease, right 0.2s ease;
}

.process-toggle[data-state="hide"] .process-toggle-switch {
    left: 5px;
}

.process-toggle[data-state="show"] .process-toggle-switch {
    right: 5px;
    left: auto;
}

.process-toggle-lines {
    display: flex;
    align-items: center;
    gap: 2px;
}

.process-toggle-line {
    display: flex;
    gap: 1px;
}

.process-toggle-line .line-1 {
    width: 1px;
    height: 8px;
    background: #1B1B1B;
}

.process-toggle-line .line-2 {
    width: 1px;
    height: 8px;
    background: #666;
}

/* Process List - 2 Column Layout */
.process-list-two-column {
    display: flex;
    gap: 10px;
}

.process-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.process-item {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--gray-true-800);
    background: #212121;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.50);
}

.process-header {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.process-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.process-number {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    min-width: 20px;
}

.process-title {
    color: var(--gray-true-100);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

/* Process Context (hidden by default) */
.process-context {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.process-list-two-column.details-visible .process-context {
    max-height: 400px;
    opacity: 1;
    margin-top: 5px;
}

.process-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.process-tag {
    display: flex;
    padding: 8px 10px;
    align-items: center;
    border-radius: 5px;
    border: 1px solid var(--gray-true-750);
    background: var(--gray-true-900);
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.50) inset;
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

/* -----------------------------------------------------------------------------
   DESIGN VALUE CARD
   ----------------------------------------------------------------------------- */
.value-bullet {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.value-bullet .icon {
    width: 10px;
    height: 10px;
    min-width: 10px;
    margin-top: 6px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.value-bullet-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.value-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.value-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000;
}

.value-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

/* -----------------------------------------------------------------------------
   LEVELS OF DESIGN CARD
   ----------------------------------------------------------------------------- */
.levels-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.levels-toggle-label {
    color: #B1B1B1;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.levels-toggle {
    display: flex;
    padding: 5px 10px;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    border: 1px solid #5A5A5A;
    background: var(--gray-true-850);
    box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.40) inset;
    cursor: pointer;
    position: relative;
}

.levels-toggle-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: normal;
}

.levels-toggle-switch {
    display: flex;
    width: 32px;
    height: 15px;
    padding: 0 10px;
    justify-content: center;
    align-items: center;
    gap: 3px;
    border-radius: 15px;
    border: 0.5px solid var(--gray-true-650);
    background: var(--gray-true-750);
    box-shadow: 1px 1px 0.5px 0 rgba(0, 0, 0, 0.25), 2px 2px 8px 0 rgba(0, 0, 0, 0.60);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: left 0.2s ease, right 0.2s ease;
}

.levels-toggle[data-state="hide"] .levels-toggle-switch {
    left: 5px;
}

.levels-toggle[data-state="show"] .levels-toggle-switch {
    right: 5px;
    left: auto;
}

.levels-toggle-lines {
    display: flex;
    align-items: center;
    gap: 2px;
}

.levels-toggle-line {
    display: flex;
    gap: 1px;
}

.levels-toggle-line .line-1 {
    width: 1px;
    height: 8px;
    background: #1B1B1B;
}

.levels-toggle-line .line-2 {
    width: 1px;
    height: 8px;
    background: #666;
}

.levels-intro {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    margin: 0 0 10px 0;
}

/* Levels List - 2 Column Layout */
.levels-list-two-column {
    display: flex;
    gap: 10px;
}

.levels-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.level-item {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--gray-true-800);
    background: #212121;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.50);
}

.level-header {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.level-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.level-number {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    min-width: 20px;
}

.level-title {
    color: var(--gray-true-100);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

/* Level Context (hidden by default) */
.level-context {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.levels-list-two-column.details-visible .level-context {
    max-height: 400px;
    opacity: 1;
    margin-top: 5px;
}

.level-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.level-tag {
    display: flex;
    padding: 8px 10px;
    align-items: center;
    border-radius: 5px;
    border: 1px solid var(--gray-true-750);
    background: var(--gray-true-900);
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.50) inset;
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

/* -----------------------------------------------------------------------------
   PROFILE SKILLS CARD (reusing dashboard skills patterns)
   ----------------------------------------------------------------------------- */
.profile-card .skills-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.profile-card .skills-toggle-label {
    color: #B1B1B1;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.profile-card .skills-toggle {
    display: flex;
    padding: 5px 10px;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    border: 1px solid #5A5A5A;
    background: var(--gray-true-850);
    box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.40) inset;
    cursor: pointer;
    position: relative;
}

.profile-card .skills-toggle-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: normal;
}

.profile-card .skills-toggle-switch {
    display: flex;
    width: 32px;
    height: 15px;
    padding: 0 10px;
    justify-content: center;
    align-items: center;
    gap: 3px;
    border-radius: 15px;
    border: 0.5px solid var(--gray-true-650);
    background: var(--gray-true-750);
    box-shadow: 1px 1px 0.5px 0 rgba(0, 0, 0, 0.25), 2px 2px 8px 0 rgba(0, 0, 0, 0.60);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: left 0.2s ease, right 0.2s ease;
}

.profile-card .skills-toggle[data-state="hide"] .skills-toggle-switch {
    left: 5px;
}

.profile-card .skills-toggle[data-state="show"] .skills-toggle-switch {
    right: 5px;
    left: auto;
}

.profile-card .skills-toggle-lines {
    display: flex;
    align-items: center;
    gap: 2px;
}

.profile-card .skills-toggle-line {
    display: flex;
    gap: 1px;
}

.profile-card .skills-toggle-line .line-1 {
    width: 1px;
    height: 8px;
    background: #1B1B1B;
}

.profile-card .skills-toggle-line .line-2 {
    width: 1px;
    height: 8px;
    background: #666;
}

/* Skills List - 2 columns */
.profile-card .skills-list-two-column {
    display: flex;
    gap: 15px;
    width: 100%;
}

.profile-card .skills-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.profile-card .skill-item {
    display: flex;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid var(--gray-true-800);
    background: #212121;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.50);
}

.profile-card .skill-header {
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.profile-card .skill-dot {
    width: 8px;
    height: 8px;
    aspect-ratio: 1/1;
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.profile-card .skill-name {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

/* Skill context - hidden by default, shown on toggle */
.profile-card .skill-context {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

/* Show context when toggle is on "show" */
.profile-card .skills-list-two-column.context-visible .skill-context {
    max-height: 100px;
    opacity: 1;
    margin-top: 5px;
}

.profile-card .skill-divider {
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-self: stretch;
}

.profile-card .skill-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #0F0F0F;
}

.profile-card .skill-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #414141;
}

.profile-card .skill-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    align-self: stretch;
}

.profile-card .skill-tag {
    display: flex;
    padding: 3px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    border: 1px solid var(--gray-true-750);
    background: var(--gray-true-900);
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.50) inset;
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
}

/* -----------------------------------------------------------------------------
   PRINCIPLES CARD
   ----------------------------------------------------------------------------- */
.principle-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.principle-title {
    color: var(--gray-true-100);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.principle-bullet {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.principle-bullet .icon {
    width: 10px;
    height: 10px;
    min-width: 10px;
    margin-top: 6px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.principle-bullet-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.principle-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.principle-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000;
}

.principle-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

/* -----------------------------------------------------------------------------
   PROFILE CARD - AREAS OF INTEREST
   ----------------------------------------------------------------------------- */
.profile-card .interest-section-title {
    color: var(--gray-true-100, #E3E3E3);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.profile-card .interest-bullet {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.profile-card .interest-bullet .icon {
    width: 10px;
    height: 10px;
    min-width: 10px;
    margin-top: 6px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.profile-card .interest-bullet-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.profile-card .interest-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.profile-card .interest-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000000;
}

.profile-card .interest-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

/* -----------------------------------------------------------------------------
   PROFILE CARD - WORK AUTHORIZATION
   ----------------------------------------------------------------------------- */
.profile-card .auth-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-card .auth-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
}

.profile-card .auth-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.profile-card .auth-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.profile-card .auth-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000000;
}

.profile-card .auth-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

/* -----------------------------------------------------------------------------
   PROFILE CARD - WORK PREFERENCES
   ----------------------------------------------------------------------------- */
.profile-card .pref-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-card .pref-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
}

.profile-card .pref-text {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.profile-card .pref-divider {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.profile-card .pref-divider-line-1 {
    width: 100%;
    height: 1px;
    background: #000000;
}

.profile-card .pref-divider-line-2 {
    width: 100%;
    height: 1px;
    background: #282828;
}

/* -----------------------------------------------------------------------------
   PROFILE CARD - TOOLS
   ----------------------------------------------------------------------------- */
.profile-card .tools-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.profile-card .tool-item {
    display: flex;
    padding: 5px;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid var(--gray-true-800);
    background: #212121;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.50);
}

.profile-card .tool-info {
    display: flex;
    width: 200px;
    align-items: center;
    gap: 10px;
}

.profile-card .tool-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.profile-card .tool-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.profile-card .tool-name {
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
}

.profile-card .tool-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
    padding: 0 5px;
}

.profile-card .tool-divider-line-1 {
    width: 1px;
    height: 100%;
    background: #0F0F0F;
}

.profile-card .tool-divider-line-2 {
    width: 1px;
    height: 100%;
    background: #414141;
}

.profile-card .tool-tags {
    display: flex;
    flex-wrap: wrap;
    padding-left: 5px;
    align-items: center;
    gap: 5px;
    flex: 1 0 0;
    align-self: stretch;
}

.profile-card .tool-tag {
    display: flex;
    padding: 3px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    border: 1px solid var(--gray-true-750);
    background: var(--gray-true-900);
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.50) inset;
    color: var(--gray-true-200);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
}

/* -----------------------------------------------------------------------------
   PROFILE CARD - EDUCATION (vertical layout as default)
   ----------------------------------------------------------------------------- */
.profile-card .education-entry {
    display: flex;
    flex-direction: column;
    padding: 10px;
    align-items: flex-start;
    gap: 5px;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid var(--gray-true-800);
    background: #212121;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.50);
}

.profile-card .education-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    flex: 1 0 0;
}

.profile-card .education-school {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    color: var(--gray-true-25);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

.profile-card .education-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-card .education-field,
.profile-card .education-degree {
    color: var(--gray-true-25);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.profile-card .education-vert-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
}

.profile-card .education-vert-line-1 {
    width: 1px;
    height: 100%;
    background: #0F0F0F;
}

.profile-card .education-vert-line-2 {
    width: 1px;
    height: 100%;
    background: #414141;
}

.profile-card .education-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    gap: 0;
    padding: 3px 10px 3px 15px;
    justify-content: flex-start;
    border-radius: 5px;
    border: 1px solid var(--gray-true-750);
    background: var(--gray-true-900);
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.50) inset;
}

.profile-card .education-location {
    color: var(--gray-true-25);
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
}

.profile-card .education-year {
    color: var(--gray-true-200);
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
}

.profile-card .education-right-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1px;
    align-self: stretch;
    padding: 0 10px;
}

.profile-card .education-right-divider-line-1 {
    width: 1px;
    height: 100%;
    background: #0F0F0F;
}

.profile-card .education-right-divider-line-2 {
    width: 1px;
    height: 100%;
    background: #414141;
}

/* -----------------------------------------------------------------------------
   PROFILE SECTION RESPONSIVE
   ----------------------------------------------------------------------------- */

/* At 1165px: Stack columns (2-column to 1-column) */
@media (max-width: 1165px) {
    .profile-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .profile-column-left,
    .profile-column-right {
        display: contents;
    }

    .profile-card {
        width: 100%;
    }

    /* Mobile card order */
    .profile-card[data-card="hiro-fukushima"] { order: 1; }
    .profile-card[data-card="profession"] { order: 2; }
    .profile-card[data-card="about"] { order: 3; }
    .profile-card[data-card="work-authorization"] { order: 4; }
    .profile-card[data-card="work-preferences"] { order: 5; }
    .profile-card[data-card="areas-of-interest"] { order: 6; }
    .profile-card[data-card="cognitive-style"] { order: 7; }
    .profile-card[data-card="core-pattern"] { order: 8; }
    .profile-card[data-card="design-process"] { order: 9; }
    .profile-card[data-card="design-value"] { order: 10; }
    .profile-card[data-card="principles"] { order: 11; }
    .profile-card[data-card="levels-of-design"] { order: 12; }
    .profile-card[data-card="skills"] { order: 13; }
    .profile-card[data-card="tools"] { order: 14; }
    .profile-card[data-card="education"] { order: 15; }
}

/* Mobile: Profile section layout changes */
@media (max-width: 768px) {
    .profile-filters {
        display: none;
    }

    .hiro-info-row {
        flex-direction: column;
        align-items: center;
    }

    .hiro-photo img {
        height: 250px;
        width: auto;
    }

    .hiro-vert-divider {
        display: none;
    }

    .hiro-info-section {
        padding: 10px 0 0 0;
    }

    /* Skills - stack columns on mobile */
    .profile-card .skills-list-two-column {
        flex-direction: column;
        gap: 10px;
    }

    /* Tools card - vertical layout on mobile */
    .profile-card .tool-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        height: auto;
    }

    .profile-card .tool-info {
        width: 100%;
    }

    /* Hide vertical divider on mobile */
    .profile-card .tool-divider {
        display: none;
    }

    .profile-card .tool-tags {
        padding-left: 34px; /* Align with tool-name (24px icon + 10px gap) */
        width: 100%;
        box-sizing: border-box;
    }

    /* Design Process - stack columns on mobile */
    .process-list-two-column {
        flex-direction: column;
        gap: 5px;
    }

    .process-column {
        width: 100%;
        gap: 5px;
    }

    /* Levels of Design - stack columns on mobile */
    .levels-list-two-column {
        flex-direction: column;
        gap: 5px;
    }

    .levels-column {
        width: 100%;
        gap: 5px;
    }
}

/* =============================================================================
   EXPERIENCE SECTION STYLES
   ============================================================================= */

/* -----------------------------------------------------------------------------
   EXPERIENCE 2-COLUMN LAYOUT
   ----------------------------------------------------------------------------- */
.experience-content {
    display: flex;
    gap: 15px;
    padding-bottom: 60px;
    margin-top: 15px;
}

.experience-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.experience-column-left {
    width: 50%;
}

.experience-column-right {
    width: 50%;
}

/* -----------------------------------------------------------------------------
   EXPERIENCE CARD BASE STYLES
   ----------------------------------------------------------------------------- */
.experience-card {
    display: flex;
    padding: 15px;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    border-radius: 15px;
    border: 1px solid #414141;
    background: var(--gray-true-900);
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
}

/* Card Header */
.experience-card .card-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    align-self: stretch;
}

.experience-card .card-logo {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    aspect-ratio: 1/1;
}

.experience-card .card-logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.experience-card .card-icon {
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.experience-card .card-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(91%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
}

.experience-card .card-title {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

/* Card Divider */
.experience-card .card-divider {
    display: flex;
    padding: 5px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    align-self: stretch;
}

.experience-card .card-divider-line-1 {
    width: 100%;
    height: 2px;
    background-color: #000;
}

.experience-card .card-divider-line-2 {
    width: 100%;
    height: 2px;
    background-color: #282828;
}

/* Card Content */
.experience-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

/* -----------------------------------------------------------------------------
   EXPERIENCE HEADER (Job Title, Location, Date)
   ----------------------------------------------------------------------------- */
.experience-header {
    display: flex;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid var(--gray-true-800);
    background: #212121;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.50);
}

.experience-job-title {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.experience-meta {
    display: flex;
    padding: 3px 10px;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    border-radius: 5px;
    border: 1px solid var(--gray-true-750);
    background: var(--gray-true-900);
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.50) inset;
}

.experience-location {
    color: var(--gray-true-25);
    text-align: right;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
}

.experience-date {
    color: var(--gray-true-200);
    text-align: right;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
}

.experience-meta-divider {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    height: 20px;
}

.experience-meta-divider-line-1 {
    width: 1px;
    height: 100%;
    background-color: #000;
}

.experience-meta-divider-line-2 {
    width: 1px;
    height: 100%;
    background-color: #414141;
}

/* -----------------------------------------------------------------------------
   EXPERIENCE BULLETS
   ----------------------------------------------------------------------------- */
.experience-bullets {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding-top: 10px;
}

.experience-bullet {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    padding: 5px 0;
}

.experience-bullet .bullet-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.60));
    margin-top: 3px;
}

.experience-bullet .bullet-text {
    color: var(--gray-true-300);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

/* -----------------------------------------------------------------------------
   MAP CARD STYLES
   ----------------------------------------------------------------------------- */
.map-card .card-content {
    gap: 0;
}

.map-card .card-header {
    align-items: flex-start;
}

.map-container {
    display: flex;
    padding: 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid var(--gray-true-750);
    background: #222;
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.60);
    overflow: hidden;
}

.map-svg {
    width: 100%;
    height: auto;
}

/* -----------------------------------------------------------------------------
   COUNTRY BUTTONS
   ----------------------------------------------------------------------------- */
.country-buttons {
    display: flex;
    padding-top: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.country-btn {
    display: flex;
    width: 100px;
    height: 60px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
    border: 1px solid var(--gray-true-700);
    background: #222;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.country-btn:hover {
    border-radius: 5px;
    border: 1px solid var(--gray-true-300);
    background: #222;
    box-shadow: 1px 1px 0.5px 0 rgba(0, 0, 0, 0.25), 2px 2px 8px 0 rgba(0, 0, 0, 0.60);
}

.country-flag {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.country-name {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

/* -----------------------------------------------------------------------------
   EXPERIENCE RESPONSIVE STYLES
   ----------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .experience-content {
        flex-direction: column;
    }

    .experience-column-left,
    .experience-column-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .experience-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .experience-meta {
        width: 100%;
        justify-content: flex-start;
    }

    .map-container {
        padding: 10px;
    }

    .country-btn {
        width: 80px;
        height: 50px;
    }

    .country-flag {
        width: 24px;
        height: 24px;
    }

    .country-name {
        font-size: 10px;
    }
}

/* =============================================================================
   PROJECT IMAGE HOVER EFFECT
   ============================================================================= */

.project-image.project-image-hover {
    display: grid !important;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    margin-bottom: 5px;
}

.project-image.project-image-hover > .img-default,
.project-image.project-image-hover > .img-hover {
    grid-area: 1 / 1 / 2 / 2 !important;
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

.project-image.project-image-hover > .img-hover {
    opacity: 0;
}

.project-image.project-image-hover:hover > .img-default {
    opacity: 0;
}

.project-image.project-image-hover:hover > .img-hover {
    opacity: 1;
}
