/* ======================
   Страница флориста-автора (SEO-135)

   Переменные --bc-brand / --bc-text / --bc-gray / --bc-light объявлены
   в :root файла blog.css, который вьюха регистрирует первым.
   ====================== */
.florist-page {
    padding-bottom: 40px;
}

.florist-hero {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 24px 0 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--bc-light);
}

.florist-hero__photo img,
.florist-hero__photo-empty {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
}

.florist-hero__photo-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bc-light);
    color: var(--bc-gray);
}

.florist-hero__name {
    margin: 0 0 6px;
    font-size: 32px;
    font-weight: 700;
}

.florist-hero__position {
    margin: 0 0 16px;
    font-size: 16px;
    color: var(--bc-gray);
}

.florist-hero__city {
    margin-left: 4px;
}

.florist-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.florist-stats__item {
    display: flex;
    flex-direction: column;
    min-width: 120px;
    padding: 10px 16px;
    border: 1px solid var(--bc-light);
    border-radius: 10px;
}

.florist-stats__value {
    font-size: 18px;
    font-weight: 700;
    color: var(--bc-text);
}

.florist-stats__label {
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bc-gray);
}

.florist-lead {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.5;
}

.florist-bio {
    margin-bottom: 32px;
}

.florist-section {
    margin-bottom: 36px;
}

.florist-section__title {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 700;
}

.florist-awards {
    margin: 0;
    padding: 0;
    list-style: none;
}

.florist-awards__item {
    position: relative;
    padding: 0 0 10px 22px;
    line-height: 1.5;
}

.florist-awards__item::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bc-brand);
}

.florist-awards__year {
    color: var(--bc-gray);
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .florist-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .florist-hero__photo img,
    .florist-hero__photo-empty {
        width: 120px;
        height: 120px;
    }

    .florist-hero__name {
        font-size: 26px;
    }

    .florist-section__title {
        font-size: 20px;
    }
}
