/* =========================================================
   SINN - MACHINE HEALTH REPORT CTA
   Bricks Popup Template ID: 916
   Shortcode: [sinn_mhr_cta]
   ========================================================= */

.sinn-mhr-cta {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 38px 0;

    background: #f6f7f5;

    border-top: 1px solid #e2e4e2;
    border-bottom: 1px solid #e2e4e2;

    font-family: Inter, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}

.sinn-mhr-cta *,
.sinn-mhr-cta *::before,
.sinn-mhr-cta *::after {
    box-sizing: border-box;
}

.sinn-mhr-cta__inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.sinn-mhr-cta__box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;

    gap: 34px;

    width: 100%;
    padding: 24px 22px;

    color: #fff;
    background: #111;

    border-radius: 7px;
}

.sinn-mhr-cta__copy {
    min-width: 0;
}

.sinn-mhr-cta__title {
    margin: 0 0 7px;

    color: #fff;

    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
}

.sinn-mhr-cta__text {
    max-width: 780px;
    margin: 0;

    color: #eee;

    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
}

.sinn-mhr-cta__button {
    appearance: none;
    -webkit-appearance: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 278px;
    min-height: 46px;

    margin: 0;
    padding: 12px 20px;

    color: #111;
    background: #ffc500;

    border: 0;
    border-radius: 3px;

    font-family: inherit;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;

    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;

    cursor: pointer;

    transition:
        transform .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}

.sinn-mhr-cta__button:hover {
    color: #111;
    background: #eeb800;

    transform: translateY(-1px);

    box-shadow: 0 5px 14px rgba(255, 197, 0, .18);
}

.sinn-mhr-cta__button:focus-visible {
    outline: 3px solid rgba(255, 197, 0, .35);
    outline-offset: 3px;
}

@media (max-width: 990px) {
    .sinn-mhr-cta__box {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sinn-mhr-cta__button {
        justify-self: start;
    }
}

@media (max-width: 766px) {
    .sinn-mhr-cta {
        padding: 30px 0;
    }

    .sinn-mhr-cta__inner {
        width: min(100% - 24px, 1240px);
    }

    .sinn-mhr-cta__box {
        padding: 20px 18px;
    }

    .sinn-mhr-cta__button {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 477px) {
    .sinn-mhr-cta__inner {
        width: calc(100% - 20px);
    }

    .sinn-mhr-cta__title {
        font-size: 17px;
    }

    .sinn-mhr-cta__text {
        font-size: 12px;
    }

    .sinn-mhr-cta__button {
        font-size: 11px;
    }
}
