:root {
    --sb-primary: #4e73df;
    --sb-primary-dark: #224abe;
    --sb-light: #f8f9fc;
}

body {
    font-family: 'Work Sans', 'Nunito', sans-serif;
    background: var(--sb-light);
    color: #1f2937;
}

.bg-sb-primary {
    background: linear-gradient(120deg, var(--sb-primary), var(--sb-primary-dark));
}

.hero {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    margin-top: 2rem;
}

.colleague-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.colleague-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.colleague-photo-frame {
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8ebff, #f8f9fc);
}

.colleague-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.colleague-photo-frame.is-portrait .colleague-photo {
    object-position: center top;
}

.badge-hobby {
    background: rgba(78, 115, 223, 0.1);
    color: var(--sb-primary);
    margin-right: 0.35rem;
}

footer {
    padding: 2rem 0 3rem;
    color: #6b7280;
}


.colleague-placeholder {
    object-fit: contain;
    background: #f3f4f6;
    padding: 2.5rem 1.5rem;
}


.colleague-initials {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    font-weight: 700;
    color: #1f2937;
    background: linear-gradient(135deg, #e5e7eb, #f9fafb);
    letter-spacing: 0.08em;
}

@media (max-width: 767px) {
    .colleague-photo-frame,
    .colleague-initials {
        height: 280px;
    }
}
