.vm-upload-area { border:2px dashed #bbb; padding:30px; text-align:center; border-radius:8px; cursor:pointer; background:#fafafa; }
.vm-upload-area.dragover { border-color:#007cba; background:#f0f8ff; }
.vm-upload-area p { margin:0 0 10px; font-size:16px; }
.vm-upload-area button { padding:8px 16px; background:#007cba; color:#fff; border:none; border-radius:4px; cursor:pointer; }
.vm-preview { display:flex; gap:10px; margin-top:15px; flex-wrap:wrap; }
.vm-preview img { width:120px; height:120px; object-fit:cover; border-radius:6px; border:1px solid #ddd; }

.updated { background-color:#dff0d8; border:1px solid #3c763d; color:#3c763d; padding:15px 20px; margin:20px 0; border-radius:5px; font-size:16px; font-family:Arial, sans-serif; box-shadow:0 2px 4px rgba(0,0,0,0.1); display:inline-block; width:100%; }



 /* IMPORTANT: two-column events grid */
  .vm_events .vm_events{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 12px;
  background:transparent;
  padding:0;
  border:0;
  margin-top:0;
  }

  .vm_events .event{
    display: grid;
    grid-template-columns: 76px 1fr auto;
    gap: 14px;
    align-items: center;

    background: #fff;
    border: 1px solid rgba(17,24,39,.06);
    box-shadow: var(--shadow-2);
    border-radius: var(--radius);
    padding: 14px;
    transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease;
  }

  .vm_events .event:hover{
    transform: translateY(-1px);
    box-shadow: var(--shadow);
    border-color: rgba(34,197,94,.25);
  }

  .vm_events .event-date{
    border-radius: 14px;
    border: 1px solid rgba(17,24,39,.12);
    background: rgba(17,24,39,.02);
    padding: 10px 8px;
    text-align: center;
    line-height: 1.1;
  }

  .vm_events .event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 90px;          /* ⬅️ increased height */
  padding: 10px 8px;         /* ⬅️ breathing room */
  box-sizing: border-box;
}

  .vm_events .event-date .month{
    display:block;
    font-size: 12px;
    font-weight: 900;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  .vm_events .event-date .day{
    display:block;
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    margin-top: 4px;
  }

.vm_events .event-date .year {
  margin-top: 6px;           /* ⬅️ space ABOVE the year */
  font-size: 12px;
  line-height: 1;
  opacity: 0.75;             /* optional: visually secondary */
}

.event-more-details {
font-size: 13px;
} 

.event-more-details a {
text-decoration: none;
} 
  .vm_events .event-details{ min-width: 0; }
  .vm_events .event-time{
    font-size: 12px;
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 6px;
  }
  .vm_events .event-title{
    font-size: 15px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 8px;

    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }
  .vm_events .event-title a{
    color: var(--text);
    text-decoration: none;
  }
  .vm_events .event-title a:hover{
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
  }
  .vm_events .event-title span{
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
  }

  .vm_events .event-toggle{
    margin-left: auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid rgba(17,24,39,.12);
    background: rgba(17,24,39,.02);
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
    flex: 0 0 auto;
  }
  .vm_events .event-toggle:hover{
    background: rgba(17,24,39,.05);
    border-color: rgba(34,197,94,.25);
  }
  .vm_events .event-toggle .chev{
    width: 10px;
    height: 10px;
    border-right: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: rotate(45deg);
    transition: transform .18s ease, border-color .18s ease;
  }
  .vm_events .event-toggle.is-open .chev{
    transform: rotate(-135deg);
    border-right-color: rgba(34,197,94,1);
    border-bottom-color: rgba(34,197,94,1);
  }

.vm_events .event-extra.vm_hide{
  margin-bottom: 0px;  /* CLOSED state */
}

  .vm_events .event-extra{
    margin-top:6px;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(17,24,39,.12);
    background: rgba(17,24,39,.02);
    color: #374151;
    font-size: 13px;
    line-height: 1.45;

    overflow: hidden;
    max-height: 280px;
    transition: max-height .25s ease, opacity .2s ease, transform .2s ease;
  }
  .vm_events .event-extra.vm_hide{
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
    opacity: 0;
    transform: translateY(-2px);
  }
  .vm_events .event-price{
    margin-top: 8px;
    font-weight: 500;
    color: #111827;
  }

  .vm_events .event-location{
    margin-top: 8px;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    align-items:center;
  }
  .vm_events .event-location a{
    display:inline-flex;
    align-items:center;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(17,24,39,.12);
    background: #fff;
    color: #374151;
    text-decoration:none;
    font-size: 13px;
    font-weight: 800;
    transition: transform .12s ease, background .18s ease, border-color .18s ease;
  }
  .vm_events .event-location a:hover{
    background: rgba(34,197,94,.06);
    border-color: rgba(34,197,94,.35);
    transform: translateY(-1px);
  }

  .vm_events .event-action{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }
 .vm_events .event-action a.link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    min-width: 120px;
    justify-content: center;

    border-radius:14px;
    padding:10px 14px;

    font-weight:900;
    font-size:13px;
    letter-spacing:.01em;

    color:#fff;
    text-decoration:none;

    background: linear-gradient(135deg, rgba(34,197,94,.65), rgba(34,197,94,1));
    box-shadow: 0 10px 20px rgba(34,197,94,.18);
    transition: transform .12s ease, filter .2s ease, box-shadow .2s ease;
  }
  .vm_events .event-action a.link:hover{
    filter: brightness(.92) saturate(1.05);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(34,197,94,.22);
  }
  .vm_events .event-partner-note{
    align-self: center;
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: .02em;
  }

  .vm_events .vm_empty{
    padding: 14px;
    border-radius: var(--radius);
    border: 1px dashed rgba(17,24,39,.18);
    background: rgba(255,255,255,.7);
    color: var(--muted);
    font-weight: 700;
    text-align: center;
    margin-top: 12px;
  }


.vp-section-divider{
  height: 1px;
  background: rgba(17,24,39,.12);
  margin: 22px 0;
  border-radius: 999px;
}

.readmore {
  line-height: 1.5;
}

.rm-toggle {
  display: inline-block;
  margin-left: 0px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}


/* SVG ICON */
  .icon {
  display: inline-flex;
  align-items: center;
  margin-right: 6px;
  color: #6b7280;
}
.icon svg {
  fill: currentColor;
}
.vm_events_container.loading { opacity: 0.2; pointer-events: none; }

.vm-tooltip-icon { position:relative; cursor:help; }
.vm-tooltip-icon::after { content:attr(data-tooltip); position:absolute; background:#23282d; color:#fff; padding:8px 8px; border-radius:4px; font-size:14px; width:220px; top:125%; left:50%; transform:translateX(-50%); opacity:0; visibility:hidden; transition:opacity 0.2s; z-index:99999; }
.vm-tooltip-icon:hover::after, .vm-tooltip-icon:focus::after, .vm-tooltip-icon.is-active::after { opacity:1; visibility:visible; }

.vm_sub_heading { font-size:18px; font-weight:bold; color:#666666; margin-bottom:20px; }
.vm_hide { display:none; }

.vm_single_venue h1 { margin-bottom:10px; }
.vm_single_venue .venue-short-description { margin-bottom:20px; }
.vm_single_venue .venue-featured-image { margin-bottom:20px; }
.vm_single_venue .venue-featured-image img { width:100%; height:auto; }
.vm_single_venue .venue-address { margin-bottom:20px; }
.vm_single_venue .venue-address a { text-decoration:none; color:#0073aa; }
.vm_single_venue .venue-address a:hover { text-decoration:none; }
.vm_single_venue .venue-type { margin-bottom:5px; }
.vm_single_venue .venue-type a { text-decoration:none; color:#0073aa; }
.vm_single_venue .venue-type a:hover { text-decoration:underline; }
.vm_single_venue .venue-capacity { margin-bottom:5px; }
.vm_single_venue .venue-genres { margin-bottom:5px; }
.vm_single_venue .venue-genres a { text-decoration:none; color:#0073aa; }
.vm_single_venue .venue-genres a:hover { text-decoration:underline; }
.vm_single_venue .venue-link { margin-bottom:5px; }
.vm_single_venue .venue-link a { text-decoration:none; color:#0073aa; }
.vm_single_venue .venue-link a:hover { text-decoration:none; }
.vm_single_venue .venue-description { margin-bottom:20px; }
.vm_single_venue .venue-venue-diagram { margin-bottom:20px; text-align:center; }
.vm_single_venue .venue-events { margin-bottom:20px; }

.vm_single_artist h1 { margin-bottom:10px; }
.vm_single_artist .artist-featured-image { margin-bottom:20px; }
.vm_single_artist .artist-featured-image img { width:100%; height:auto; }
.vm_single_artist .artist-genres { margin-bottom:20px; }
.vm_single_artist .artist-genres a { text-decoration:none; color:#0073aa; }
.vm_single_artist .artist-genres a:hover { text-decoration:underline; }
.vm_single_artist .artist-description { margin-bottom:20px; }
.vm_single_artist .artist-related-links { margin-bottom:10px; }
.vm_single_artist .artist-related-links a { display:inline-block; margin-right:10px; margin-bottom:10px; }
.vm_single_artist .artist-events { margin-bottom:20px; }
.vm_single_artist .artist-video-gallery { margin-bottom:20px; }

.vm_single_event h1 { font-size:32px; margin-bottom:20px; }
.vm_single_event .event-featured-image { margin-bottom:20px; }
.vm_single_event .event-featured-image img { width:100%; height:auto; }
.vm_single_event .event-meta-top { background:#f8f8f8; padding:18px; border-radius:8px; margin-bottom:20px; }
.vm_single_event .event-dates { margin-bottom:10px; }
.vm_single_event .event-date-item { font-size:15px; color:#333; }
.vm_single_event .event-venue { margin-top:6px; font-size:15px; }
.vm_single_event .event-venue a { color:#0073aa; text-decoration:none; }
.vm_single_event .event-venue a:hover { text-decoration:none; }
.vm_single_event .event-genres { margin-top:6px; font-size:15px; }
.vm_single_event .event-genres a { color:#0073aa; text-decoration:none; }
.vm_single_event .event-genres a:hover { text-decoration:underline; }
.vm_single_event .event-artists { margin-top:6px; font-size:15px; }
.vm_single_event .event-artists a { color:#0073aa; text-decoration:none; }
.vm_single_event .event-artists a:hover { text-decoration:underline; }
.vm_single_event .event-description { font-size:16px; line-height:1.7; margin-bottom:20px; }
.vm_single_event .event-extra { display:flex; gap:20px; align-items:center; flex-wrap:wrap; margin-bottom:40px; }
.vm_single_event .event-btn { background:#0073aa; color:#fff; padding:10px 18px; border-radius:4px; text-decoration:none; font-weight:600; }
.vm_single_event .event-btn:hover { background:#005f8d; }

.vm_single_event .event-layout.has-vertical-image { display:flex; gap:30px; align-items:flex-start; }
.vm_single_event .event-layout.has-vertical-image .event-left { flex:1; }
.vm_single_event .event-layout.has-vertical-image .event-right { max-width:350px; }
.vm_single_event .event-vertical-image img { width:100%; height:auto; display:block; }
.vm_single_event .event-video-gallery { margin-top:30px; margin-bottom:20px; }

.vm_single_city h1 { margin-bottom:20px; }
.vm_single_city .city-description { margin-bottom:20px; }
.vm_single_city .city-events { margin-bottom:20px; }

.vm_single_type h1 { margin-bottom:20px; }
.vm_single_type .type-description { margin-bottom:20px; }
.vm_single_type .type-events { margin-bottom:20px; }

.vm_single_genre h1 { margin-bottom:20px; }
.vm_single_genre .genre-description { margin-bottom:20px; }
.vm_single_genre .genre-events { margin-bottom:20px; }

.vm_single_tag h1 { margin-bottom:20px; }
.vm_single_tag .tag-description { margin-bottom:20px; }
.vm_single_tag .tag-events { margin-bottom:20px; }

.vm-video-gallery { display:grid; grid-template-columns:repeat(auto-fill, minmax(280px, 1fr)); gap:15px; }
.vm-video-gallery .vm-video-item iframe { width:100%; height:200px; }

.vm-file-btn { display:inline-block; padding:6px 12px; background:#f6f7f7; border-radius:4px; cursor:pointer; color:#2271b1; border:1px solid #2271b1; }
.vm-file-btn:hover { background:#f0f0f1; border:1px solid #0a4b78; color:#0a4b78; }

[dir="rtl"] .container { text-align:right; }
[dir="rtl"] .venue-type { display:flex; text-align:right; }
[dir="rtl"] .venue-type strong { margin-left:6px; }
[dir="rtl"] .venue-genres { display:flex; text-align:right; }
[dir="rtl"] .venue-genres strong { margin-left:6px; }
[dir="rtl"] .venue-link { display:flex; text-align:right; }
[dir="rtl"] .venue-link strong { margin-left:6px; }
[dir="rtl"] .artist-related-links a { margin-right:0px; margin-left:10px; }
[dir="rtl"] .event-date-item { display:flex; text-align:right; }
[dir="rtl"] .event-date-item strong { margin-left:6px; }

@media (max-width:768px) {
	.vm_events .event { flex-wrap:wrap; }
	.vm_events .event-action { width:100%; margin-top:10px; }
	.event-layout.has-vertical-image { flex-direction:column; }
	.event-layout.has-vertical-image .event-right { width:100%; }
}

@media (max-width:600px) {
	.vm_single_event h1 { font-size:26px; }
	.vm_single_event .event-extra { flex-direction:column; align-items:flex-start; }
}

.vp-skin{
--bg:#f3f4f6;
--card:#ffffff;
--text:#111827;
--muted:#6b7280;
--border:#e5e7eb;
--border-strong:#d1d5db;
--brand:#32C732;
--brand-2:#77DD77;
--radius:14px;
--shadow:0 10px 25px rgba(17,24,39,.08);
--shadow-2:0 8px 18px rgba(17,24,39,.06);
--ring:0 0 0 4px rgba(50,199,50,.18);
}
.vp-page { box-sizing: border-box; }
.vp-skin .vm_filters { display:flex; flex-wrap:wrap; gap:10px; align-items:flex-start; padding: 12px 12px; border-radius: var(--radius); background: rgba(255,255,255,.9); border: 1px solid rgba(17,24,39,.06); box-shadow: var(--shadow-2); margin-bottom: 14px; }
.vp-skin .vm_filter { display:flex; flex-direction:column; gap:6px; min-width: 160px; flex: 1 1 180px; }
.vp-skin .vm_filter label { font-size: 12px; font-weight: 800; color: #374151; text-align:left; }
.vp-skin .vm_filter select, .vp-skin .vm_filter input[type="date"] { width:100%; border-radius: 12px; border: 1px solid var(--border-strong); padding: 10px 10px; font-size: 13px; background: #fff; box-sizing: border-box; transition: box-shadow .2s ease, border-color .2s ease; }
.vp-skin .vm_filter select:focus, .vp-skin .vm_filter input[type="date"]:focus { outline:none; border-color: rgba(50,199,50,.7); box-shadow: var(--ring); }
.vp-skin .vm_filter.range { flex: 2 1 320px; }
.vp-skin .vm_range_row { display:flex; gap:10px; flex-wrap:wrap; }
.vp-skin .vm_range_row > div { flex: 1 1 140px; min-width: 140px; display:flex; flex-direction:column; gap:6px; }
.vp-skin .vm_events { display: flex; flex-direction: column; gap: 12px; padding: 0; border: none;}
.vp-skin .event { display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; align-items: center; background: var(--card); border: 1px solid rgba(17,24,39,.06); box-shadow: var(--shadow-2); border-radius: var(--radius); padding: 14px; transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease; }
.vp-skin .event:hover { transform: translateY(-1px); box-shadow: var(--shadow); border-color: rgba(50,199,50,.25); }
.vp-skin .event-date { border-radius: 14px; border: 1px solid var(--border); background: rgba(17,24,39,.02); padding: 10px 8px; text-align: center; line-height: 1.1; }
.vp-skin .event-date .month { display: block; font-size: 12px; font-weight: 900; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.vp-skin .event-date .day { display: block; font-size: 22px; font-weight: 900; color: var(--text); margin-top: 4px; }
.vp-skin .event-details { min-width: 0; }
.vp-skin .event-time { font-size: 12px; color: var(--muted); font-weight: 800; margin-bottom: 6px; }
.vp-skin .event-title { font-size: 15px; font-weight: 900; color: var(--text); line-height: 1.25; margin-bottom: 8px; display: flex; flex-wrap: wrap; gap: 8px; align-items: baseline; }
.vp-skin .event-title a { color: var(--text); text-decoration: none; }
.vp-skin .event-title a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 2px; }
.vp-skin .event-title span { font-size: 12px; font-weight: 800; color: var(--muted); }
.vp-skin .event-location { margin-top: 8px; display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.vp-skin .event-location a { display:inline-flex; align-items:center; padding: 7px 10px; border-radius: 999px; border: 1px solid var(--border); background: #fff; color: #374151; text-decoration:none; font-size: 13px; font-weight: 800; transition: transform .12s ease, background .18s ease, border-color .18s ease; }
.vp-skin .event-location a:hover { background: rgba(50,199,50,.06); border-color: rgba(50,199,50,.35); transform: translateY(-1px); }
.vp-skin .event-note { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 12px; font-weight: 900; color: #0f172a; border: 1px solid rgba(245,158,11,.35); background: rgba(245,158,11,.12); padding: 6px 10px; border-radius: 999px; width: fit-content; }
.vp-skin .event-action { display: flex; align-items: center; justify-content: flex-end; }
.vp-skin .event-action a.link { display: inline-flex; align-items: center; gap: 10px; border-radius: 14px; padding: 10px 14px; font-weight: 900; font-size: 13px; letter-spacing: .01em; color: #fff; text-decoration: none; background: linear-gradient(135deg, var(--brand-2), var(--brand)); box-shadow: 0 10px 20px rgba(50,199,50,.18); transition: transform .12s ease, filter .2s ease, box-shadow .2s ease; }
.vp-skin .event-action a.link:hover { filter: brightness(.92) saturate(1.05); transform: translateY(-1px); box-shadow: 0 14px 28px rgba(50,199,50,.22); }
.vp-skin .event-action a.link:focus { outline: none; box-shadow: var(--ring); }
@media (max-width: 780px) {
	.vp-skin .event { grid-template-columns: 76px 1fr; grid-template-areas: "date details" "action action"; }
	.vp-skin .event-date{ grid-area: date; }
	.vp-skin .event-details{ grid-area: details; }
	.vp-skin .event-action { grid-area: action; justify-content: stretch; }
	.vp-skin .event-action a.link { width: 100%; justify-content: center; }
	.vp-skin .vm_filter{ flex: 1 1 220px; }
	.vp-skin .vm_filter.range{ flex: 1 1 220px; }
}
#ud-artist-page-list { margin-top: 16px; }
#ud-artist-page-list .ud-artist-page-columns ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
#ud-artist-page-list .ud-artist-page-columns li { margin: 0; text-align:left; }
#ud-artist-page-list .ud-artist-page-columns a.artist-page-link { display: block; padding: 12px 14px; border: 1px solid var(--border); border-radius: 14px; background: #fff; color: var(--text); text-decoration: none; font-weight: 650; box-shadow: var(--shadow-2); transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease; }
#ud-artist-page-list .ud-artist-page-columns a.artist-page-link:hover { transform: translateY(-1px); box-shadow: var(--shadow); border-color: rgba(50,199,50,.35); }
#ud-artist-page-list .ud-artist-page-columns a.artist-page-link:focus-visible { outline: none; box-shadow: var(--ring); border-color: rgba(50,199,50,.7); }
#ud-artist-page-list .ud-artist-page-columns li.artist-a-z-headings { grid-column: 1 / -1; padding: 10px 4px 2px; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); text-align:left; }
@media (max-width: 920px){
	#ud-artist-page-list .ud-artist-page-columns ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
	#ud-artist-page-list .ud-artist-page-columns ul { grid-template-columns: 1fr; }
}
.vp-skin .vm_empty { padding: 14px; border-radius: var(--radius); border: 1px dashed rgba(17,24,39,.18); background: rgba(255,255,255,.7); color: var(--muted); font-weight: 700; text-align: center; }
.vp-skin .vm_presets { display:flex; flex-wrap:wrap; gap:8px; margin-top: 10px; }
.vp-skin .vm_preset_btn { border: 1px solid var(--border); background: #fff; color: #374151; font-weight: 900; font-size: 12px; padding: 8px 10px; border-radius: 999px; cursor: pointer; transition: transform .12s ease, background .18s ease, border-color .18s ease; }
.vp-skin .vm_preset_btn:hover { background: rgba(50,199,50,.06); border-color: rgba(50,199,50,.35); transform: translateY(-1px); }
.vp-skin .vm_preset_btn.is-active { background: rgba(50,199,50,.10); border-color: rgba(50,199,50,.50); color: #14532d; }
.vp-skin .event-title { align-items: center; }
.vp-skin .event-toggle { margin-left: auto; display:inline-flex; align-items:center; justify-content:center; width: 30px; height: 30px; border-radius: 12px; border: 1px solid var(--border); background: rgba(17,24,39,.02); cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease; flex: 0 0 auto; }
.vp-skin .event-toggle:hover { background: rgba(17,24,39,.05); border-color: rgba(50,199,50,.25); }
.vp-skin .event-toggle .chev { width: 10px; height: 10px; border-right: 2px solid #6b7280; border-bottom: 2px solid #6b7280; transform: rotate(45deg); transition: transform .18s ease, border-color .18s ease; }
.vp-skin .event-toggle.is-open .chev { transform: rotate(-135deg); border-right-color: var(--brand); border-bottom-color: var(--brand); }
.vp-skin .event-extra { margin-top: 0px; padding: 12px 14px; border-radius: 14px; border: 1px solid var(--border); background: rgba(17,24,39,.02); color: #374151; font-size: 13px; line-height: 1.45; overflow: hidden; max-height: 280px; transition: max-height .25s ease, opacity .2s ease, transform .2s ease; }
.vp-skin .event-extra.vm_hide { max-height: 0; padding-top: 0; padding-bottom: 0; border-width: 0; opacity: 0; transform: translateY(-2px); }
.vp-skin .event-price { margin-top: 8px; font-weight: 900; color: #111827; }
.vp-skin .event-action { display: flex; flex-direction: column; align-items: flex-end;gap: 6px; }
.vp-skin .event-partner-note { align-self: center; font-size: 11px; font-weight: 700; color: #6b7280; letter-spacing: .02em; }
.btn-clear-dates { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; font-size: 12px; font-weight: 600; color: #6b7280; background: transparent; border: 0px dashed #d1d5db; border-radius: 999px; cursor: pointer; }
.btn-clear-dates:hover { color: #111827; border-color: #9ca3af; background: #f9fafb; }
.btn-clear-dates .btn-icon { font-size: 12px; line-height: 1; }

.highlighted { background-color: #abf6ab !important; }

.vp-skin[dir="rtl"] .vm_filter label { text-align:right; }
.vp-skin[dir="rtl"] #ud-artist-page-list .ud-artist-page-columns li.artist-a-z-headings { text-align:right; }
.vp-skin[dir="rtl"] #ud-artist-page-list .ud-artist-page-columns li { text-align:right; }