/* MAJARA_CONTACT_PANEL_VISUAL_V1 */

.contact-panel {
    overflow: hidden;
}

.contact-panel__visual {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(
            135deg,
            rgba(24,20,17,.08),
            rgba(24,20,17,.72)
        ),
        var(--mj-contact-panel-image, #4b3829);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-panel__visual::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background:
        linear-gradient(
            180deg,
            rgba(20,17,14,.06) 20%,
            rgba(20,17,14,.72) 100%
        );
}

.contact-panel__visual::after {
    position: absolute;
    z-index: 2;
    left: 26px;
    bottom: 22px;
    width: 108px;
    height: 108px;
    content: "";
    opacity: .19;
    background:
        url("/wp-content/themes/majara-architecture/assets/brand/majara-mark.svg")
        center / contain no-repeat;
    filter: brightness(0) invert(1);
}

.contact-panel__visual > * {
    position: relative;
    z-index: 3;
}

.contact-panel__visual-caption {
    position: absolute;
    z-index: 4;
    right: 22px;
    bottom: 21px;
    display: inline-flex;
    gap: 7px;
    padding: 8px 11px;
    align-items: center;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(24,20,17,.5);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,.88);
    font-size: .72rem;
    font-weight: 700;
}

.contact-panel__visual-caption::before {
    width: 6px;
    height: 6px;
    content: "";
    border-radius: 50%;
    background: var(--mj-brand-primary);
}

.contact-panel__visual:hover {
    background-position: center 46%;
}

@media (max-width: 900px) {
    .contact-panel__visual {
        min-height: 300px;
    }
}

@media (max-width: 620px) {
    .contact-panel__visual {
        min-height: 240px;
    }

    .contact-panel__visual::after {
        left: 16px;
        bottom: 13px;
        width: 78px;
        height: 78px;
    }

    .contact-panel__visual-caption {
        right: 14px;
        bottom: 14px;
    }
}
