/* ============================================
   Баннер (module_id=37) — Ремонт и изготовление деталей
   Контейнер: .custom-banner-37
   ============================================ */

.custom-banner-37 {
    background: #1a1a1a url('/image/catalog/custom-banner-37.webp') center/cover no-repeat;
    padding: 60px 30px;
    margin: 0 0 30px 0;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

/* Затемняющий слой для читаемости текста поверх фона */
.custom-banner-37::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 8px;
    z-index: 1;
}

/* Контент поверх затемнения */
.custom-banner-37__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.custom-banner-37__title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.3;
    border-bottom: none;
    display: block;
    padding-bottom: 0;
}

.custom-banner-37__subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #dddddd;
    margin: 0 0 30px 0;
}

.custom-banner-37__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ---------- Кнопки ---------- */
.custom-banner-37__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 50px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    border-radius: 5px;
    border: 2px solid #018cd1;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Основная кнопка */
.custom-banner-37__btn--primary {
    background: #018cd1;
    color: #ffffff;
    border-color: #018cd1;
    box-shadow: 0 4px 12px rgba(1, 140, 209, 0.3);
}

.custom-banner-37__btn--primary:hover {
    background: #ffffff;
    color: #018cd1;
    border-color: #018cd1;
    box-shadow: 0 6px 18px rgba(1, 140, 209, 0.2);
}

/* Обводная (outline) кнопка */
.custom-banner-37__btn--outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.custom-banner-37__btn--outline:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

/* ---------- Адаптивность ---------- */
@media (max-width: 768px) {
    .custom-banner-37 {
        padding: 40px 15px;
    }

    .custom-banner-37__title {
        font-size: 24px;
    }

    .custom-banner-37__subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .custom-banner-37__buttons {
        flex-direction: column;
        gap: 12px;
    }

    .custom-banner-37__btn {
        height: 44px;
        padding: 0 25px;
        font-size: 15px;
        max-width: 95%;
        width: 100%;
    }
}