/* ============================================================
   Eventriqs — Vendor Card Widget Styles v1.1.0
   ============================================================ */

.eq-vc {
    position: relative;
    background: #ffffff;
    border: 0.5px solid #eeeeee;
    border-radius: 14px;
    overflow: visible;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.eq-vc:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transform: translateY(-2px);
}

/* ── HERO ─────────────────────────────────────────── */
.eq-vc__hero {
    height: 200px;
    background-color: #f5f0ee;
    background-size: cover;
    background-position: center center;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    position: relative;
}

/* ── VENDOR LOGO ──────────────────────────────────── */
.eq-vc__logo {
    position: absolute;
    top: calc(200px - 22px);
    left: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.eq-vc__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eq-vc__logo-initials {
    font-size: 13px;
    font-weight: 700;
    color: #D4537E;
}

/* ── BODY ─────────────────────────────────────────── */
.eq-vc__body {
    padding: 28px 14px 14px;
}

.eq-vc__name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 3px;
    line-height: 1.25;
}

.eq-vc__category {
    font-size: 13px;
    color: #888888;
    margin: 0 0 8px;
}

.eq-vc__location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #D4537E;
    margin: 0 0 12px;
}

.eq-vc__location a {
    color: inherit;
    text-decoration: none;
}

.eq-vc__location a:hover {
    text-decoration: underline;
}

.eq-vc__category a {
    color: inherit;
    text-decoration: none;
}

.eq-vc__category a:hover {
    text-decoration: underline;
}

/* ── ACTIONS ──────────────────────────────────────── */
.eq-vc__actions {
    display: flex;
    gap: 8px;
    border-top: 0.5px solid #eeeeee;
    padding-top: 12px;
}

.eq-vc__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 9px 0;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.eq-vc__btn--view           { background: #FBEAF0; color: #D4537E; border: 0.5px solid #eeeeee; }
.eq-vc__btn--view:hover     { background: #D4537E; color: #ffffff; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 480px) {
    .eq-vc__hero  { height: 170px; }
    .eq-vc__logo  { top: calc(170px - 22px); }
    .eq-vc__name  { font-size: 15px; }
    .eq-vc__btn   { font-size: 11px; }
}
