@charset "utf-8";

.staff-section {
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.staff-list {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.staff-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 28px 32px;
    width: 100%;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-card);
    transition: transform var(--dur-base) var(--ease-spring),
        box-shadow var(--dur-base) var(--ease-smooth),
        border-color var(--dur-base);
    user-select: none;
    backdrop-filter: blur(10px);
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(28, 79, 212, 0.18);
}

.staff-info {
    flex: 1;
    padding-right: 28px;
}

.staff-info h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1.5px solid var(--border);
    padding-bottom: 8px;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.staff-info p {
    font-size: 14px;
    color: var(--ink-60);
    line-height: 1.80;
    font-weight: 300;
}

.staff-image {
    width: 130px;
    height: 130px;
    border-radius: var(--radius-img);
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 14px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--dur-base) var(--ease-smooth);
}

.staff-card:hover .staff-image {
    box-shadow: var(--shadow-md);
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease-smooth);
}

.staff-card:hover .staff-image img {
    transform: scale(1.06);
}