/* SECTION */

.maxim-escort-cta {
    padding: 20px;
    display: flex;
    justify-content: center;
}


/* CARD */

.maxim-escort-cta-container {
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;

    padding: 32px 36px;

    border-radius: 26px;

    background: linear-gradient(
        180deg,
        #0b1736 0%,
        #040b1d 100%
    );

    box-shadow:
        inset 0 3px 0 rgba(40,100,255,0.75),
        0 20px 50px rgba(0,0,0,0.55);
}


/* LABEL */

.maxim-escort-cta-label {

    display: inline-block;

    margin-bottom: 16px;

    padding: 8px 14px;

    font-size: 15px;

    color: #3c82ff;

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 10px;

    background: rgba(0,0,0,0.25);
}


/* TITLE */

.maxim-escort-cta-title {

    font-size: clamp(24px, 2.4vw, 34px);

    font-weight: 500;

    color: #e6e6e6;

    margin-bottom: 10px;
}


/* DESCRIPTION */

.maxim-escort-cta-description {

    font-size: clamp(15px, 1.5vw, 18px);

    color: rgba(255,255,255,0.7);

    margin-bottom: 18px;

    line-height: 1.5;
}


/* BUTTON */

.maxim-escort-cta-button {

    display: block;

    width: 100%;

    text-align: center;

    min-height: 44px;
    padding: 12px 14px;

    font-size: 17px;

    font-weight: 500;

    color: #ffffff;

    text-decoration: none;

    background: #2f5fd4;

    border-radius: 10px;

    transition: all 0.2s ease;
}


/* BUTTON HOVER */

.maxim-escort-cta-button:hover {

    background: #3c73ff;

    transform: translateY(-2px);
}


/* MOBILE */

@media (max-width: 768px) {

    .maxim-escort-cta-container {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .maxim-escort-cta-title {
        font-size: 22px;
    }

    .maxim-escort-cta-description {
        font-size: 13px;
    }

    .maxim-escort-cta-button {
        font-size: 16px;
        padding: 10px 12px;
    }

}
