/* Hero-баннер главной: две карточки (текст + фото) на светлой подложке. */

.home-hero {
    max-width: 1100px;
    margin: 20px auto 28px;
    padding: 20px 20px;
}

/* Две равные колонки во всю ширину контента (выровнено с .home-content ниже) */
.home-hero__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}
.home-hero__grid--single { grid-template-columns: 1fr; }

/* Левая карточка — белая, контент по вертикали по центру */
.home-hero__card--text {
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 32px;
    padding: 56px;
    box-shadow: 0 12px 30px rgba(20, 30, 50, .06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.home-hero__badge {
    display: inline-block;
    background: #ffe6d6;
    color: #d1481e;
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: 700;
    font-size: .85rem;
    line-height: 1.2;
    margin: 0 0 20px;
}

.home-hero__title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0 0 16px;
    color: #1a1a1a;
}

.home-hero__desc {
    font-size: 1.0625rem;
    line-height: 1.5;
    color: #4a4f57;
    margin: 0 0 32px;
}

.home-hero__buttons { display: flex; gap: 16px; }
.home-hero__btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 14px;
    background: #ff6b35; color: #fff;
    font-weight: 700; font-size: 1rem;
    text-decoration: none;
    transition: all .3s ease;
}
.home-hero__btn:hover {
    background: #e85520;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 107, 53, .35);
}

/* Правая карточка — фото, полностью заполняет, срез книжного шкафа слева */
.home-hero__card--media {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 12px 30px rgba(20, 30, 50, .06);
}
.home-hero__card--media picture { display: block; width: 100%; height: 100%; }
.home-hero__card--media img {
    display: block; width: 100%; height: 100%;
    object-fit: cover;
    object-position: 60% center;
}

/* Планшет/мобайл: одна колонка, текст сверху, фото снизу */
@media (max-width: 992px) {
    .home-hero { padding: 0 12px; margin-top: 16px; }
    .home-hero__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .home-hero__card--text {
        order: 1;
        border-radius: 24px;
        padding: 24px;
    }
    .home-hero__title { font-size: 1.6rem; }
    .home-hero__buttons { flex-direction: column; align-items: stretch; width: 100%; }
    .home-hero__btn { justify-content: center; }
    .home-hero__card--media {
        order: 2;
        border-radius: 24px;
        height: 350px;
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) { .home-hero__btn { transition: none; } }
