/* Matterport virtual tour embed - responsive 16:9 frame */
.fp-matterport {
    margin: 2em 0;
    padding: 0;
}
.fp-matterport__heading {
    font-size: 1.4em;
    margin: 0 0 .8em;
    color: #003D7D;
    display: flex;
    align-items: center;
    gap: .5em;
}
.fp-matterport__heading i {
    color: #003D7D;
}
.fp-matterport__embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0,0,0,.18);
}
.fp-matterport__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.fp-matterport__hint {
    font-size: .85em;
    color: #74777c;
    margin: .6em 0 0;
    text-align: center;
}
@media (max-width: 600px) {
    .fp-matterport__embed {
        padding-top: 75%; /* 4:3 on mobile, easier to use */
        border-radius: 4px;
    }
}