.vnspo-facade {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    background-color: #000;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.vnspo-facade img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.vnspo-facade:hover img {
    opacity: 1;
}

/* Play Button */
.vnspo-facade-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    width: 68px;
    height: 48px;
    z-index: 2;
}

.vnspo-facade-btn svg {
    width: 100%;
    height: 100%;
    fill: #f00;
    /* YouTube Red */
}

/* Google Maps Specific */
.vnspo-map-facade {
    background-color: #e5e3df;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vnspo-map-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #666;
    z-index: 1;
}

.vnspo-map-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.vnspo-map-text {
    font-size: 16px;
    font-weight: 600;
    font-family: sans-serif;
}

/* Button style for Maps (reusing youtube btn structure but custom look) */
.vnspo-map-facade .vnspo-facade-btn {
    width: auto;
    height: auto;
    background: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    color: #333;
    opacity: 0;
    /* Hidden by default, show on hover? or always show? */
    transition: opacity 0.3s;
}

.vnspo-map-facade:hover .vnspo-facade-btn {
    opacity: 1;
}