/* ============================================
   ISFB Social — Identite visuelle
   Centre de competences de la finance
   en Suisse romande depuis 1987

   Valeurs: Competence, Organisation,
   Flexibilite, Proximite
   ============================================ */

:root {
    /* Palette DAS4 — Rayonnement du reseau */
    --plum: #5A1F45;
    --plum-light: #7A3362;
    --plum-dark: #3F1530;
    --mauve: #EAE2E7;
    --mauve-dark: #D8CDD4;
    --navy: #1C355E;
    --navy-light: #2A4575;
    --navy-dark: #122244;
    --teal: #44ACBC;
    --teal-light: #5CC0CE;
    --teal-dark: #389AA8;
    --brown: #A28B69;
    --brown-light: #B9A484;
    --brown-dark: #8B7455;

    /* Neutres */
    --cream: #F8F7F6;
    --cream-dark: #F0EEEC;
    --white: #FFFFFF;
    --slate: #333C4E;
    --slate-light: #666D75;
    --slate-lighter: #7E8890;
    --border: #E2E0DB;
    --border-light: #EEEDEA;

    /* Semantiques */
    --success: #2D7A4F;
    --success-bg: #E8F5EE;
    --danger: #C53030;
    --danger-bg: #FEE8E8;
    --warning: #B7791F;
    --warning-bg: #FEFCE8;
    --info: #2B6CB0;
    --info-bg: #E8F1FB;

    /* Systeme */
    --radius: 6px;
    --radius-lg: 10px;
    --shadow-sm: 0 1px 2px rgba(28, 53, 94, 0.05);
    --shadow: 0 2px 8px rgba(28, 53, 94, 0.08);
    --shadow-lg: 0 8px 24px rgba(28, 53, 94, 0.10);
    --transition: 0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--slate);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy);
}

h1 { font-size: 1.75rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.15rem; }

a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
img { max-width: 100%; height: auto; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
.main-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo:hover { color: var(--navy); }

.logo-mark {
    width: 38px;
    height: 38px;
    background: var(--plum);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-mark img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.logo-icon { color: var(--mauve); font-size: 16px; }

.logo-text { display: flex; flex-direction: column; }

.logo-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.55rem;
    color: var(--slate-lighter);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
    white-space: nowrap;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 2px; }

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--slate-light);
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
}

.nav-item:hover { color: var(--navy); background: var(--cream); }
.nav-item.active { color: var(--navy); }

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--plum);
    border-radius: 1px;
}

.nav-item svg { opacity: 0.6; }
.nav-item:hover svg, .nav-item.active svg { opacity: 1; }

.badge {
    background: var(--danger);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 10px;
    position: absolute;
    top: 2px;
    right: 4px;
}

.header-actions { display: flex; align-items: center; gap: 12px; }

/* User menu */
.user-menu { position: relative; }

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
    font-size: 0.82rem;
    color: var(--navy);
}

.user-menu-trigger:hover { border-color: var(--plum); }
.user-menu-name { font-weight: 500; }

.user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 190px;
    z-index: 200;
    overflow: hidden;
}

.user-dropdown.show { display: block; }

.user-dropdown a {
    display: block;
    padding: 9px 16px;
    font-size: 0.82rem;
    color: var(--slate);
    transition: background var(--transition);
}

.user-dropdown a:hover { background: var(--cream); color: var(--navy); }
.user-dropdown hr { border: none; border-top: 1px solid var(--border-light); margin: 0; }
.user-dropdown .logout-link { color: var(--danger); }
.user-dropdown .logout-link:hover { background: var(--danger-bg); }

/* ── Main ── */
.main-content {
    min-height: calc(100vh - 64px - 100px);
    padding: 28px 0;
}

/* ── Footer ── */
.main-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.5);
    padding: 32px 0;
    text-align: center;
}

.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--mauve);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1rem;
}

.footer-text { font-size: 0.75rem; max-width: 480px; }
.footer-legal { font-size: 0.68rem; opacity: 0.5; }
.footer-legal a { color: var(--mauve); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 20px;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-sm { padding: 5px 14px; font-size: 0.78rem; }
.btn-lg { padding: 12px 28px; font-size: 0.9rem; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--navy-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-gold {
    background: var(--plum);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--plum-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--slate);
    border: 1px solid var(--border);
}

.btn-outline:hover { border-color: var(--plum); color: var(--plum); background: var(--mauve); }

.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { background: #9B2C2C; color: white; }
.btn-success { background: var(--success); color: white; }
.btn-success:hover { background: #236B3E; color: white; }
.btn-warning { background: var(--warning); color: white; }

/* ── Cards ── */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.card:hover { box-shadow: var(--shadow); }
.card-body { padding: 20px; }

.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--border-light);
    background: var(--cream);
}

.card-premium { border-top: 3px solid var(--plum); }

/* ── Forms ── */
.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
}

.form-group label .required { color: var(--danger); }

.form-control {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--slate);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(90, 31, 69, 0.1);
}

.form-control::placeholder { color: var(--slate-lighter); }
textarea.form-control { resize: vertical; min-height: 90px; }

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666D75' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-hint { font-size: 0.72rem; color: var(--slate-light); margin-top: 3px; }

/* File upload */
.file-upload {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--cream);
}

.file-upload:hover { border-color: var(--plum); background: rgba(90, 31, 69, 0.02); }
.file-upload-icon { font-size: 1.8rem; margin-bottom: 6px; opacity: 0.4; }
.file-upload-text { font-size: 0.82rem; color: var(--slate-light); }
.file-upload-text strong { color: var(--navy); }
.file-upload input[type="file"] { display: none; }

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.82rem;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--plum);
}

/* ── Alerts ── */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.alert-success { background: var(--success-bg); color: var(--success); border-left: 3px solid var(--success); }
.alert-danger { background: var(--danger-bg); color: var(--danger); border-left: 3px solid var(--danger); }
.alert-warning { background: var(--warning-bg); color: var(--warning); border-left: 3px solid var(--warning); }
.alert-info { background: var(--info-bg); color: var(--info); border-left: 3px solid var(--info); }

/* ── Avatars ── */
.avatar-small { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.avatar-medium { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.avatar-large { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--white); box-shadow: var(--shadow); }
.avatar-xl { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 3px solid var(--white); box-shadow: var(--shadow-lg); }

/* ── Layouts ── */
.layout-feed {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 260px;
    gap: 20px;
    align-items: start;
}

.layout-two-col {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.layout-center { max-width: 540px; margin: 0 auto; }

/* ── Auth ── */
.auth-page {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--plum);
    overflow: hidden;
}

.auth-card .card-body { padding: 36px; }

.auth-header { text-align: center; margin-bottom: 28px; }

.auth-header .logo-mark {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
}

.auth-header .logo-mark .logo-icon { font-size: 20px; }
.auth-header h1 { font-size: 1.4rem; margin-bottom: 4px; }
.auth-header p { color: var(--slate-light); font-size: 0.82rem; }

.auth-footer {
    text-align: center;
    padding: 16px 36px;
    background: var(--cream);
    border-top: 1px solid var(--border-light);
    font-size: 0.82rem;
    color: var(--slate-light);
}

.auth-footer a { color: var(--plum); font-weight: 600; }

/* ── Profile ── */
.profile-banner {
    height: 180px;
    background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 50%, var(--plum-light) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
    overflow: hidden;
}

.profile-banner-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.1) 40px, rgba(255,255,255,0.1) 80px);
}

.profile-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 0 28px 28px;
    position: relative;
}

.profile-avatar-wrap {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-top: -44px;
    position: relative;
    z-index: 2;
}

.profile-meta { padding-top: 10px; flex: 1; }
.profile-name { font-size: 1.4rem; margin-bottom: 2px; }
.profile-title { font-size: 0.9rem; color: var(--slate); }
.profile-company { font-size: 0.82rem; color: var(--slate-light); }

.profile-stats {
    display: flex;
    gap: 20px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

.profile-stat { text-align: center; }

.profile-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
}

.profile-stat-label {
    font-size: 0.68rem;
    color: var(--slate-lighter);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-actions { display: flex; gap: 8px; margin-top: 14px; }

/* Badges */
.badge-seeking {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    background: var(--success-bg);
    color: var(--success);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 6px;
}

.badge-seeking::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.diploma-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--mauve);
    border: 1px solid var(--mauve-dark);
    border-radius: var(--radius);
    font-size: 0.78rem;
    color: var(--plum);
    font-weight: 500;
    margin-top: 10px;
}

/* ── Posts ── */
.post-card { margin-bottom: 16px; }

.post-featured {
    border-left: 3px solid var(--plum);
    background: linear-gradient(135deg, rgba(90, 31, 69, 0.02), transparent);
}

.post-featured::before {
    content: '';
}

.featured-active {
    color: var(--plum) !important;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.post-author-info { flex: 1; }
.post-author-name { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.post-author-title { font-size: 0.72rem; color: var(--slate-lighter); }
.post-time { font-size: 0.68rem; color: var(--slate-lighter); }

.post-content {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 14px;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.card-body {
    min-width: 0;
    overflow: hidden;
}

.post-image {
    border-radius: var(--radius);
    margin-bottom: 14px;
    max-height: 440px;
    width: 100%;
    object-fit: cover;
}

.post-actions {
    display: flex;
    gap: 2px;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
}

.post-action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border: none;
    border-radius: var(--radius);
    background: transparent;
    color: var(--slate-light);
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    flex: 1;
    justify-content: center;
}

.post-action-btn:hover { background: var(--cream); color: var(--navy); }
.post-action-btn.liked { color: var(--plum); }
.post-action-btn.liked svg { fill: var(--plum-light); stroke: var(--plum); }

/* Composer */
.post-composer { margin-bottom: 20px; }

.post-composer-inner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.post-composer textarea {
    flex: 1;
    border: none;
    resize: none;
    font-family: inherit;
    font-size: 0.88rem;
    min-height: 50px;
    padding: 0;
    color: var(--slate);
}

.post-composer textarea:focus { outline: none; }
.post-composer textarea::placeholder { color: var(--slate-lighter); }

.post-composer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
    margin-top: 10px;
}

.post-composer-options { display: flex; gap: 6px; }

.post-option-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--slate-light);
    font-size: 0.78rem;
    cursor: pointer;
    transition: all var(--transition);
}

.post-option-btn:hover { border-color: var(--plum); color: var(--plum); }

.post-visibility-selector select {
    border-color: var(--border);
    border-radius: 16px;
    background: var(--cream);
}

.post-audience-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--plum);
    background: var(--mauve);
    padding: 1px 7px;
    border-radius: 10px;
    margin-left: 4px;
    vertical-align: middle;
}

/* Comments */
.comments-section { padding-top: 10px; }

.comment {
    display: flex;
    gap: 8px;
    padding: 8px 0;
}

.comment-body {
    flex: 1;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 8px 12px;
}

.comment-author { font-weight: 600; font-size: 0.78rem; color: var(--navy); }
.comment-text { font-size: 0.82rem; line-height: 1.5; margin-top: 1px; }
.comment-time { font-size: 0.65rem; color: var(--slate-lighter); margin-top: 2px; }

.comment-actions {
    display: flex;
    gap: 8px;
    margin-top: 3px;
}

.comment-action-link {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--slate-lighter);
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    padding: 0;
}

.comment-action-link:hover { color: var(--plum); }

/* Nested replies */
.comment-replies {
    margin-left: 38px;
    border-left: 2px solid var(--border-light);
    padding-left: 10px;
}

.comment-form {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-top: 6px;
}

.comment-form input {
    flex: 1;
    padding: 7px 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    font-family: inherit;
    font-size: 0.78rem;
    background: var(--cream);
}

.comment-form input:focus {
    outline: none;
    border-color: var(--plum);
    background: var(--white);
}

/* ── Sidebar ── */
.sidebar-card { margin-bottom: 14px; }
.sidebar-card .card-body { padding: 16px; }
.sidebar-card h3 { font-size: 0.92rem; margin-bottom: 10px; }

.mini-profile { text-align: center; }

.mini-profile-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 10px;
    color: var(--navy);
}

.mini-profile-title { font-size: 0.78rem; color: var(--slate-light); margin-top: 2px; }

.mini-profile-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

/* ── Network ── */
.user-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.user-card {
    text-align: center;
    padding: 20px 16px;
    transition: all var(--transition);
}

.user-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.user-card-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 10px;
    color: var(--navy);
}

.user-card-title { font-size: 0.78rem; color: var(--slate-light); margin-top: 2px; }

.user-card-diploma {
    font-size: 0.68rem;
    color: var(--plum);
    margin-top: 6px;
    padding: 3px 8px;
    background: var(--mauve);
    border-radius: 16px;
    display: inline-block;
}

.user-card-actions { margin-top: 14px; display: flex; gap: 6px; justify-content: center; }

/* ── Connections ── */
.connection-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.connection-item:last-child { border-bottom: none; }
.connection-info { flex: 1; }
.connection-name { font-weight: 600; font-size: 0.88rem; }
.connection-title { font-size: 0.78rem; color: var(--slate-light); }
.connection-actions { display: flex; gap: 6px; }

/* ── Timeline ── */
.timeline { position: relative; padding-left: 22px; }

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--border);
}

.timeline-item { position: relative; padding-bottom: 20px; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--plum);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--plum);
}

.timeline-item.current::before { background: var(--success); box-shadow: 0 0 0 2px var(--success); }
.timeline-title { font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.timeline-company { font-size: 0.82rem; color: var(--plum); }
.timeline-dates { font-size: 0.72rem; color: var(--slate-light); margin-top: 2px; }
.timeline-desc { font-size: 0.82rem; color: var(--slate); margin-top: 4px; line-height: 1.5; }

/* ── Admin ── */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.stat-card { text-align: center; padding: 20px; }

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--slate-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.stat-card.highlight {
    border-color: var(--plum);
    background: linear-gradient(135deg, rgba(90, 31, 69, 0.04), transparent);
}

/* Table */
.review-table { width: 100%; border-collapse: collapse; }

.review-table th {
    text-align: left;
    padding: 10px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--slate-lighter);
    border-bottom: 2px solid var(--border);
}

.review-table td {
    padding: 12px 14px;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.review-table tr:hover td { background: var(--cream); }

/* Status */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    border-radius: 16px;
    font-size: 0.68rem;
    font-weight: 600;
}

.status-pending { background: var(--warning-bg); color: var(--warning); }
.status-approved { background: var(--success-bg); color: var(--success); }
.status-rejected { background: var(--danger-bg); color: var(--danger); }
.status-needs_info { background: var(--info-bg); color: var(--info); }

/* Search */
.search-bar { display: flex; gap: 10px; margin-bottom: 20px; }

.search-bar input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.88rem;
    background: var(--white);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(90, 31, 69, 0.1);
}

/* Pending */
.pending-page { text-align: center; padding: 50px 20px; max-width: 480px; margin: 0 auto; }
.pending-icon { font-size: 2.5rem; margin-bottom: 14px; }
.pending-page h2 { margin-bottom: 10px; }
.pending-page p { color: var(--slate); font-size: 0.88rem; line-height: 1.6; }

/* Tabs */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 20px; }

.tab {
    padding: 9px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--slate-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: inherit;
    text-decoration: none;
}

.tab:hover { color: var(--navy); }
.tab.active { color: var(--navy); border-bottom-color: var(--plum); font-weight: 600; }

/* Empty */
.empty-state { text-align: center; padding: 40px 20px; color: var(--slate-light); }
.empty-state-icon { font-size: 2rem; margin-bottom: 10px; opacity: 0.3; }
.empty-state p { font-size: 0.88rem; max-width: 340px; margin: 0 auto; }

/* ── Swiss accents ── */
.swiss-line {
    width: 36px;
    height: 3px;
    background: var(--plum);
    margin: 12px 0;
    border-radius: 2px;
}

.swiss-line-center { margin-left: auto; margin-right: auto; }

.gold-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--plum-light), transparent);
    margin: 28px 0;
}

/* ── ISFB Feeds ── */
.isfb-news-item {
    display: block;
    padding: 9px 0;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
}

.isfb-news-item:last-child { border-bottom: none; }
.isfb-news-item:hover .isfb-news-title { color: var(--teal-dark); }

.isfb-news-date {
    font-size: 0.62rem;
    color: var(--teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.isfb-news-title {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--navy);
    margin-top: 1px;
    transition: color var(--transition);
}

.isfb-formation-item {
    display: block;
    padding: 9px 0;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
}

.isfb-formation-item:last-child { border-bottom: none; }
.isfb-formation-item:hover .isfb-formation-title { color: var(--teal-dark); }

.isfb-formation-cat {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    background: var(--teal);
    padding: 1px 6px;
    border-radius: 3px;
    margin-bottom: 3px;
}

.isfb-formation-title {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--navy);
    transition: color var(--transition);
}

.isfb-formation-date { font-size: 0.62rem; color: var(--slate-lighter); margin-top: 1px; }

/* ── Interviews / Parcours ── */
.interview-qa { line-height: 1.7; }

.interview-q {
    font-size: 0.88rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.interview-a {
    font-size: 0.88rem;
    color: var(--slate);
    padding-left: 14px;
    border-left: 2px solid var(--plum);
    margin-bottom: 4px;
}

/* Parcours grid */
.parcours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.parcours-card { transition: all var(--transition); }
.parcours-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.parcours-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--navy);
    margin-top: 10px;
}

.parcours-position { font-size: 0.75rem; color: var(--slate); margin-top: 2px; }
.parcours-company { font-size: 0.68rem; color: var(--slate-lighter); }

.parcours-read-link {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--plum);
    transition: all var(--transition);
}

.parcours-read-link:hover {
    background: var(--mauve);
    color: var(--plum-dark);
}

/* ══ CAREER TIMELINE — 4 styles ══ */

/* ── Shared scrollbar ── */
.ctl-scroll, .zz-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--plum-light) transparent;
}
.ctl-scroll::-webkit-scrollbar, .zz-scroll::-webkit-scrollbar { height: 5px; }
.ctl-scroll::-webkit-scrollbar-thumb, .zz-scroll::-webkit-scrollbar-thumb { background: var(--plum-light); border-radius: 3px; }

/* ── Style 1: HORIZONTAL — inspired by career timeline infographic ── */
.ctl-container {
    display: flex;
    flex-direction: column;
    min-width: max-content;
    padding: 24px 32px 28px;
}

.ctl-row { display: flex; }
.ctl-cell { flex: 0 0 200px; text-align: center; position: relative; padding: 0 8px; }

/* Icons */
.ctl-icons .ctl-cell { padding-bottom: 14px; }
.ctl-icon {
    font-size: 2.2rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s;
}
.ctl-cell:hover .ctl-icon { transform: scale(1.15) translateY(-2px); }

/* Line with dots */
.ctl-line-row { position: relative; padding: 10px 0; }
.ctl-line {
    position: absolute;
    left: 0; right: 0; top: 50%; height: 4px;
    background: linear-gradient(90deg, var(--mauve-dark), var(--plum), var(--plum-light), var(--plum));
    border-radius: 2px;
    z-index: 0;
}
.ctl-dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    margin: 0 auto;
    position: relative; z-index: 1;
    border: 3px solid var(--white);
    transition: transform 0.2s;
}
.ctl-cell:hover .ctl-dot { transform: scale(1.3); }

/* Years */
.ctl-years .ctl-cell { padding-top: 12px; }
.ctl-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Titles */
.ctl-titles .ctl-cell { padding-top: 6px; }
.ctl-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}
.ctl-company { font-size: 0.72rem; color: var(--slate-lighter); margin-top: 2px; }

/* Descriptions */
.ctl-descs .ctl-cell { padding-top: 10px; text-align: left; }
.ctl-desc {
    font-size: 0.75rem;
    color: var(--slate);
    line-height: 1.55;
}
.ctl-narrative {
    font-style: italic;
    color: var(--plum-dark);
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px dashed var(--mauve-dark);
}

/* ── Style 2: ROAD + Style 3: ZIGZAG — now rendered as inline SVG ── */
/* Minimal CSS needed since SVG handles all drawing */

/* ── Style 3: ZIGZAG — bubbles alternating above/below ── */
.zz-container {
    display: flex;
    align-items: center;
    min-width: max-content;
    padding: 0 40px;
    position: relative;
    height: 480px;
}

.zz-line {
    position: absolute;
    left: 40px; right: 40px;
    top: 50%; height: 4px;
    background: linear-gradient(90deg, var(--border), var(--slate-lighter), var(--border));
    z-index: 0;
    border-radius: 2px;
}

.zz-node {
    flex: 0 0 180px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: transform 0.2s;
}
.zz-node:hover { transform: scale(1.03); }

.zz-dot {
    position: absolute;
    top: calc(50% - 9px);
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 3px solid var(--white);
    z-index: 2;
    transition: transform 0.2s;
}
.zz-node:hover .zz-dot { transform: scale(1.4); }

.zz-bubble {
    width: 72px; height: 72px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.95rem;
    position: absolute;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}
.zz-node:hover .zz-bubble { transform: scale(1.08); box-shadow: 0 6px 24px rgba(0,0,0,0.2); }

/* Pin/pointer from bubble toward line */
.zz-bubble::after {
    content: '';
    position: absolute;
    width: 0; height: 0;
}

.zz-pin {
    position: absolute;
    width: 2px;
    left: calc(50% - 1px);
    z-index: 1;
    opacity: 0.3;
}

.zz-content {
    position: absolute;
    width: 155px;
    left: 50%;
    transform: translateX(-50%);
}

.zz-title {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.3;
}
.zz-company { font-size: 0.68rem; color: var(--slate-lighter); margin-top: 2px; }
.zz-text { font-size: 0.68rem; color: var(--slate-light); line-height: 1.45; margin-top: 5px; }

/* Above */
.zz-node.zz-above .zz-bubble { bottom: calc(50% + 20px); }
.zz-node.zz-above .zz-bubble::after {
    bottom: -8px; left: calc(50% - 6px);
    border-left: 6px solid transparent; border-right: 6px solid transparent;
    border-top: 8px solid currentColor;
}
.zz-node.zz-above .zz-pin { bottom: calc(50% + 9px); height: 11px; }
.zz-node.zz-above .zz-content { bottom: calc(50% + 100px); text-align: center; }

/* Below */
.zz-node.zz-below .zz-bubble { top: calc(50% + 20px); }
.zz-node.zz-below .zz-bubble::after {
    top: -8px; left: calc(50% - 6px);
    border-left: 6px solid transparent; border-right: 6px solid transparent;
    border-bottom: 8px solid currentColor;
}
.zz-node.zz-below .zz-pin { top: calc(50% + 9px); height: 11px; }
.zz-node.zz-below .zz-content { top: calc(50% + 100px); text-align: center; }

/* ── Style 4: Vertical redesigned ── */
.vtl { position: relative; }

.vtl-item {
    display: grid;
    grid-template-columns: 80px 24px 1fr;
    gap: 0;
    min-height: 60px;
    padding-bottom: 28px;
    position: relative;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.vtl-item[onclick]:hover {
    background: var(--cream-dark);
}

.vtl-item[onclick]::after {
    content: '✎';
    position: absolute;
    right: 8px;
    top: 4px;
    font-size: 0.7rem;
    color: var(--slate-lighter);
    opacity: 0;
    transition: opacity 0.2s;
}

.vtl-item[onclick]:hover::after {
    opacity: 1;
}

/* Date column */
.vtl-date {
    text-align: right;
    padding-right: 16px;
    padding-top: 2px;
}

.vtl-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
}

.vtl-month {
    font-size: 0.7rem;
    color: var(--slate-lighter);
    margin-top: 1px;
}

/* Axis (dot + line) */
.vtl-axis {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.vtl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
    position: relative;
    z-index: 1;
}

.vtl-axis::after {
    content: '';
    position: absolute;
    top: 24px;
    bottom: -28px;
    width: 2px;
    background: var(--border);
    left: 50%;
    transform: translateX(-50%);
}

.vtl-item:last-of-type .vtl-axis::after {
    display: none;
}

/* Content column */
.vtl-content {
    padding-left: 16px;
    padding-top: 0;
}

.vtl-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.vtl-type-badge {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--slate-light);
    background: var(--cream-dark);
    padding: 2px 8px;
    border-radius: 10px;
}

.vtl-emotion-badge {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid;
}

.vtl-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

.vtl-subtitle {
    font-size: 0.82rem;
    color: var(--slate-light);
    margin-top: 1px;
}

.vtl-desc {
    font-size: 0.82rem;
    color: var(--slate);
    line-height: 1.55;
    margin-top: 8px;
}

.vtl-narrative {
    background: var(--mauve);
    border-left: 3px solid var(--plum);
    border-radius: var(--radius);
    padding: 12px 14px;
    margin-top: 10px;
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--plum-dark);
    font-style: italic;
}

.vtl-narrative-label {
    display: block;
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vtl-attachment {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--plum);
}

/* Origin marker */
.vtl-origin {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 80px;
    margin-top: 4px;
    color: var(--slate-lighter);
    font-size: 0.72rem;
    font-style: italic;
}

.vtl-origin-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    margin-left: 8px;
}

/* ── Timeline style selector ── */
.tl-style-selector {
    display: flex; gap: 6px; align-items: center;
}
.tl-style-btn {
    padding: 4px 10px; border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--white); font-size: 0.7rem; cursor: pointer; transition: all 0.2s;
    font-family: inherit; color: var(--slate-light);
}
.tl-style-btn:hover { border-color: var(--plum); color: var(--plum); }
.tl-style-btn.active { background: var(--plum); color: white; border-color: var(--plum); }

/* Tabs for style switching */
.tl-style-tab {
    padding: 8px 14px;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--slate-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.2s;
}
.tl-style-tab:hover { color: var(--navy); }
.tl-style-tab.active { color: var(--plum); border-bottom-color: var(--plum); font-weight: 600; }

/* Banner under each style */
.tl-banner {
    text-align: center;
    padding: 10px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-light);
    background: var(--cream);
    border-top: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.2s;
}
.tl-banner:hover { background: var(--mauve); color: var(--plum); }

.tl-banner-active {
    background: var(--success-bg) !important;
    color: var(--success) !important;
    cursor: default !important;
}
.tl-banner-active:hover { background: var(--success-bg) !important; }

.tl-banner-saving {
    background: var(--mauve) !important;
    color: var(--plum) !important;
    cursor: wait !important;
}

.tl-save-btn {
    padding: 4px 12px;
    border: 1px solid var(--success);
    border-radius: var(--radius);
    background: var(--success-bg);
    color: var(--success);
    font-size: 0.7rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    animation: fadeInSave 0.3s ease;
}

.tl-save-btn:hover { background: var(--success); color: white; }
.tl-save-btn.saved { background: var(--success); color: white; border-color: var(--success); }

@keyframes fadeInSave { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: translateX(0); } }

/* ── Mentor badges ── */
.mentor-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}

.mentor-actif { background: var(--mauve); color: var(--plum); }
.mentor-confirme { background: var(--plum-light); color: var(--white); }
.mentor-confiance { background: var(--plum); color: var(--white); }
.mentor-ressource { background: linear-gradient(135deg, var(--plum), var(--navy)); color: var(--white); border: 1px solid var(--plum-light); }

/* ── Homepage hero ── */
.hero-section {
    background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 40%, var(--plum-light) 100%);
    color: var(--white);
    padding: 60px 0;
    margin: -28px -24px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.1) 40px, rgba(255,255,255,0.1) 80px);
}

.hero-section * { position: relative; z-index: 1; }

.hero-section h1 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.hero-section p { opacity: 0.85; font-size: 0.95rem; max-width: 560px; margin: 0 auto; line-height: 1.6; }
.hero-section .swiss-line { background: rgba(255,255,255,0.4); margin: 16px auto; }
.hero-greeting { font-size: 1rem; opacity: 0.7; margin-bottom: 8px; }

/* Quick access cards */
.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.quick-card {
    text-align: center;
    padding: 24px 16px;
    transition: all var(--transition);
    text-decoration: none;
    display: block;
}

.quick-card:hover, .card[style*="text-align: center"]:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.quick-card-icon { font-size: 1.8rem; margin-bottom: 8px; }
.quick-card-title { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.quick-card-desc { font-size: 0.75rem; color: var(--slate-light); line-height: 1.4; }

/* Quote block */
.institutional-quote {
    background: var(--mauve);
    border-left: 4px solid var(--plum);
    border-radius: var(--radius);
    padding: 24px 28px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--plum-dark);
    font-style: italic;
    margin: 28px 0;
}

.institutional-quote strong { font-style: normal; }

@media (max-width: 768px) {
    .quick-access-grid { grid-template-columns: 1fr 1fr; }
    .hero-section { padding: 40px 20px; margin: -16px -14px 20px; }
    .hero-section h1 { font-size: 1.6rem; }
}

/* ── Modal ── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(28, 53, 94, 0.4);
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.show { display: flex; }

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

.modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 { margin: 0; }
.modal-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--slate-lighter); padding: 4px; }
.modal-body { padding: 20px; }

.modal-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .layout-feed { grid-template-columns: 1fr; }
    .layout-feed > :first-child, .layout-feed > :last-child { display: none; }
    .layout-two-col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .profile-avatar-wrap { flex-direction: column; align-items: center; text-align: center; }
    .profile-stats { justify-content: center; }
    .profile-actions { justify-content: center; }
    .user-grid { grid-template-columns: 1fr; }
    .auth-card .card-body { padding: 24px; }
    .admin-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.3rem; }
    .container { padding: 0 14px; }
}

/* ── Utilities ── */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-gold { color: var(--teal-dark); }
.text-muted { color: var(--slate-light); }
.text-small { font-size: 0.78rem; }
.text-xs { font-size: 0.68rem; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 14px; }
.mt-3 { margin-top: 20px; }
.mt-4 { margin-top: 28px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 14px; }
.mb-3 { margin-bottom: 20px; }
.mb-4 { margin-bottom: 28px; }
.d-flex { display: flex; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 14px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none; }
