@media (max-width: 767px){
    .hero {
        height: 200px
    }
}

.site-modal .modal-dialog {
    width: min(840px, calc(100vw - 2rem));
    max-width: 840px;
}

.site-modal-content {
    --site-modal-image-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    border: 0;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.site-modal .row.g-0 {
    min-height: min(540px, calc(100vh - 2rem));
}

body.site-modal-active > *:not(.site-modal):not(.modal-backdrop):not(script),
body.site-modal-active .site-wrapper > *:not(.site-modal) {
    filter: blur(8px) brightness(0.72);
    transition: filter 180ms ease;
}

.site-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 999px;
    opacity: 0.9;
}

.site-modal-left {
    background: var(--bg-light, #fff5f9);
    display: flex;
}

.site-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.site-modal-image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(243, 4, 141, 0.12), rgba(243, 4, 141, 0.02));
}

.site-modal-logo {
    width: 96px;
    height: 96px;
}

.site-modal-body {
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.site-modal-body--no-action {
    justify-content: center;
}

.site-modal-body--no-action .site-modal-description {
    margin-bottom: 0;
}

.site-modal-title {
    font-family: "Playfair Display", serif;
    color: var(--primary-color, #f3048d);
    margin-bottom: 12px;
}

.site-modal-description {
    color: var(--text-muted, #666666);
    margin-bottom: 24px;
}

.site-modal-action {
    background-color: var(--primary-color, #f3048d);
    border-color: var(--primary-color, #f3048d);
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
}

.site-modal-action:hover,
.site-modal-action:focus {
    background-color: #d6037c;
    border-color: #d6037c;
}

.site-modal-note {
    margin-top: 12px;
    color: var(--text-muted, #666666);
    font-size: 1.3rem;
}

.modal-backdrop.show {
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
}

@media (max-width: 991px) {
    .site-modal .row.g-0 {
        min-height: auto;
    }

    .site-modal-image,
    .site-modal-image-fallback {
        aspect-ratio: var(--site-modal-image-ratio);
        height: auto;
    }

    .site-modal-body {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .site-modal .modal-dialog {
        margin: 16px;
    }
}
