/* =============================================================
   VMD GeoDirectory Widgets v1.1.0
   Author: Virtuoso Design Studio
   myvegasmag.com — navy #1A2E4A · red #DD3333 · Open Sans
   ============================================================= */

/* ── CTA Button ──────────────────────────────────────────────── */
.vmd-cta-wrap {
    display: block;
    line-height: 1;
}

.vmd-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border: 1px solid transparent;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    line-height: 1.4;
}

.vmd-btn-navy  { background-color: #1A2E4A; color: #fff !important; border-color: #1A2E4A; }
.vmd-btn-navy:hover { background-color: #152638; border-color: #152638; color: #fff !important; }

.vmd-btn-red   { background-color: #DD3333; color: #fff !important; border-color: #DD3333; }
.vmd-btn-red:hover { background-color: #bb1a00; border-color: #bb1a00; color: #fff !important; }

.vmd-btn-outline { background-color: transparent; color: #1A2E4A !important; border-color: #1A2E4A; }
.vmd-btn-outline:hover { background-color: #1A2E4A; color: #fff !important; }

.vmd-btn-ghost { background-color: transparent; color: #666 !important; border-color: #e5e5e5; }
.vmd-btn-ghost:hover { background-color: #f0f0f0; color: #222 !important; }

.vmd-btn-custom { border-style: solid; }

.vmd-btn-full { display: flex; width: 100%; }

/* ── Phone Number ─────────────────────────────────────────────── */
.vmd-phone-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}
.vmd-phone-wrap.vmd-phone-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.vmd-phone-inner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.vmd-phone-icon {
    display: inline-flex;
    align-items: center;
    color: #1A2E4A;
    font-size: 14px;
    margin-right: 6px;
    flex-shrink: 0;
}
.vmd-phone-icon svg,
.vmd-phone-icon i { width: 1em; height: 1em; }

.vmd-phone-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.3px;
    margin-right: 4px;
    flex-shrink: 0;
}
.vmd-phone-number {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #222;
}
.vmd-phone-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #222;
    text-decoration: none;
    transition: color 0.15s ease;
}
.vmd-phone-link:hover { color: #DD3333; text-decoration: none; }

/* ── Post Map ─────────────────────────────────────────────────── */
.vmd-map-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.vmd-map-canvas {
    width: 100%;
    height: 200px;
    display: block;
    z-index: 0;
}
.vmd-map-no-location {
    display: flex;
    align-items: center;
    padding: 8px 0;
}
/* Ensure Leaflet popup font matches brand */
.vmd-map-wrap .leaflet-popup-content {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    margin: 10px 14px;
}
.vmd-map-wrap .leaflet-popup-content strong {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 767px) {
    .vmd-cta-btn  { font-size: 10px; padding: 8px 14px; }
    .vmd-btn-full { font-size: 12px; padding: 10px 16px; }
}
