.promo-banner {
    display: flex;
    align-items: center;
    background: #111;
    border-radius: 24px;
    overflow: hidden;
    max-width: 700px;
    /*min-height: 180px;*/
    box-shadow: 0 6px 32px 0 rgba(0,0,0,0.08);
    margin: 0 auto;
    width: 100%;
    margin-bottom: 20px;
}
.promo-text {
    flex: 1;
    /*padding: 32px 24px;*/
    color: #fff;
    text-align: center;
}
.promo-title {
    font-size: 1.6rem;
    font-weight: 700;
    /*margin-bottom: 16px;*/
    line-height: 1.25;
}
.promo-accent {
    color: var(--accent-color);
    cursor: pointer;
}
.promo-btn {
    display: inline-block;
    background: #fff;
    color: #111;
    border: none;
    border-radius: 32px;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 32px;
    margin-top: 8px;
    cursor: pointer;
    transition: background .2s;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.04);
}
.promo-btn:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
}
.promo-img {
    flex: 0 0 266px;
    height: 176px;
    background: url('/static/img/f1ea27e2704eff4590664ee2a7989f40b90be1de.jpg?1') center center/cover no-repeat;
}

/* Мобильная адаптация */
@media (max-width: 600px) {
    .promo-banner {
        flex-direction: column;
        border-radius: 16px;
        min-height: 0;
        max-width: 100%;
    }
    .promo-text {
        padding: 20px 12px 12px 12px;
        text-align: center;
    }
    .promo-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .promo-btn {
        width: 100%;
        padding: 14px 0;
        font-size: 0.96rem;
    }
    .promo-img {
        display: none;
        width: 100%;
        height: 130px;
        min-height: 130px;
        flex: none;
    }
}