﻿/* ── Card ───────────────────────────────────────────────── */
.fd-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0,0,0,.07);
    transition: box-shadow .25s, transform .25s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

    .fd-card:hover {
        box-shadow: 0 8px 28px rgba(0,0,0,.13);
        transform: translateY(-4px);
    }

/* ── Year ribbon ────────────────────────────────────────── */
.fd-ribbon {
    position: absolute;
    top: 14px;
    left: 0;
    background: linear-gradient(135deg, #8b0000, #c0392b);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    padding: .28rem .75rem .28rem .6rem;
    border-radius: 0 20px 20px 0;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(139,0,0,.3);
}

/* ── Photo ──────────────────────────────────────────────── */
.fd-photo-wrap {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    max-height: 260px;
}

.fd-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .35s;
}

.fd-card:hover .fd-photo {
    transform: scale(1.04);
}

.fd-photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #adb5bd;
}

/* ── Card body ──────────────────────────────────────────── */
.fd-card-body {
    padding: 1rem 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
    flex: 1;
}

.fd-name-cyrillic {
    font-size: .95rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

.fd-name-latin {
    font-size: .8rem;
    color: #6c757d;
}

.fd-role-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: .3rem;
    background: #fff0f0;
    color: #c0392b;
    border: 1px solid rgba(192,57,43,.2);
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 600;
    padding: .2rem .65rem;
}

.fd-period {
    margin-top: .4rem;
    font-size: .8rem;
    color: #6c757d;
    display: flex;
    align-items: center;
}
