/* Chefs Section */
.chefs-section .title-area .sub-title {
    display: inline-block;
    margin-bottom: 8px;
    letter-spacing: .5px;
}

.chefs-section .title-area .title {
    margin-bottom: 10px;
}

.chefs-section .title-area .section-desc {
    max-width: 720px;
    margin: 0 auto 10px;
}

/* Card */
.chef-card {
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    transition: transform 220ms ease, box-shadow 220ms ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chef-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .10);
}

.chef-card .thumb {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.chef-card .thumb img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 220ms ease;
    display: block;
}

.chef-card:hover .thumb img {
    transform: scale(1.02);
}

.chef-card .info {
    padding: 16px 6px 6px;
    text-align: center;
}

.chef-card .name {
    font-weight: 800;
    font-size: 20px;
    line-height: 1.25;
    margin: 8px 0 4px;
    color: #0b0b0b;
}

.chef-card .role {
    display: block;
    color: #7a7a7a;
    /* вторичный серый */
    font-size: 14px;
    margin-bottom: 12px;
}

/* Social */
.chef-card .social {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.chef-card .social li a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #9a9a9a;
    background: #f2f2f2;
    transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.chef-card .social li a:hover {
    color: #111;
    background: #e9e9e9;
    transform: translateY(-2px);
}

/* Spacing helpers */
.pt-90 {
    padding-top: 90px;
}

.pb-90 {
    padding-bottom: 90px;
}

/* Mobile (iPhone SE baseline <= 667px) */
@media (max-width: 667px) {
    .chefs-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .title-area h2.title {
        font-size: 26px !important;
        line-height: 1.25;
        font-weight: 800;
    }

    .title-area .sub-title {
        font-size: 16px !important;
        letter-spacing: .5px;
    }

    .chef-card .name {
        font-size: 18px;
    }

    .chef-card .role {
        font-size: 13px;
    }

    .chef-card .thumb img {
        height: 380px;
    }
}

/* ==== Sensei Sushi: Chefs override (safe) ==== */

/* контейнер превью в карточке */
.chefe-card.style1 .chefe-thumb {
    overflow: hidden;
}

/* чтобы картинка НЕ резалась слишком агрессивно */
.chefe-card.style1 .chefe-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* ключевое: contain вместо cover */
    object-position: center;
    background: #fff;
    /* если будут пустые поля по краям */
    display: block;
}

/* если шаблон делает круг — пусть круг будет ровным */
.chefe-card.style1 .chefe-thumb,
.chefe-card.style1 .chefe-thumb img {
    border-radius: 50%;
}