/* ==========================================================================
   PT Suite - Componenti del Design System
   ========================================================================== */

/* Card -------------------------------------------------------------------- */

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

.card--interactive {
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.card--interactive:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
}

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

.card__title {
    margin: 0;
    font-family: var(--font-title);
    font-size: var(--fs-md);
    font-weight: 600;
}

.brand-mark {
    display: block;
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    object-position: left center;
}

.brand-mark--nav {
    height: 42px;
    max-width: 210px;
}

.brand-mark--sidebar {
    height: 38px;
    max-width: 196px;
}

.brand-mark--auth {
    height: 56px;
    max-width: 260px;
    object-position: center;
}

.brand-mark--booking {
    height: 44px;
    max-width: 210px;
}

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

.card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-5);
    background: var(--bg-inset);
    border-top: 1px solid var(--border-color);
}

/* Stat card --------------------------------------------------------------- */

.stat {
    position: relative;
    padding: var(--space-4);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stat::after {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--accent-primary);
    opacity: 0.9;
}

.stat--domicilio::after { background: var(--accent-domicilio); }
.stat--palestra::after { background: var(--accent-palestra); }
.stat--warning::after { background: var(--accent-warning); }
.stat--danger::after { background: var(--accent-danger); }

.stat__label {
    display: block;
    color: var(--text-muted);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat__value {
    display: block;
    margin-top: var(--space-2);
    font-family: var(--font-title);
    font-size: var(--fs-2xl);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat__meta {
    display: block;
    margin-top: var(--space-2);
    color: var(--text-muted);
    font-size: var(--fs-sm);
}

/* Bottoni ----------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.625rem 1.125rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.btn:hover {
    background: var(--bg-surface-hover);
    border-color: var(--border-strong);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.btn:active { transform: translateY(0); }

.btn:disabled,
.btn.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-dark));
    border-color: transparent;
    color: #052e21;
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--accent-volt), var(--accent-primary));
    color: #052e21;
    box-shadow: 0 6px 18px rgb(16 185 129 / 30%);
}

.btn--domicilio {
    background: var(--tint-domicilio);
    border-color: rgb(249 115 22 / 45%);
    color: var(--accent-domicilio);
}

.btn--palestra {
    background: var(--tint-palestra);
    border-color: rgb(6 182 212 / 45%);
    color: var(--accent-palestra);
}

.btn--danger {
    background: var(--tint-danger);
    border-color: rgb(239 68 68 / 45%);
    color: var(--accent-danger);
}

.btn--ghost {
    background: transparent;
    border-color: transparent;
    color: var(--text-muted);
}

.btn--ghost:hover {
    background: var(--bg-surface-hover);
    color: var(--text-primary);
}

.btn--sm {
    padding: 0.375rem 0.75rem;
    font-size: var(--fs-sm);
}

.btn--icon {
    padding: 0.5rem;
    width: 36px;
    height: 36px;
}

.btn--block { width: 100%; }

.btn--fab {
    position: fixed;
    right: var(--space-4);
    bottom: var(--space-4);
    z-index: var(--z-header);
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    display: none;
}

/* Badge ------------------------------------------------------------------- */

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: 0.2rem 0.625rem;
    background: var(--bg-elevated);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.badge--primary { background: var(--tint-primary); color: var(--accent-primary); }
.badge--volt { background: var(--tint-volt); color: var(--accent-volt); }
.badge--domicilio { background: var(--tint-domicilio); color: var(--accent-domicilio); }
.badge--palestra { background: var(--tint-palestra); color: var(--accent-palestra); }
.badge--danger { background: var(--tint-danger); color: var(--accent-danger); }
.badge--warning { background: var(--tint-warning); color: var(--accent-warning); }
.badge--muted { background: var(--bg-inset); color: var(--text-muted); }

.badge__dot {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: currentcolor;
}

/* Avatar ------------------------------------------------------------------ */

.avatar {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    overflow: hidden;
    padding: 0;
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface-hover));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-family: var(--font-title);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
}

.avatar--lg { width: 56px; height: 56px; font-size: var(--fs-md); }
.avatar--xl { width: 72px; height: 72px; font-size: var(--fs-lg); }
.avatar--sm { width: 30px; height: 30px; font-size: var(--fs-xs); }

.avatar__foto {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form -------------------------------------------------------------------- */

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-4);
}

.field {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    min-width: 0;
}

.field--full { grid-column: 1 / -1; }

.field__label {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    font-weight: 600;
}

.field__hint {
    color: var(--text-muted);
    font-size: var(--fs-xs);
}

.field__required { color: var(--accent-domicilio); }

.input,
.select,
.textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    background: var(--bg-inset);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.input::placeholder,
.textarea::placeholder { color: var(--text-muted); }

.input:focus,
.select:focus,
.textarea:focus {
    outline: none;
    background: var(--bg-primary-soft);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.input:disabled,
.select:disabled,
.textarea:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.field__secret {
    position: relative;
}

.field__secret .input {
    padding-right: 2.75rem;
}

.field__secret-toggle {
    position: absolute;
    top: 50%;
    right: 0.35rem;
    display: grid;
    place-items: center;
    width: 2.1rem;
    height: 2.1rem;
    padding: 0;
    border: 0;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transform: translateY(-50%);
}

.field__secret-toggle:hover,
.field__secret-toggle:focus-visible {
    color: var(--text-primary);
    background: var(--bg-surface-hover);
}

.textarea {
    min-height: 96px;
    resize: vertical;
}

.share-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    min-width: 0;
    padding: 0.4rem 0.4rem 0.4rem 0.75rem;
    background: var(--bg-inset);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.share-link__url {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-secondary);
}

.card__links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2) var(--space-4);
}

.select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.25rem;
}

.checkbox,
.radio {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
    font-size: var(--fs-base);
}

.checkbox input,
.radio input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-primary);
    cursor: pointer;
}

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

/* Segmented control (es. palestra / domicilio) ---------------------------- */

.segmented {
    display: inline-flex;
    padding: 4px;
    background: var(--bg-inset);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    gap: 4px;
}

.segmented__option {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.4rem 0.875rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: var(--fs-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.segmented__option input { display: none; }

.segmented__option:hover { color: var(--text-primary); }

.segmented__option.is-selected {
    background: var(--bg-elevated);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.segmented__option.is-selected[data-tipo="palestra"] { color: var(--accent-palestra); }
.segmented__option.is-selected[data-tipo="domicilio"] { color: var(--accent-domicilio); }

/* Tabelle ----------------------------------------------------------------- */

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-base);
}

.table th {
    position: sticky;
    top: 0;
    padding: var(--space-3) var(--space-4);
    background: var(--bg-inset);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

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

.table tbody tr {
    transition: background var(--transition-fast);
}

.table tbody tr:hover { background: var(--bg-surface-hover); }
.table tbody tr:last-child td { border-bottom: 0; }

.table__actions {
    display: flex;
    gap: var(--space-2);
    justify-content: flex-end;
}

/* Lista compatta (agenda, riepiloghi) ------------------------------------- */

.list { display: flex; flex-direction: column; }

.list__item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-fast);
}

.list__item:last-child { border-bottom: 0; }
.list__item:hover { background: var(--bg-surface-hover); }

.list__main { min-width: 0; flex: 1; }

.list__title {
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: inherit;
    text-decoration: none;
}

.list__meta {
    color: var(--text-muted);
    font-size: var(--fs-sm);
}

.list__note {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0.2rem;
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    font-style: italic;
    line-height: 1.35;
}

.list__note::before {
    content: '« ';
}

.list__note::after {
    content: ' »';
}

.nota-cliente {
    padding: var(--space-3) var(--space-4);
    background: var(--tint-warning);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-warning);
    border-radius: var(--radius-md);
}

.nota-cliente__label {
    margin: 0 0 0.25rem;
    color: var(--accent-warning);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nota-cliente__testo {
    margin: 0;
    color: var(--text-primary);
    font-size: var(--fs-base);
    line-height: 1.45;
    white-space: pre-wrap;
}

.list__time {
    min-width: 58px;
    font-family: var(--font-title);
    font-size: var(--fs-md);
    font-weight: 600;
}

.list__marker {
    width: 4px;
    align-self: stretch;
    min-height: 34px;
    border-radius: var(--radius-full);
    background: var(--accent-primary);
}

.list__marker--palestra { background: var(--accent-palestra); }
.list__marker--domicilio { background: var(--accent-domicilio); }

/* Progress ---------------------------------------------------------------- */

.progress {
    height: 8px;
    background: var(--bg-inset);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress__bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-volt));
    border-radius: var(--radius-full);
    transition: width var(--transition-slow);
}

.progress__bar--warning { background: linear-gradient(90deg, var(--accent-warning), var(--accent-domicilio)); }
.progress__bar--danger { background: linear-gradient(90deg, var(--accent-danger), var(--accent-domicilio)); }

/* Alert / flash ----------------------------------------------------------- */

.alert {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-info);
    border-radius: var(--radius-md);
    font-size: var(--fs-base);
}

.alert--success { border-left-color: var(--accent-primary); background: var(--tint-primary); }
.alert--error { border-left-color: var(--accent-danger); background: var(--tint-danger); }
.alert--warning { border-left-color: var(--accent-warning); background: var(--tint-warning); }

/* Toast ------------------------------------------------------------------- */

.toast-stack {
    position: fixed;
    right: var(--space-4);
    bottom: var(--space-4);
    z-index: var(--z-toast);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    max-width: min(92vw, 380px);
}

.toast {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: var(--fs-sm);
    animation: toast-in var(--transition-base);
}

.toast--error { border-left-color: var(--accent-danger); }
.toast--warning { border-left-color: var(--accent-warning); }
.toast.is-leaving { animation: toast-out var(--transition-base) forwards; }

@keyframes toast-in {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toast-out {
    to { opacity: 0; transform: translateX(24px); }
}

/* Modal ------------------------------------------------------------------- */

.modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: grid;
    place-items: center;
    padding: var(--space-4);
    background: var(--overlay-bg);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.modal.is-open { opacity: 1; visibility: visible; }

.modal__dialog {
    width: min(100%, 560px);
    max-height: 88vh;
    overflow-y: auto;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(12px) scale(0.98);
    transition: transform var(--transition-base);
}

.modal.is-open .modal__dialog { transform: translateY(0) scale(1); }

/* Empty state ------------------------------------------------------------- */

.empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-7) var(--space-4);
    text-align: center;
    color: var(--text-muted);
}

.empty__icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    background: var(--bg-inset);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-muted);
}

/* Selettore giorni e fasce orarie ----------------------------------------- */

.day-picker {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.day-picker__day input { position: absolute; opacity: 0; pointer-events: none; }

.day-picker__day span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 0.4rem 0.6rem;
    background: var(--bg-inset);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: var(--fs-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.day-picker__day span:hover { color: var(--text-primary); border-color: var(--accent-primary); }

.day-picker__day input:checked + span {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--text-inverse);
}

.day-picker__day input:focus-visible + span { outline: 2px solid var(--accent-primary); outline-offset: 2px; }

.time-row {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

.time-row .input { width: auto; flex: 0 1 9rem; }

.time-row__separator { color: var(--text-muted); }

/* Toolbar / filtri -------------------------------------------------------- */

.toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.toolbar__search {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.toolbar__search .input { padding-left: 2.4rem; }

.toolbar__search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* Tabs -------------------------------------------------------------------- */

.tabs {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
}

.tab {
    padding: var(--space-3) var(--space-4);
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-size: var(--fs-base);
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.tab:hover { color: var(--text-primary); }

.tab.is-active {
    border-bottom-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Definition list (schede dettaglio) -------------------------------------- */

.data-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin: 0;
}

.data-list__label {
    color: var(--text-muted);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.data-list__value {
    margin: var(--space-1) 0 0;
    font-size: var(--fs-base);
}

/* Paginazione ------------------------------------------------------------- */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-5);
}

.pagination__link {
    display: grid;
    place-items: center;
    min-width: 36px;
    height: 36px;
    padding: 0 var(--space-2);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    font-weight: 600;
}

.pagination__link:hover { background: var(--bg-surface-hover); color: var(--text-primary); }
.pagination__link.is-active { background: var(--tint-primary); border-color: var(--accent-primary); color: var(--accent-primary); }

/* Spinner ----------------------------------------------------------------- */

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgb(148 163 184 / 35%);
    border-top-color: var(--accent-primary);
    border-radius: var(--radius-full);
    animation: spin 700ms linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Selettore tema ---------------------------------------------------------- */

.theme-picker {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: var(--space-2);
}

.theme-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: var(--space-3) var(--space-2);
    background: var(--bg-inset);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: var(--fs-xs);
    font-weight: 600;
    cursor: pointer;
}

.theme-swatch:hover { border-color: var(--accent-primary); color: var(--text-primary); }

.theme-swatch.is-selected {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.theme-swatch__dot {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    border: 2px solid rgb(255 255 255 / 25%);
    box-shadow: inset 0 0 0 1px rgb(0 0 0 / 20%);
}

.theme-picker--compact {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}

.theme-picker--compact .theme-swatch {
    padding: 8px 4px;
}

.theme-picker--compact .theme-swatch__dot { width: 22px; height: 22px; }

.theme-picker--compact .theme-swatch span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

@media (max-width: 900px) {
    .btn--fab { display: grid; place-items: center; }
    .form-actions { flex-direction: column-reverse; }
    .form-actions .btn { width: 100%; }
    .toast-stack { left: var(--space-3); right: var(--space-3); max-width: none; }
    .card { border-radius: 14px; }
    .card__header,
    .card__body { padding: var(--space-4); }
    .card--interactive:hover { transform: none; }
}
