/* Styles for elements added with the website editor (sold badges, videos). */

.badge-sold {
    background: rgba(12, 10, 8, 0.82);
    color: #f0ebe2;
    border: 1px solid rgba(240, 235, 226, 0.35);
}

.cms-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 16px;
    margin: 24px 0;
}

.cms-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 1px solid rgba(201, 168, 117, 0.18);
    overflow: hidden;
}

.cms-video iframe,
.cms-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.cms-video-caption {
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--text-muted, rgba(240, 235, 226, 0.6));
}

.photo-grid-item video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-success-note {
    margin-top: 12px;
}
