/* =========================================================================
   SONA DIGITAL ECOSYSTEM V10
   COMPANY MODULE — DESIGN SYSTEM
   =========================================================================

   Prefix: .cmp-*
   Tokens: --cmp-*
   Module: Company Portal (TASK-002)

   Design language:
   - Premium, enterprise, professional
   - Dark header with deep blue (#0b1d3a)
   - Clean content area with light backgrounds
   - Card-based layouts with subtle shadows
   - Mobile-first responsive design

   Breakpoints:
   - 1440px: Full desktop
   - 1200px: Reduced padding
   - 1024px: Sidebar collapsed
   - 768px:  Mobile hamburger
   - 430px:  Full mobile
   - 390px:  Minimal mobile
   ========================================================================= */

/* =========================================================================
   1. DESIGN TOKENS
   ========================================================================= */

:root {
    /* Background & Surface */
    --cmp-background:        #f0f4f8;
    --cmp-surface:           #ffffff;
    --cmp-surface-alt:       #f8fafc;
    --cmp-surface-hover:     #f1f5f9;
    --cmp-surface-active:    #e2e8f0;

    /* Brand / Primary — corporate deep blue */
    --cmp-primary:           #0b3d91;
    --cmp-primary-dark:      #082d6e;
    --cmp-primary-light:     #1a5cc7;
    --cmp-primary-soft:      #e8f0fe;
    --cmp-primary-50:        #f0f6ff;

    /* Text */
    --cmp-text:              #1e293b;
    --cmp-text-strong:       #0f172a;
    --cmp-text-muted:        #64748b;
    --cmp-text-soft:         #94a3b8;
    --cmp-text-inverse:      #ffffff;

    /* Borders */
    --cmp-border:            #e2e8f0;
    --cmp-border-strong:     #cbd5e1;
    --cmp-border-focus:      #0b3d91;

    /* Status */
    --cmp-success:           #16a34a;
    --cmp-success-soft:      #dcfce7;
    --cmp-success-dark:      #166534;
    --cmp-warning:           #d97706;
    --cmp-warning-soft:      #fef3c7;
    --cmp-warning-dark:      #92400e;
    --cmp-danger:            #dc2626;
    --cmp-danger-soft:       #fee2e2;
    --cmp-danger-dark:       #991b1b;
    --cmp-info:              #2563eb;
    --cmp-info-soft:         #dbeafe;
    --cmp-info-dark:         #1e40af;

    /* Spacing */
    --cmp-space-1:  4px;
    --cmp-space-2:  8px;
    --cmp-space-3:  12px;
    --cmp-space-4:  16px;
    --cmp-space-5:  20px;
    --cmp-space-6:  24px;
    --cmp-space-7:  32px;
    --cmp-space-8:  40px;
    --cmp-space-9:  48px;
    --cmp-space-10: 64px;

    /* Radii */
    --cmp-radius-sm:  6px;
    --cmp-radius-md:  8px;
    --cmp-radius-lg:  12px;
    --cmp-radius-xl:  16px;
    --cmp-radius-pill: 9999px;

    /* Shadows */
    --cmp-shadow-xs:  0 1px 2px rgba(0,0,0,0.05);
    --cmp-shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --cmp-shadow-md:  0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.04);
    --cmp-shadow-lg:  0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);

    /* Typography */
    --cmp-font-xs:   0.75rem;
    --cmp-font-sm:   0.875rem;
    --cmp-font-base: 1rem;
    --cmp-font-lg:   1.125rem;
    --cmp-font-xl:   1.25rem;
    --cmp-font-2xl:  1.5rem;
    --cmp-font-3xl:  1.875rem;

    /* Line heights */
    --cmp-line-tight:    1.3;
    --cmp-line-normal:   1.5;
    --cmp-line-relaxed:  1.625;

    /* Transitions */
    --cmp-transition:    0.2s ease;
    --cmp-transition-slow: 0.3s ease;
}


/* =========================================================================
   2. PAGE SHELL
   ========================================================================= */

.cmp-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--cmp-background);
    color: var(--cmp-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cmp-page--full-bleed {
    background: var(--cmp-primary);
}


/* =========================================================================
   3. HEADER
   ========================================================================= */

.cmp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--cmp-space-4) var(--cmp-space-6);
    background: var(--cmp-primary);
    color: var(--cmp-text-inverse);
    position: sticky;
    top: 0;
    z-index: 100;
}

.cmp-header__brand {
    display: flex;
    align-items: center;
    gap: var(--cmp-space-3);
    text-decoration: none;
    color: inherit;
}

.cmp-header__logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.cmp-header__title {
    margin: 0;
    font-size: var(--cmp-font-lg);
    font-weight: 700;
    line-height: var(--cmp-line-tight);
}

.cmp-header__nav {
    display: flex;
    align-items: center;
    gap: var(--cmp-space-4);
}

.cmp-header__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--cmp-radius-sm);
    color: rgba(255,255,255,0.85);
    font-size: var(--cmp-font-sm);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--cmp-transition), color var(--cmp-transition);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cmp-header__link:hover,
.cmp-header__link--active {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
}

.cmp-header__link[data-cmp-logout] {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.cmp-header__link[data-cmp-logout]:hover {
    background: rgba(255,255,255,0.2);
}

@media (max-width: 767.98px) {
    .cmp-header {
        padding: var(--cmp-space-3) var(--cmp-space-4);
    }

    .cmp-header__title {
        font-size: var(--cmp-font-base);
    }

    .cmp-header__nav {
        gap: var(--cmp-space-2);
    }
}


/* =========================================================================
   4. LAYOUT / SHELL
   ========================================================================= */

.cmp-shell {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--cmp-space-6) var(--cmp-space-6) var(--cmp-space-10);
    box-sizing: border-box;
}

.cmp-shell--narrow {
    max-width: 960px;
}

.cmp-shell--wide {
    max-width: 1600px;
}

@media (max-width: 767.98px) {
    .cmp-shell {
        padding: var(--cmp-space-4) var(--cmp-space-4) var(--cmp-space-8);
    }
}


/* =========================================================================
   5. PAGE HEADER / HERO
   ========================================================================= */

.cmp-hero {
    text-align: center;
    padding: var(--cmp-space-8) 0 var(--cmp-space-6);
}

.cmp-hero__title {
    margin: 0 0 var(--cmp-space-2);
    font-size: var(--cmp-font-3xl);
    font-weight: 800;
    color: var(--cmp-text-strong);
    line-height: var(--cmp-line-tight);
}

.cmp-hero__subtitle {
    margin: 0;
    font-size: var(--cmp-font-lg);
    color: var(--cmp-text-muted);
    line-height: var(--cmp-line-relaxed);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767.98px) {
    .cmp-hero {
        padding: var(--cmp-space-6) 0 var(--cmp-space-4);
    }

    .cmp-hero__title {
        font-size: var(--cmp-font-2xl);
    }

    .cmp-hero__subtitle {
        font-size: var(--cmp-font-base);
    }
}


/* =========================================================================
   6. STAT CARDS
   ========================================================================= */

.cmp-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--cmp-space-4);
    margin-bottom: var(--cmp-space-6);
}

.cmp-stat {
    display: flex;
    flex-direction: column;
    padding: var(--cmp-space-5);
    background: var(--cmp-surface);
    border: 1px solid var(--cmp-border);
    border-radius: var(--cmp-radius-lg);
    box-shadow: var(--cmp-shadow-sm);
    transition: box-shadow var(--cmp-transition), transform var(--cmp-transition);
}

.cmp-stat:hover {
    box-shadow: var(--cmp-shadow-md);
    transform: translateY(-1px);
}

.cmp-stat__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--cmp-radius-md);
    margin-bottom: var(--cmp-space-3);
    background: var(--cmp-primary-soft);
    color: var(--cmp-primary);
}

.cmp-stat__value {
    margin: 0;
    font-size: var(--cmp-font-2xl);
    font-weight: 800;
    color: var(--cmp-text-strong);
    line-height: 1;
}

.cmp-stat__label {
    margin: var(--cmp-space-1) 0 0;
    font-size: var(--cmp-font-xs);
    color: var(--cmp-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 479.98px) {
    .cmp-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--cmp-space-3);
    }

    .cmp-stat {
        padding: var(--cmp-space-4);
    }

    .cmp-stat__value {
        font-size: var(--cmp-font-xl);
    }
}


/* =========================================================================
   7. CARDS
   ========================================================================= */

.cmp-card {
    background: var(--cmp-surface);
    border: 1px solid var(--cmp-border);
    border-radius: var(--cmp-radius-lg);
    box-shadow: var(--cmp-shadow-sm);
    overflow: hidden;
}

.cmp-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--cmp-space-4) var(--cmp-space-5);
    border-bottom: 1px solid var(--cmp-border);
    background: var(--cmp-surface-alt);
}

.cmp-card__title {
    margin: 0;
    font-size: var(--cmp-font-lg);
    font-weight: 700;
    color: var(--cmp-text-strong);
}

.cmp-card__body {
    padding: var(--cmp-space-5);
}

.cmp-card__footer {
    padding: var(--cmp-space-4) var(--cmp-space-5);
    border-top: 1px solid var(--cmp-border);
    background: var(--cmp-surface-alt);
}


/* =========================================================================
   8. TABLES
   ========================================================================= */

.cmp-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    border: 1px solid var(--cmp-border);
    border-radius: var(--cmp-radius-lg);
}

.cmp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--cmp-font-sm);
    color: var(--cmp-text);
}

.cmp-table thead {
    background: var(--cmp-surface-alt);
    border-bottom: 2px solid var(--cmp-border);
}

.cmp-table th {
    padding: var(--cmp-space-3) var(--cmp-space-4);
    font-weight: 700;
    font-size: var(--cmp-font-xs);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--cmp-text-muted);
    text-align: left;
    white-space: nowrap;
}

.cmp-table td {
    padding: var(--cmp-space-3) var(--cmp-space-4);
    border-bottom: 1px solid var(--cmp-border);
    vertical-align: middle;
}

.cmp-table tbody tr:hover {
    background: var(--cmp-surface-hover);
}

.cmp-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 767.98px) {
    .cmp-table {
        font-size: var(--cmp-font-xs);
    }

    .cmp-table th,
    .cmp-table td {
        padding: var(--cmp-space-2) var(--cmp-space-3);
    }
}


/* =========================================================================
   9. STATUS BADGES / PILLS
   ========================================================================= */

.cmp-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: var(--cmp-radius-pill);
    font-size: var(--cmp-font-xs);
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.4;
}

.cmp-badge--active,
.cmp-badge--published,
.cmp-badge--selected {
    background: var(--cmp-success-soft);
    color: var(--cmp-success-dark);
}

.cmp-badge--draft {
    background: var(--cmp-warning-soft);
    color: var(--cmp-warning-dark);
}

.cmp-badge--closed,
.cmp-badge--inactive,
.cmp-badge--rejected {
    background: var(--cmp-danger-soft);
    color: var(--cmp-danger-dark);
}

.cmp-badge--applied,
.cmp-badge--interviewed {
    background: var(--cmp-info-soft);
    color: var(--cmp-info-dark);
}

.cmp-badge--shortlisted {
    background: var(--cmp-primary-soft);
    color: var(--cmp-primary-dark);
}

.cmp-badge--primary {
    background: var(--cmp-primary-soft);
    color: var(--cmp-primary-dark);
}

.cmp-badge--scheduled,
.cmp-badge--completed {
    background: var(--cmp-warning-soft);
    color: var(--cmp-warning-dark);
}

.cmp-badge--pending {
    background: var(--cmp-info-soft);
    color: var(--cmp-info-dark);
}

.cmp-badge--withdrawn,
.cmp-badge--cancelled,
.cmp-badge--no_show {
    background: var(--cmp-danger-soft);
    color: var(--cmp-danger-dark);
}


/* =========================================================================
   10. BUTTONS
   ========================================================================= */

.cmp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1px solid transparent;
    border-radius: var(--cmp-radius-sm);
    font-size: var(--cmp-font-sm);
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--cmp-transition), border-color var(--cmp-transition), color var(--cmp-transition), transform var(--cmp-transition);
    white-space: nowrap;
    line-height: 1.4;
}

.cmp-btn:active {
    transform: translateY(1px);
}

.cmp-btn--primary {
    background: var(--cmp-primary);
    color: #ffffff;
    border-color: var(--cmp-primary);
}

.cmp-btn--primary:hover {
    background: var(--cmp-primary-dark);
    border-color: var(--cmp-primary-dark);
}

.cmp-btn--secondary {
    background: var(--cmp-surface);
    color: var(--cmp-text);
    border-color: var(--cmp-border);
}

.cmp-btn--secondary:hover {
    background: var(--cmp-surface-hover);
    border-color: var(--cmp-border-strong);
}

.cmp-btn--ghost {
    background: transparent;
    color: var(--cmp-primary);
    border-color: transparent;
}

.cmp-btn--ghost:hover {
    background: var(--cmp-primary-soft);
}

.cmp-btn--danger {
    background: var(--cmp-danger);
    color: #ffffff;
    border-color: var(--cmp-danger);
}

.cmp-btn--danger:hover {
    background: var(--cmp-danger-dark);
    border-color: var(--cmp-danger-dark);
}

.cmp-btn--sm {
    padding: 5px 12px;
    font-size: var(--cmp-font-xs);
}

.cmp-btn--lg {
    padding: 12px 24px;
    font-size: var(--cmp-font-base);
}

.cmp-btn--full {
    width: 100%;
}

.cmp-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}


/* =========================================================================
   11. FORMS
   ========================================================================= */

.cmp-form-group {
    margin-bottom: var(--cmp-space-4);
}

.cmp-form-label {
    display: block;
    margin-bottom: 6px;
    font-size: var(--cmp-font-xs);
    font-weight: 700;
    color: var(--cmp-text);
}

.cmp-form-input,
.cmp-form-select,
.cmp-form-textarea {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--cmp-border);
    border-radius: var(--cmp-radius-sm);
    background: var(--cmp-surface);
    color: var(--cmp-text);
    font-size: var(--cmp-font-sm);
    font-family: inherit;
    transition: border-color var(--cmp-transition), box-shadow var(--cmp-transition);
    box-sizing: border-box;
}

.cmp-form-input:focus,
.cmp-form-select:focus,
.cmp-form-textarea:focus {
    outline: none;
    border-color: var(--cmp-border-focus);
    box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.12);
}

.cmp-form-input::placeholder,
.cmp-form-textarea::placeholder {
    color: var(--cmp-text-soft);
}

.cmp-form-textarea {
    min-height: 100px;
    resize: vertical;
}

.cmp-form-hint {
    margin-top: 4px;
    font-size: var(--cmp-font-xs);
    color: var(--cmp-text-muted);
}

.cmp-form-error-msg {
    margin-top: 4px;
    font-size: var(--cmp-font-xs);
    color: var(--cmp-danger);
    font-weight: 600;
}

.cmp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--cmp-space-4);
}

@media (max-width: 479.98px) {
    .cmp-form-row {
        grid-template-columns: 1fr;
    }
}


/* =========================================================================
   12. EMPTY STATE
   ========================================================================= */

.cmp-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--cmp-space-10) var(--cmp-space-6);
    text-align: center;
    color: var(--cmp-text-muted);
}

.cmp-empty__icon {
    margin-bottom: var(--cmp-space-4);
    color: var(--cmp-text-soft);
}

.cmp-empty__title {
    margin: 0 0 var(--cmp-space-2);
    font-size: var(--cmp-font-lg);
    font-weight: 700;
    color: var(--cmp-text);
}

.cmp-empty__message {
    margin: 0 0 var(--cmp-space-5);
    font-size: var(--cmp-font-sm);
    color: var(--cmp-text-muted);
    max-width: 400px;
    line-height: var(--cmp-line-relaxed);
}


/* =========================================================================
   13. PAGINATION
   ========================================================================= */

.cmp-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--cmp-space-2);
    padding: var(--cmp-space-4) 0;
}

.cmp-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border: 1px solid var(--cmp-border);
    border-radius: var(--cmp-radius-sm);
    background: var(--cmp-surface);
    color: var(--cmp-text);
    font-size: var(--cmp-font-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--cmp-transition), border-color var(--cmp-transition);
    text-decoration: none;
}

.cmp-pagination__btn:hover {
    background: var(--cmp-surface-hover);
    border-color: var(--cmp-border-strong);
}

.cmp-pagination__btn--active {
    background: var(--cmp-primary);
    color: #ffffff;
    border-color: var(--cmp-primary);
}

.cmp-pagination__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* =========================================================================
   14. MODAL / DIALOG
   ========================================================================= */

.cmp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--cmp-space-4);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--cmp-transition);
}

.cmp-modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.cmp-modal {
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--cmp-surface);
    border-radius: var(--cmp-radius-lg);
    box-shadow: var(--cmp-shadow-lg);
}

.cmp-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--cmp-space-4) var(--cmp-space-5);
    border-bottom: 1px solid var(--cmp-border);
}

.cmp-modal__title {
    margin: 0;
    font-size: var(--cmp-font-lg);
    font-weight: 700;
    color: var(--cmp-text-strong);
}

.cmp-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: var(--cmp-radius-sm);
    background: transparent;
    color: var(--cmp-text-muted);
    cursor: pointer;
    transition: background var(--cmp-transition);
}

.cmp-modal__close:hover {
    background: var(--cmp-surface-hover);
}

.cmp-modal__body {
    padding: var(--cmp-space-5);
}

.cmp-modal__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--cmp-space-3);
    padding: var(--cmp-space-4) var(--cmp-space-5);
    border-top: 1px solid var(--cmp-border);
}


/* =========================================================================
   15. TOAST / NOTIFICATION
   ========================================================================= */

.cmp-toast-container {
    position: fixed;
    top: var(--cmp-space-4);
    right: var(--cmp-space-4);
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: var(--cmp-space-2);
    pointer-events: none;
}

.cmp-toast {
    display: flex;
    align-items: flex-start;
    gap: var(--cmp-space-3);
    padding: var(--cmp-space-3) var(--cmp-space-4);
    border-radius: var(--cmp-radius-md);
    background: var(--cmp-surface);
    border: 1px solid var(--cmp-border);
    box-shadow: var(--cmp-shadow-lg);
    max-width: 400px;
    pointer-events: auto;
    animation: cmp-toast-in 0.3s ease;
}

.cmp-toast--success {
    border-left: 4px solid var(--cmp-success);
}

.cmp-toast--error {
    border-left: 4px solid var(--cmp-danger);
}

.cmp-toast--info {
    border-left: 4px solid var(--cmp-info);
}

.cmp-toast__message {
    flex: 1;
    font-size: var(--cmp-font-sm);
    color: var(--cmp-text);
    line-height: var(--cmp-line-normal);
}

@keyframes cmp-toast-in {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}


/* =========================================================================
   16. RESPONSIVE GRID
   ========================================================================= */

.cmp-grid {
    display: grid;
    gap: var(--cmp-space-4);
}

.cmp-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.cmp-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.cmp-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

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

    .cmp-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 479.98px) {
    .cmp-grid--2,
    .cmp-grid--3,
    .cmp-grid--4 {
        grid-template-columns: 1fr;
    }
}


/* =========================================================================
   17. UTILITY CLASSES
   ========================================================================= */

.cmp-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.cmp-text-center { text-align: center; }
.cmp-text-right  { text-align: right; }
.cmp-text-muted  { color: var(--cmp-text-muted); }
.cmp-text-success { color: var(--cmp-success); }
.cmp-text-danger  { color: var(--cmp-danger); }
.cmp-text-warning { color: var(--cmp-warning); }

.cmp-mt-2 { margin-top: var(--cmp-space-2); }
.cmp-mt-4 { margin-top: var(--cmp-space-4); }
.cmp-mt-6 { margin-top: var(--cmp-space-6); }
.cmp-mb-2 { margin-bottom: var(--cmp-space-2); }
.cmp-mb-4 { margin-bottom: var(--cmp-space-4); }
.cmp-mb-6 { margin-bottom: var(--cmp-space-6); }

.cmp-flex { display: flex; }
.cmp-flex--center { align-items: center; justify-content: center; }
.cmp-flex--between { align-items: center; justify-content: space-between; }
.cmp-flex--wrap { flex-wrap: wrap; }
.cmp-gap-2 { gap: var(--cmp-space-2); }
.cmp-gap-3 { gap: var(--cmp-space-3); }
.cmp-gap-4 { gap: var(--cmp-space-4); }
