/* Javo Listings - Frontend Styles */

/* Tailwind + Flowbite are loaded separately as built CSS */
/* No need to import twcss.css here */

:root {
  /* Javo Design System Tokens (Mirrored from dashboard.css) */
  --javo-primary: #2563eb;
  --javo-primary-hover: #1d4ed8;

  --javo-bg-app: #f8f7fa;
  --javo-bg-surface: #ffffff;
  --javo-bg-surface-alt: #f1f5f9;

  --javo-text-primary: #1e293b;
  --javo-text-secondary: #64748b;

  --javo-border-default: #e2e8f0;
}

/* Layout stability improvements - admin bar spacing only when logged in */
body {
  margin: 0 !important;
  margin-top: 0 !important;
  /* Prevent double margin with html element */
}

/* Custom base styles for the Javo wrapper */
.javo-listings {

  /* Reset some WordPress defaults within our scope */
  * {
    box-sizing: border-box;
  }
}

/* Header stability and layout reservation */
.javo-custom-header {
  position: relative !important;
  z-index: 1000 !important;
  min-height: 60px !important;
  margin: 0 !important;
  display: block !important;
  width: 100% !important;
  /* Prevent content jumping during load */
  contain: layout style !important;
  /* Reserve space immediately */
  visibility: visible !important;
}

/* Elementor layout stability */
.elementor-section {
  margin: 0 !important;
}

.elementor-container {
  min-height: inherit !important;
}

/* SVG Icon - object-fit utility is not provided by Tailwind */
.javo-term-icon-svg,
.javo-taxonomy-icon img {
  object-fit: contain;
}

.javo-term-icon-svg {
  display: block;
  flex-shrink: 0;
}

.javo-taxonomy-detail-card .javo-taxonomy-icon,
.javo-taxonomy-card .javo-taxonomy-icon,
.javo-taxonomy-iconlist-item .javo-taxonomy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}

.dark .javo-taxonomy-detail-card .javo-taxonomy-icon,
.dark .javo-taxonomy-card .javo-taxonomy-icon,
.dark .javo-taxonomy-iconlist-item .javo-taxonomy-icon {
  padding: 0.875rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 9999px;
  background-color: rgba(148, 163, 184, 0.1);
}

.dark .javo-taxonomy-detail-card .javo-taxonomy-icon i,
.dark .javo-taxonomy-card .javo-taxonomy-icon i,
.dark .javo-taxonomy-iconlist-item .javo-taxonomy-icon i {
  color: #f8fafc !important;
}

.dark .javo-taxonomy-detail-card .javo-taxonomy-icon > svg,
.dark .javo-taxonomy-card .javo-taxonomy-icon > svg,
.dark .javo-taxonomy-iconlist-item .javo-taxonomy-icon > svg,
.dark .javo-taxonomy-detail-card .javo-taxonomy-icon .javo-term-icon-svg,
.dark .javo-taxonomy-card .javo-taxonomy-icon .javo-term-icon-svg,
.dark .javo-taxonomy-iconlist-item .javo-taxonomy-icon .javo-term-icon-svg {
  filter: brightness(0) saturate(100%) invert(100%);
}

/* WordPress admin specific overrides */
@media (max-width: 640px) {
  .javo-listings {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .javo-listings {
    --brand-color: #000080;
  }
}

/* PostBlock item accent helpers (dot/border/bg via CSS variables) */
.javo-post-item[data-javo-postblock-accent] .javo-postblock-accent-dot .javo-post-meta-icon,
.javo-post-item[data-javo-postblock-accent] .javo-postblock-accent-dot .javo-post-meta-icon i,
.javo-post-item[data-javo-postblock-accent] .javo-postblock-accent-dot .javo-post-meta-icon svg,
.javo-post-item[data-javo-postblock-accent] .javo-postblock-accent-dot i,
.javo-post-item[data-javo-postblock-accent] .javo-postblock-accent-dot svg,
.javo-post-item[data-javo-postblock-accent] .javo-postblock-accent-dot.javo-post-meta-icon,
.javo-post-item[data-javo-postblock-accent] .javo-postblock-accent-dot.javo-post-meta-icon i,
.javo-post-item[data-javo-postblock-accent] .javo-postblock-accent-dot.javo-post-meta-icon svg {
  color: var(--javo-postblock-accent-dot) !important;
  fill: var(--javo-postblock-accent-dot) !important;
}

.javo-post-item[data-javo-postblock-accent] .javo-postblock-accent-dot .javo-post-meta-content {
  flex-wrap: nowrap !important;
}

.javo-post-item[data-javo-postblock-accent] .javo-postblock-accent-border,
.javo-post-item[data-javo-postblock-accent] .javo-postblock-accent-border>.e-con-inner {
  border-color: var(--javo-postblock-accent-border) !important;
}

.javo-post-item[data-javo-postblock-accent] .javo-postblock-accent-bg,
.javo-post-item[data-javo-postblock-accent] .javo-postblock-accent-bg>.e-con-inner {
  background-color: var(--javo-postblock-accent-bg) !important;
}

/* Listing scheduler meta display */
.javo-listing-scheduler-range {
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
  align-items: center;
  gap: 0.35rem;
  vertical-align: middle;
}

.javo-listing-scheduler-range__date {
  min-width: 0;
  overflow-wrap: anywhere;
}

/* Date Range display presets for compact event cards. */
.javo-date-range-stacked {
  display: inline-flex;
  min-width: 2.75rem;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  text-align: center;
  line-height: 1;
  vertical-align: middle;
}

.javo-date-range-stacked__day {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 0.95;
}

.javo-date-range-stacked__month {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.1;
}

.javo-date-range-stacked--month-day .javo-date-range-stacked__month {
  font-size: 1rem;
  font-weight: 600;
}

.javo-date-range-stacked--month-day .javo-date-range-stacked__day {
  font-size: 2.05rem;
}

.javo-listing-scheduler-range__separator {
  flex: 0 0 auto;
  color: #64748b;
}

.javo-listing-scheduler-progress {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  color: #0f172a;
}

.javo-listing-scheduler-progress__labels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1.35;
}

.javo-listing-scheduler-progress__labels--dates {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.javo-listing-scheduler-progress__date,
.javo-listing-scheduler-progress__percent {
  min-width: 0;
  overflow-wrap: anywhere;
}

.javo-listing-scheduler-progress__date--end {
  text-align: right;
}

.javo-listing-scheduler-progress__percent {
  color: #475569;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.javo-listing-scheduler-progress__track {
  position: relative;
  height: 8px;
  width: 100%;
  overflow: hidden;
  border-radius: 999px;
  background-color: #e2e8f0;
}

.javo-listing-scheduler-progress__bar {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  min-width: 0;
  max-width: 100%;
  border-radius: inherit;
  background-color: #0f172a;
}

.javo-listing-scheduler-progress--upcoming .javo-listing-scheduler-progress__bar {
  background-color: #4f46e5;
}

.javo-listing-scheduler-progress--expired .javo-listing-scheduler-progress__bar {
  background-color: #94a3b8;
}

.javo-listing-scheduler-progress__metric {
  min-width: 0;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
}

.javo-listing-scheduler-progress__details {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 12px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.35;
}

.javo-listing-scheduler-status {
  display: inline-flex;
  max-width: 100%;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  vertical-align: middle;
}

.javo-listing-scheduler-status__label {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  background-color: #e2e8f0;
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.javo-listing-scheduler-status--active .javo-listing-scheduler-status__label {
  background-color: #dcfce7;
  color: #166534;
}

.javo-listing-scheduler-status--upcoming .javo-listing-scheduler-status__label {
  background-color: #eef2ff;
  color: #3730a3;
}

.javo-listing-scheduler-status--expired .javo-listing-scheduler-status__label {
  background-color: #f1f5f9;
  color: #475569;
}

.javo-listing-scheduler-status__meta {
  min-width: 0;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .javo-listings * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Hide page header when Javo Listings is active */
.page-header {
  display: none !important;
}

/* Keep Javo Listings plugin layout pages full-height while preserving the footer's own height. */
body.javo-plugin-layout-managed {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Compensate WordPress admin bar offset for logged-in users. */
body.admin-bar.javo-plugin-layout-managed {
  min-height: calc(100vh - 32px);
  min-height: calc(100dvh - 32px);
}

@media screen and (max-width: 782px) {
  body.admin-bar.javo-plugin-layout-managed {
    min-height: calc(100vh - 46px);
    min-height: calc(100dvh - 46px);
  }
}

@media screen and (max-width: 600px) {
  body.admin-bar.javo-plugin-layout-managed {
    min-height: 100vh;
    min-height: 100dvh;
  }
}

body.javo-plugin-layout-managed > .header.header-elementor,
body.javo-plugin-layout-managed > .footer.footer-elementor,
body.javo-plugin-layout-managed > .jvbpd-page-builder-footer {
  flex: 0 0 auto;
}

body.javo-plugin-layout-managed > .footer.footer-elementor,
body.javo-plugin-layout-managed > .jvbpd-page-builder-footer {
  margin-top: auto;
}

body.javo-plugin-layout-managed > .javo-plugin-layout__main {
  flex: 1 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
  align-self: stretch;
}

/* Plugin layout 404 screen. */
.javo-plugin-layout__not-found {
  min-height: 520px;
  min-height: max(520px, calc(100dvh - 220px));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  color: #0f172a;
}

.javo-plugin-layout__not-found-shell {
  width: min(720px, 100%);
  padding: clamp(24px, 5vw, 44px) 0;
  text-align: center;
  transform: translateY(-12%);
}

.javo-plugin-layout__not-found .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.javo-plugin-layout__not-found-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.javo-plugin-layout__not-found-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 18px;
  line-height: 1;
}

.javo-plugin-layout__not-found-code {
  display: block;
  color: #0f172a;
  font-size: clamp(56px, 9vw, 84px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
}

.javo-plugin-layout__not-found-title {
  margin: 18px 0 0;
  color: #0f172a;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: 0;
}

.javo-plugin-layout__not-found-description {
  max-width: 560px;
  margin: 16px auto 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.65;
}

.javo-plugin-layout__not-found-search {
  max-width: 580px;
  margin: 28px auto 0;
}

.javo-plugin-layout__not-found-search-box {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.javo-plugin-layout__not-found-search-icon {
  flex: 0 0 auto;
  color: #94a3b8;
  font-size: 21px;
  line-height: 1;
}

.javo-plugin-layout__not-found-search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 42px;
  border: 0;
  background: transparent;
  color: #0f172a;
  font-size: 15px;
  line-height: 1.4;
  outline: 0;
  appearance: none;
}

.javo-plugin-layout__not-found-search-input::placeholder {
  color: #94a3b8;
}

.javo-plugin-layout__not-found-search-button,
.javo-plugin-layout__not-found-home {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.javo-plugin-layout__not-found-search-button {
  flex: 0 0 auto;
  border: 1px solid #111827;
  background: #111827;
  padding: 0 18px;
  color: #ffffff;
}

.javo-plugin-layout__not-found-search-button:hover,
.javo-plugin-layout__not-found-search-button:focus-visible {
  border-color: #334155;
  background: #334155;
  color: #ffffff;
}

.javo-plugin-layout__not-found-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.javo-plugin-layout__not-found-home {
  border: 1px solid #d8e1eb;
  background: #f3f6fa;
  padding: 0 16px;
  color: #0f172a;
}

.javo-plugin-layout__not-found-home:hover,
.javo-plugin-layout__not-found-home:focus-visible {
  border-color: #cbd5e1;
  background: #e9eff6;
  color: #020617;
}

.javo-plugin-layout__not-found-search-button:focus-visible,
.javo-plugin-layout__not-found-home:focus-visible,
.javo-plugin-layout__not-found-search-input:focus-visible {
  outline: 2px solid #bfdbfe;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .javo-plugin-layout__not-found {
    align-items: flex-start;
    min-height: 520px;
    padding: 36px 14px;
  }

  .javo-plugin-layout__not-found-shell {
    padding: 20px 0;
    transform: none;
  }

  .javo-plugin-layout__not-found-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .javo-plugin-layout__not-found-search-box {
    flex-wrap: wrap;
    align-items: stretch;
    padding: 12px;
  }

  .javo-plugin-layout__not-found-search-icon {
    display: inline-flex;
    width: 28px;
    height: 42px;
    align-items: center;
    justify-content: center;
  }

  .javo-plugin-layout__not-found-search-input {
    flex: 1 1 calc(100% - 38px);
  }

  .javo-plugin-layout__not-found-search-button,
  .javo-plugin-layout__not-found-home {
    width: 100%;
  }
}

/* Plugin layout archive and search screens. */
.javo-plugin-layout__archive {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 56px 20px 72px;
  color: #0f172a;
}

.javo-plugin-layout__archive-header {
  margin-bottom: 28px;
}

.javo-plugin-layout__archive-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.javo-plugin-layout__archive-kicker i {
  font-size: 18px;
}

.javo-plugin-layout__archive-heading {
  max-width: 760px;
  margin: 0;
  color: #0f172a;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 760;
  line-height: 1.18;
  letter-spacing: 0;
}

.javo-plugin-layout__archive-description {
  max-width: 720px;
  margin-top: 12px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.65;
}

.javo-plugin-layout__archive .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.javo-plugin-layout__archive-search {
  width: min(620px, 100%);
  margin-top: 22px;
}

.javo-plugin-layout__archive-search-box {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.javo-plugin-layout__archive-search-icon {
  flex: 0 0 auto;
  color: #94a3b8;
  font-size: 20px;
  line-height: 1;
}

.javo-plugin-layout__archive-search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 40px;
  border: 0;
  background: transparent;
  color: #0f172a;
  font-size: 15px;
  line-height: 1.4;
  outline: 0;
  appearance: none;
}

.javo-plugin-layout__archive-search-input::placeholder {
  color: #94a3b8;
}

.javo-plugin-layout__archive-search-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #111827;
  border-radius: 8px;
  background: #111827;
  padding: 0 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.javo-plugin-layout__archive-search-button:hover,
.javo-plugin-layout__archive-search-button:focus-visible {
  border-color: #334155;
  background: #334155;
  color: #ffffff;
}

.javo-plugin-layout__archive-list {
  display: grid;
  gap: 18px;
}

.javo-plugin-layout__archive-item {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.javo-plugin-layout__archive-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.javo-plugin-layout__archive-item--text-only {
  grid-template-columns: 1fr;
}

.javo-plugin-layout__archive-thumbnail {
  display: block;
  min-height: 180px;
  background: #f1f5f9;
}

.javo-plugin-layout__archive-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.javo-plugin-layout__archive-content {
  min-width: 0;
  padding: 22px 24px;
}

.javo-plugin-layout__archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

.javo-plugin-layout__archive-meta span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 8px 2px 0;
  border-radius: 999px;
  background: #cbd5e1;
}

.javo-plugin-layout__archive-title {
  margin: 0;
  font-size: 22px;
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: 0;
}

.javo-plugin-layout__archive-title a {
  color: #0f172a;
  text-decoration: none;
}

.javo-plugin-layout__archive-title a:hover,
.javo-plugin-layout__archive-title a:focus-visible {
  color: #2563eb;
}

.javo-plugin-layout__archive-excerpt {
  margin-top: 12px;
  color: #475569;
  font-size: 15px;
  line-height: 1.65;
}

.javo-plugin-layout__archive-excerpt p {
  margin: 0;
}

.javo-plugin-layout__archive-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: #111827;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
}

.javo-plugin-layout__archive-link:hover,
.javo-plugin-layout__archive-link:focus-visible {
  color: #2563eb;
}

.javo-plugin-layout__pagination {
  margin-top: 30px;
}

.javo-plugin-layout__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.javo-plugin-layout__pagination .page-numbers {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.javo-plugin-layout__pagination .page-numbers.current,
.javo-plugin-layout__pagination .page-numbers:hover,
.javo-plugin-layout__pagination .page-numbers:focus-visible {
  border-color: #cbd5e1;
  background: #eef2f7;
  color: #0f172a;
}

.javo-plugin-layout__empty {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
  color: #64748b;
  text-align: center;
}

.javo-plugin-layout__archive-search-button:focus-visible,
.javo-plugin-layout__archive-search-input:focus-visible,
.javo-plugin-layout__archive-title a:focus-visible,
.javo-plugin-layout__archive-link:focus-visible {
  outline: 2px solid #bfdbfe;
  outline-offset: 2px;
}

@media (max-width: 760px) {
  .javo-plugin-layout__archive {
    padding: 36px 14px 54px;
  }

  .javo-plugin-layout__archive-search-box {
    flex-wrap: wrap;
    align-items: stretch;
    padding: 12px;
  }

  .javo-plugin-layout__archive-search-icon {
    display: inline-flex;
    width: 28px;
    height: 40px;
    align-items: center;
    justify-content: center;
  }

  .javo-plugin-layout__archive-search-input {
    flex: 1 1 calc(100% - 38px);
  }

  .javo-plugin-layout__archive-search-button {
    width: 100%;
  }

  .javo-plugin-layout__archive-item {
    grid-template-columns: 1fr;
  }

  .javo-plugin-layout__archive-thumbnail,
  .javo-plugin-layout__archive-image {
    min-height: 210px;
  }

  .javo-plugin-layout__archive-content {
    padding: 20px;
  }

  .javo-plugin-layout__archive-title {
    font-size: 20px;
  }
}

/* ===================================
   Javo Date Box Styles
   =================================== */
.javo-date-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--javo-bg-app);
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 50px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.javo-date-box__day {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--javo-text-primary);
}

.javo-date-box__month {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--javo-text-secondary);
  line-height: 1.2;
}

.javo-date-box__year {
  font-size: 11px;
  font-weight: 400;
  color: var(--javo-text-secondary);
  line-height: 1.2;
}

.javo-date-box--with-year {
  padding: 6px 10px;
}

/* Taxonomy term link styles */
.javo-taxonomy-term {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.javo-taxonomy-term:hover {
  color: var(--e-global-color-primary, #3b82f6);
  text-decoration: underline;
}

.javo-taxonomy-comma-expand-wrapper {
  width: 100%;
}

.javo-taxonomy-comma-expand-content {
  overflow: hidden;
  line-height: 1.625;
}

.javo-taxonomy-list--comma-expand {
  display: inline;
  line-height: 1.625;
}

.javo-taxonomy-more-badge-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
  z-index: 2;
}

.javo-taxonomy-more-badge-wrapper--single {
  display: inline-block;
  width: auto;
}

.javo-taxonomy-more-badge-wrapper--inline {
  display: inline-flex;
  flex-wrap: wrap;
  width: auto;
  max-width: 100%;
  align-items: center;
  gap: 6px;
}

.javo-taxonomy-more-badge-wrapper--badge {
  display: inline-block;
  width: auto;
  max-width: 100%;
  vertical-align: middle;
}

.javo-taxonomy-more-badge-content {
  display: block;
  overflow: hidden;
  line-height: 1.625;
}

.javo-taxonomy-more-badge-wrapper--single .javo-taxonomy-more-badge-content {
  display: inline-flex;
  align-items: baseline;
  overflow: visible;
}

.javo-taxonomy-more-badge-wrapper--inline .javo-taxonomy-more-badge-content {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  overflow: visible;
  line-height: 1.25;
}

.javo-taxonomy-more-badge-wrapper--badge .javo-taxonomy-more-badge-content {
  display: inline-flex;
  overflow: visible;
  line-height: 1;
}

.javo-taxonomy-more-badge-wrapper:not([data-javo-taxonomy-more-badge-initialized="1"]):not(.javo-taxonomy-more-badge-wrapper--single) .javo-taxonomy-more-badge-content {
  max-height: calc(var(--javo-taxonomy-more-badge-max-lines, 2) * 1.625em + 2px);
  overflow: hidden;
}

.javo-taxonomy-more-badge-wrapper--inline:not([data-javo-taxonomy-more-badge-initialized="1"]) .javo-taxonomy-more-badge-content {
  max-height: none;
  overflow: visible;
}

.javo-taxonomy-more-badge-wrapper--badge:not([data-javo-taxonomy-more-badge-initialized="1"]) .javo-taxonomy-more-badge-content {
  max-height: none;
  overflow: visible;
}

.javo-taxonomy-more-badge-term {
  display: inline;
}

.javo-taxonomy-inline-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.javo-taxonomy-inline-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
}

.javo-taxonomy-inline-badge--more {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding-inline: 10px;
}

.javo-taxonomy-more-badge-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  margin-left: 0.375rem;
  padding: 0.125rem 0.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #334155;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
  vertical-align: baseline;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.javo-taxonomy-more-badge-toggle:hover,
.javo-taxonomy-more-badge-toggle[aria-expanded="true"] {
  background: #f8fafc;
  border-color: #94a3b8;
  color: #0f172a;
}

.javo-taxonomy-more-badge-toggle--circle {
  min-width: 2rem;
  border-radius: 9999px;
}

.javo-taxonomy-more-badge-wrapper--inline .javo-taxonomy-more-badge-toggle {
  margin-left: 0;
}

.javo-taxonomy-more-badge-wrapper--badge .javo-taxonomy-more-badge-toggle {
  margin-left: 0;
  cursor: pointer;
  font: inherit;
}

.javo-taxonomy-more-badge-wrapper:hover,
.javo-taxonomy-more-badge-wrapper:focus-within,
.javo-taxonomy-more-badge-wrapper[data-javo-taxonomy-more-badge-open="1"],
.javo-taxonomy-more-badge-wrapper[data-javo-taxonomy-more-badge-pinned="1"],
.javo-post-meta-info-popover-anchor:hover,
.javo-post-meta-info-popover-anchor:focus-within {
  z-index: 100000;
}

.javo-taxonomy-popover-layer-active {
  position: relative !important;
  z-index: 100020 !important;
  overflow: visible !important;
}

.javo-taxonomy-popover-layer-active .javo-map-list-card,
.javo-taxonomy-popover-layer-active .elementor,
.javo-taxonomy-popover-layer-active .elementor-widget-container,
.javo-taxonomy-popover-layer-active .e-con,
.javo-taxonomy-popover-layer-active .javo-post-meta-wrapper,
.javo-taxonomy-popover-layer-active .javo-post-meta-content,
.javo-taxonomy-popover-layer-active .javo-post-meta-value {
  overflow: visible !important;
}

.javo-taxonomy-more-badge-popover {
  position: absolute;
  z-index: 100001;
  top: calc(100% + 0.5rem);
  left: 0;
  width: min(24rem, 100%);
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #334155;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
  padding: 0.75rem;
  max-width: calc(100vw - 1.5rem);
  pointer-events: auto;
}

.javo-taxonomy-more-badge-wrapper--single .javo-taxonomy-more-badge-popover {
  width: min(28rem, calc(100vw - 2rem));
}

.javo-taxonomy-more-badge-wrapper--inline .javo-taxonomy-more-badge-popover {
  width: min(22rem, calc(100vw - 2rem));
}

.javo-taxonomy-more-badge-wrapper--badge .javo-taxonomy-more-badge-popover {
  width: min(22rem, calc(100vw - 2rem));
}

.javo-taxonomy-more-badge-popover[data-placement="top"] {
  top: auto;
  bottom: calc(100% + 0.5rem);
}

.javo-taxonomy-more-badge-popover[data-placement="right"] {
  top: 0;
  left: calc(100% + 0.5rem);
}

.javo-taxonomy-more-badge-popover[data-placement="bottom"] {
  top: calc(100% + 0.5rem);
  bottom: auto;
}

.javo-taxonomy-more-badge-popover[data-placement="left"] {
  top: 0;
  right: calc(100% + 0.5rem);
  left: auto;
}

.javo-taxonomy-more-badge-popover-title {
  margin-bottom: 0.5rem;
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 600;
}

.javo-taxonomy-more-badge-popover-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.javo-taxonomy-more-badge-popover-item {
  display: inline-flex;
  align-items: center;
  border-radius: 0.375rem;
  background: #f1f5f9;
  padding: 0.25rem 0.5rem;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.25;
}

.javo-post-meta-info-popover {
  z-index: 100001 !important;
}

.elementor-widget-javo-post-meta,
.elementor-widget-javo-post-meta > .elementor-widget-container,
.elementor-widget-javo-post-block,
.elementor-widget-javo-post-block > .elementor-widget-container {
  overflow: visible !important;
}

.javo-post-item:has(.javo-taxonomy-more-badge-popover),
.javo-post-item:has(.javo-post-meta-info-popover),
.javo-card-module:has(.javo-taxonomy-more-badge-popover),
.javo-card-module:has(.javo-post-meta-info-popover),
.module-card:has(.javo-taxonomy-more-badge-popover),
.module-card:has(.javo-post-meta-info-popover),
.card-content:has(.javo-taxonomy-more-badge-popover),
.card-content:has(.javo-post-meta-info-popover),
.javo-post-block:has(.javo-taxonomy-more-badge-popover),
.javo-post-block:has(.javo-post-meta-info-popover) {
  overflow: visible !important;
}

.javo-child-listings-info {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  max-width: 100%;
}

.javo-child-listings-info--amount-with-items {
  flex-wrap: wrap;
}

.javo-child-listings-info__amount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  border-radius: 9999px;
  background: #e0f2fe;
  padding: 0.125rem 0.625rem;
  color: #0369a1;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
}

.javo-child-listings-info__amount-button {
  margin-left: 0;
}

.javo-child-listings-info__link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.javo-child-listings-info__link:hover,
.javo-child-listings-info__link:focus {
  color: #0f172a;
  text-decoration: none;
}

.javo-child-listings-info__items {
  min-width: 0;
  flex: 1 1 12rem;
}

.javo-child-listings-info__list {
  display: inline-block;
  vertical-align: baseline;
}

.javo-taxonomy-iconlist-expand-collapse {
  grid-column: 1 / -1;
  width: 100%;
}

.javo-taxonomy-iconlist-expand-collapse:not(.hidden) {
  display: block;
}

.javo-taxonomy-iconlist-expand-inner {
  display: grid;
}

.javo-taxonomy-iconlist-expand-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1rem;
}

.javo-taxonomy-iconlist-expand-wrap--small {
  margin-top: 0.5rem;
  justify-content: flex-start;
}

.javo-taxonomy-iconlist-expand-wrap--full-width {
  width: 100%;
  margin-top: 1.5rem;
  justify-content: center;
  gap: 0;
}

.javo-taxonomy-iconlist-expand-divider {
  display: none;
  flex: 1 1 0%;
  height: 1px;
  background: #d1d5db;
}

.javo-taxonomy-iconlist-expand-wrap--full-width .javo-taxonomy-iconlist-expand-divider {
  display: block;
}

.javo-taxonomy-iconlist-expand-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #334155;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.javo-taxonomy-iconlist-expand-toggle--small {
  min-width: 0;
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

.javo-taxonomy-iconlist-expand-toggle--full-width {
  min-width: 200px;
  border-radius: 9999px;
  border-color: #d1d5db;
  color: #6b7280;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  font-weight: 400;
}

.javo-taxonomy-iconlist-expand-toggle:hover,
.javo-taxonomy-iconlist-expand-toggle[aria-expanded="true"] {
  background: #f8fafc;
}

.javo-taxonomy-iconlist-toggle-label--expanded {
  display: none;
}

.javo-taxonomy-iconlist-expand-toggle[aria-expanded="true"] .javo-taxonomy-iconlist-toggle-label--collapsed {
  display: none;
}

.javo-taxonomy-iconlist-expand-toggle[aria-expanded="true"] .javo-taxonomy-iconlist-toggle-label--expanded {
  display: inline;
}

.javo-taxonomy-iconlist-toggle-icon {
  transition: transform 200ms ease;
}

.javo-taxonomy-iconlist-expand-toggle[aria-expanded="true"] .javo-taxonomy-iconlist-toggle-icon {
  transform: rotate(180deg);
}

.jv-dynamic-expand-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1rem;
}

.jv-dynamic-expand-toggle-wrap-full-width {
  width: 100%;
  margin-top: 1.5rem;
  justify-content: center;
  gap: 0;
}

.jv-dynamic-expand-divider {
  display: none;
  flex: 1 1 0%;
  height: 1px;
  background: #d1d5db;
}

.jv-dynamic-expand-toggle-wrap-full-width .jv-dynamic-expand-divider {
  display: block;
}

.jv-dynamic-expand-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #334155;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.jv-dynamic-expand-toggle-full-width {
  min-width: 200px;
  border-radius: 9999px;
  border-color: #d1d5db;
  color: #111827;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  font-weight: 600;
}

.jv-dynamic-expand-toggle:hover,
.jv-dynamic-expand-toggle[aria-expanded="true"] {
  background: #f8fafc;
}

.jv-field-radius-5 {
  border-radius: 5px !important;
}

.jv-field-radius-5-left {
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.jv-field-radius-5-right {
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.submit-form-wrapper input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="range"]),
.submit-form-wrapper textarea,
.submit-form-wrapper select,
.submit-form-wrapper .ts-wrapper.single .ts-control,
.submit-form-wrapper .ts-wrapper.multi .ts-control,
.submit-form-wrapper .ts-dropdown {
  border-radius: var(--jv-submit-field-radius, 0.5rem) !important;
}

.submit-form-wrapper button,
.submit-form-wrapper .jv-taxonomy-option,
.submit-form-wrapper .jv-taxonomy-badge,
.submit-form-wrapper .jv-taxonomy-thumb,
.submit-form-wrapper .jv-taxonomy-svg,
.submit-form-wrapper .javo-taxonomy-iconlist-expand-toggle {
  border-radius: var(--jv-submit-action-radius, 0.75rem) !important;
}

.submit-form-wrapper .jv-floating-field {
  --jv-floating-radius: var(--jv-submit-field-radius, 5px);
  --jv-floating-label-left: var(--jv-submit-field-control-padding-x, 0.875rem);
  --jv-floating-label-top: var(--jv-submit-field-floating-label-top, 0.78rem);
  --jv-floating-label-shift: var(--jv-submit-field-floating-label-shift, -0.62rem);
}

.submit-form-wrapper .jv-floating-field--outlined:is(.jv-floating-field--active, .jv-floating-field--focused) .jv-floating-field__label,
.submit-form-wrapper .jv-floating-field--filled:is(.jv-floating-field--active, .jv-floating-field--focused) .jv-floating-field__label {
  top: var(--jv-submit-field-floating-label-active-top, 0.42rem);
}

.submit-form-wrapper .jv-floating-field--filled > :is(input, select).jv-floating-field__control {
  min-height: var(--jv-submit-field-floating-control-height, 4.25rem) !important;
  padding-top: var(--jv-submit-field-floating-padding-top, 1.9rem) !important;
  padding-bottom: var(--jv-submit-field-floating-padding-bottom, 0.6rem) !important;
  padding-left: var(--jv-submit-field-control-padding-x, 0.875rem) !important;
  padding-right: var(--jv-submit-field-control-padding-x, 0.875rem) !important;
  background: var(--jv-submit-field-control-bg, #eff5fb) !important;
  background-color: var(--jv-submit-field-control-bg, #eff5fb) !important;
  border: 1px solid var(--jv-submit-field-border, #d7e0ea) !important;
  border-bottom-width: 2px !important;
  border-radius: var(--jv-submit-field-radius, 5px) !important;
  box-shadow: none !important;
}

.submit-form-wrapper .ts-wrapper.single .ts-control,
.submit-form-wrapper .ts-wrapper.multi .ts-control {
  background: var(--jv-submit-field-control-bg, #eff5fb) !important;
  background-color: var(--jv-submit-field-control-bg, #eff5fb) !important;
  border: 1px solid var(--jv-submit-field-border, #d7e0ea) !important;
  color: var(--jv-submit-field-text, #334155) !important;
  box-shadow: none !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  align-content: center !important;
  gap: var(--jv-submit-field-chip-gap, 0.375rem) !important;
  min-height: var(--jv-submit-field-control-height, 3rem) !important;
  padding: var(--jv-submit-field-control-padding-y, 0.5rem) var(--jv-submit-field-control-padding-x, 0.875rem) !important;
}

.submit-form-wrapper .ts-wrapper.jv-taxonomy-select .ts-control input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="range"]),
.submit-form-wrapper .ts-wrapper.single .ts-control input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="range"]),
.submit-form-wrapper .ts-wrapper.multi .ts-control input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="range"]) {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  width: auto !important;
  min-width: 3rem !important;
  max-width: 100% !important;
  flex: 1 0 4rem !important;
}

.submit-form-wrapper .ts-wrapper.jv-taxonomy-select .ts-control input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="range"]):focus,
.submit-form-wrapper .ts-wrapper.single .ts-control input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="range"]):focus,
.submit-form-wrapper .ts-wrapper.multi .ts-control input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="range"]):focus {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.submit-form-wrapper .ts-wrapper.focus .ts-control,
.submit-form-wrapper .ts-wrapper.single.focus .ts-control,
.submit-form-wrapper .ts-wrapper.multi.focus .ts-control,
.submit-form-wrapper .ts-wrapper.single .ts-control:focus-within,
.submit-form-wrapper .ts-wrapper.multi .ts-control:focus-within {
  border-color: var(--jv-submit-field-focus-border, #bcc8d6) !important;
  box-shadow: 0 0 0 3px var(--jv-submit-field-focus-ring, rgba(203, 213, 225, 0.38)) !important;
}

.submit-form-wrapper .jv-floating-field--taxonomy .ts-wrapper .ts-control {
  min-height: var(--jv-submit-field-floating-control-height, 4.25rem) !important;
  padding-top: var(--jv-submit-field-floating-padding-top, 1.9rem) !important;
  padding-bottom: var(--jv-submit-field-floating-padding-bottom, 0.6rem) !important;
  padding-left: var(--jv-submit-field-control-padding-x, 0.875rem) !important;
  padding-right: var(--jv-submit-field-control-padding-x, 0.875rem) !important;
  align-items: flex-start !important;
  align-content: flex-start !important;
}

.submit-form-wrapper .jv-floating-field--taxonomy.jv-floating-field--filled .ts-wrapper .ts-control {
  background: var(--jv-submit-field-control-bg, #eff5fb) !important;
  background-color: var(--jv-submit-field-control-bg, #eff5fb) !important;
  border: 1px solid var(--jv-submit-field-border, #d7e0ea) !important;
  border-bottom-width: 2px !important;
  border-radius: var(--jv-submit-field-radius, 5px) !important;
  box-shadow: none !important;
}

.submit-form-wrapper .jv-taxonomy-option {
  border-radius: var(--jv-submit-field-radius, 0.5rem) !important;
  border-width: 1px !important;
  border-style: solid !important;
  border-color: var(--jv-submit-field-border, #d7e0ea) !important;
  background: var(--jv-submit-field-bg, #ffffff) !important;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease !important;
  position: relative;
  min-height: calc(var(--jv-submit-field-control-height, 3rem) - 0.2rem);
}

.submit-form-wrapper .jv-taxonomy-checklist--grid {
  align-items: stretch !important;
}

.submit-form-wrapper .jv-taxonomy-checklist--tree {
  align-items: stretch !important;
  gap: 0.55rem !important;
  width: 100%;
}

.submit-form-wrapper .jv-taxonomy-option--has-description {
  align-items: flex-start !important;
  padding-top: 0.85rem !important;
  padding-bottom: 0.85rem !important;
}

.submit-form-wrapper .jv-taxonomy-checklist--tree .jv-taxonomy-option {
  --jv-taxonomy-depth-offset: calc(var(--jv-taxonomy-depth, 0) * 2.35rem);
  width: calc(100% - var(--jv-taxonomy-depth-offset)) !important;
  margin-left: var(--jv-taxonomy-depth-offset) !important;
  padding-left: 0.95rem !important;
}

.submit-form-wrapper .jv-taxonomy-checklist--tree .jv-taxonomy-option--has-children .jv-taxonomy-label {
  font-weight: 650 !important;
}

.submit-form-wrapper .jv-taxonomy-checklist--tree .jv-taxonomy-option--child {
  min-height: calc(var(--jv-submit-field-control-height, 3rem) - 0.45rem);
  background: color-mix(in srgb, var(--jv-submit-field-bg, #ffffff) 92%, #f8fafc 8%) !important;
}

.submit-form-wrapper .jv-taxonomy-tree-toggle,
.submit-form-wrapper .jv-taxonomy-tree-toggle-placeholder {
  display: inline-flex;
  width: 1.7rem;
  height: 1.7rem;
  flex: 0 0 1.7rem;
  align-items: center;
  justify-content: center;
}

.submit-form-wrapper .jv-taxonomy-tree-toggle {
  margin-left: -0.15rem;
  border: 1px solid var(--jv-submit-field-border, #d7e0ea);
  border-radius: 5px;
  background: #ffffff;
  color: #64748b;
  cursor: pointer;
  transition: border-color 0.16s ease, color 0.16s ease, background-color 0.16s ease;
}

.submit-form-wrapper .jv-taxonomy-tree-toggle:hover,
.submit-form-wrapper .jv-taxonomy-tree-toggle:focus-visible {
  border-color: var(--jv-submit-field-border-strong, #94a3b8);
  color: #0f172a;
  outline: none;
}

.submit-form-wrapper .jv-taxonomy-tree-toggle i {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.16s ease;
}

.submit-form-wrapper .jv-taxonomy-tree-toggle.is-expanded i {
  transform: rotate(90deg);
}

.submit-form-wrapper .jv-taxonomy-option__content {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
}

.submit-form-wrapper .jv-taxonomy-option__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-width: 0;
}

.submit-form-wrapper .jv-taxonomy-option__meta {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
  gap: 0.18rem;
}

.submit-form-wrapper .jv-taxonomy-label {
  display: block;
}

.submit-form-wrapper .jv-taxonomy-description {
  display: block;
  color: var(--jv-submit-field-helper, #64748b) !important;
  line-height: 1.45 !important;
}

.submit-form-wrapper .jv-taxonomy-count {
  flex-shrink: 0;
  align-self: center;
  margin-top: 0;
}

.submit-form-wrapper .jv-taxonomy-option--has-description .jv-taxonomy-option__content,
.submit-form-wrapper .jv-taxonomy-option--has-description .jv-taxonomy-option__header {
  align-items: flex-start !important;
}

.submit-form-wrapper .jv-taxonomy-option--has-description .jv-taxonomy-count {
  align-self: flex-start;
  margin-top: 0.05rem;
}

.submit-form-wrapper .jv-taxonomy-option--has-description .jv-taxonomy-badge,
.submit-form-wrapper .jv-taxonomy-option--has-description .jv-taxonomy-thumb,
.submit-form-wrapper .jv-taxonomy-option--has-description .jv-taxonomy-svg {
  margin-top: 0.12rem;
}

.submit-form-wrapper .jv-taxonomy-option.is-selected,
.submit-form-wrapper .jv-taxonomy-option:has(> .jv-taxonomy-input:checked),
.submit-form-wrapper .jv-taxonomy-option.is-selected:hover,
.submit-form-wrapper .jv-taxonomy-option:has(> .jv-taxonomy-input:checked):hover {
  border-color: var(--jv-submit-field-selection-border, #0369a1) !important;
  border-width: 1px !important;
  border-style: solid !important;
  background: var(--jv-submit-field-selection-bg, #f0f9ff) !important;
  box-shadow: none !important;
}

.submit-form-wrapper .jv-taxonomy-input--visible {
  accent-color: #0f172a !important;
}

.submit-form-wrapper .jv-taxonomy-option.is-selected .jv-taxonomy-badge,
.submit-form-wrapper .jv-taxonomy-option.is-selected .jv-taxonomy-thumb,
.submit-form-wrapper .jv-taxonomy-option.is-selected .jv-taxonomy-svg,
.submit-form-wrapper .jv-taxonomy-option:has(> .jv-taxonomy-input:checked) .jv-taxonomy-badge,
.submit-form-wrapper .jv-taxonomy-option:has(> .jv-taxonomy-input:checked) .jv-taxonomy-thumb,
.submit-form-wrapper .jv-taxonomy-option:has(> .jv-taxonomy-input:checked) .jv-taxonomy-svg {
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: none !important;
}

.submit-form-wrapper .jv-taxonomy-option--has-tooltip {
  overflow: visible !important;
}

.submit-form-wrapper .jv-taxonomy-option--has-tooltip::before,
.submit-form-wrapper .jv-taxonomy-option--has-tooltip::after {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 30;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.submit-form-wrapper .jv-taxonomy-option--has-tooltip::after {
  content: attr(data-jv-taxonomy-tooltip);
  max-width: min(18rem, calc(100vw - 2rem));
  border-radius: 0.4rem;
  background: rgba(15, 23, 42, 0.92);
  color: #ffffff;
  font-size: 0.72rem;
  line-height: 1.35;
  padding: 0.45rem 0.6rem;
  white-space: normal;
  text-align: left;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.submit-form-wrapper .jv-taxonomy-option--has-tooltip::before {
  content: '';
  border: 6px solid transparent;
}

.submit-form-wrapper .jv-taxonomy-option--has-tooltip[data-jv-taxonomy-tooltip-position="top"]::after,
.submit-form-wrapper .jv-taxonomy-option--has-tooltip:not([data-jv-taxonomy-tooltip-position])::after {
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translate(-50%, 4px);
}

.submit-form-wrapper .jv-taxonomy-option--has-tooltip[data-jv-taxonomy-tooltip-position="top"]::before,
.submit-form-wrapper .jv-taxonomy-option--has-tooltip:not([data-jv-taxonomy-tooltip-position])::before {
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  border-top-color: rgba(15, 23, 42, 0.92);
}

.submit-form-wrapper .jv-taxonomy-option--has-tooltip[data-jv-taxonomy-tooltip-position="bottom"]::after {
  left: 50%;
  top: calc(100% + 12px);
  transform: translate(-50%, -4px);
}

.submit-form-wrapper .jv-taxonomy-option--has-tooltip[data-jv-taxonomy-tooltip-position="bottom"]::before {
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-bottom-color: rgba(15, 23, 42, 0.92);
}

.submit-form-wrapper .jv-taxonomy-option--has-tooltip[data-jv-taxonomy-tooltip-position="left"]::after {
  right: calc(100% + 12px);
  top: 50%;
  transform: translate(4px, -50%);
}

.submit-form-wrapper .jv-taxonomy-option--has-tooltip[data-jv-taxonomy-tooltip-position="left"]::before {
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-left-color: rgba(15, 23, 42, 0.92);
}

.submit-form-wrapper .jv-taxonomy-option--has-tooltip[data-jv-taxonomy-tooltip-position="right"]::after {
  left: calc(100% + 12px);
  top: 50%;
  transform: translate(-4px, -50%);
}

.submit-form-wrapper .jv-taxonomy-option--has-tooltip[data-jv-taxonomy-tooltip-position="right"]::before {
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-right-color: rgba(15, 23, 42, 0.92);
}

.submit-form-wrapper .jv-taxonomy-option--has-tooltip:hover::before,
.submit-form-wrapper .jv-taxonomy-option--has-tooltip:hover::after,
.submit-form-wrapper .jv-taxonomy-option--has-tooltip:focus-within::before,
.submit-form-wrapper .jv-taxonomy-option--has-tooltip:focus-within::after {
  opacity: 1;
}

.submit-form-wrapper .jv-taxonomy-option--has-tooltip[data-jv-taxonomy-tooltip-position="top"]:hover::after,
.submit-form-wrapper .jv-taxonomy-option--has-tooltip[data-jv-taxonomy-tooltip-position="top"]:focus-within::after,
.submit-form-wrapper .jv-taxonomy-option--has-tooltip:not([data-jv-taxonomy-tooltip-position]):hover::after,
.submit-form-wrapper .jv-taxonomy-option--has-tooltip:not([data-jv-taxonomy-tooltip-position]):focus-within::after {
  transform: translate(-50%, 0);
}

.submit-form-wrapper .jv-taxonomy-option--has-tooltip[data-jv-taxonomy-tooltip-position="bottom"]:hover::after,
.submit-form-wrapper .jv-taxonomy-option--has-tooltip[data-jv-taxonomy-tooltip-position="bottom"]:focus-within::after {
  transform: translate(-50%, 0);
}

.submit-form-wrapper .jv-taxonomy-option--has-tooltip[data-jv-taxonomy-tooltip-position="left"]:hover::after,
.submit-form-wrapper .jv-taxonomy-option--has-tooltip[data-jv-taxonomy-tooltip-position="left"]:focus-within::after,
.submit-form-wrapper .jv-taxonomy-option--has-tooltip[data-jv-taxonomy-tooltip-position="right"]:hover::after,
.submit-form-wrapper .jv-taxonomy-option--has-tooltip[data-jv-taxonomy-tooltip-position="right"]:focus-within::after {
  transform: translate(0, -50%);
}

.submit-form-wrapper .jv-taxonomy-field-wrapper {
  position: relative;
}

.submit-form-wrapper .jv-taxonomy-field-wrapper .ts-wrapper.dropdown-active .ts-control,
.submit-form-wrapper .jv-taxonomy-field-wrapper .ts-wrapper.focus.dropdown-active .ts-control,
.submit-form-wrapper .jv-taxonomy-field-wrapper .ts-wrapper.dropdown-active .ts-control:focus-within {
  border-bottom-left-radius: 0.3rem !important;
  border-bottom-right-radius: 0.3rem !important;
  border-bottom-color: transparent !important;
  background: var(--jv-submit-field-control-bg, #eff5fb) !important;
}

.submit-form-wrapper .jv-taxonomy-field-wrapper .ts-dropdown {
  margin-top: -1px !important;
  border-color: var(--jv-submit-field-border, #d7e0ea) !important;
  border-radius: 0 0 var(--jv-submit-field-radius, 5px) var(--jv-submit-field-radius, 5px) !important;
  background: var(--jv-submit-field-bg, #ffffff) !important;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08) !important;
  overflow: hidden !important;
}

.submit-form-wrapper .jv-taxonomy-field-wrapper .ts-dropdown-content {
  padding: 0.2rem 0 !important;
}

.submit-form-wrapper .jv-taxonomy-field-wrapper .ts-dropdown .option,
.submit-form-wrapper .jv-taxonomy-field-wrapper .ts-dropdown .no-results {
  padding: 0.6rem 0.85rem !important;
  border-top: 1px solid rgba(215, 224, 234, 0.75) !important;
}

.submit-form-wrapper .jv-taxonomy-field-wrapper .ts-dropdown .option:first-child,
.submit-form-wrapper .jv-taxonomy-field-wrapper .ts-dropdown .no-results:first-child {
  border-top: 0 !important;
}

.submit-form-wrapper .ts-wrapper.multi .ts-control > div,
.submit-form-wrapper .ts-wrapper.single .ts-control > div.item,
.submit-form-wrapper .ts-wrapper.single .ts-control > .item,
.submit-form-wrapper .ts-wrapper.multi .ts-control > div.item,
.submit-form-wrapper .ts-wrapper.multi .ts-control [data-value] {
  display: inline-flex !important;
  align-items: center !important;
  font-size: var(--jv-submit-field-chip-font-size, calc(var(--jv-submit-field-font-size) - 1px)) !important;
  background: var(--jv-submit-field-bg-soft, #f8fafc) !important;
  background-color: var(--jv-submit-field-bg-soft, #f8fafc) !important;
  background-image: none !important;
  border: 1px solid var(--jv-submit-field-border, #d7e0ea) !important;
  color: var(--jv-submit-field-text, #334155) !important;
  text-shadow: none !important;
  box-shadow: none !important;
  border-radius: var(--jv-submit-field-chip-radius, 5px) !important;
  min-height: 2rem !important;
  padding: var(--jv-submit-field-chip-padding-y, 0.2rem) var(--jv-submit-field-chip-padding-x, 0.625rem) !important;
  margin: 0.125rem 0.25rem 0.125rem 0 !important;
}

.submit-form-wrapper .ts-wrapper.multi .ts-control > div.active,
.submit-form-wrapper .ts-wrapper.single .ts-control > div.item.active,
.submit-form-wrapper .ts-wrapper.single .ts-control > .item.active,
.submit-form-wrapper .ts-wrapper.multi .ts-control > div.item.active {
  background: var(--jv-submit-field-bg-muted, #eff5fb) !important;
  background-color: var(--jv-submit-field-bg-muted, #eff5fb) !important;
  border-color: var(--jv-submit-field-border-strong, #bcc8d6) !important;
  color: var(--jv-submit-field-heading, #0f172a) !important;
}

.submit-form-wrapper .ts-wrapper.plugin-remove_button .item {
  display: inline-flex !important;
  align-items: center !important;
}

.submit-form-wrapper .ts-wrapper.plugin-remove_button .item:is(:hover, :focus-within) {
  padding-right: 0.28rem !important;
}

.submit-form-wrapper .ts-wrapper.multi.plugin-remove_button .ts-control > div.item:is(:hover, :focus-within),
.submit-form-wrapper .ts-wrapper.multi.plugin-remove_button .ts-control [data-value]:is(:hover, :focus-within) {
  padding-right: 0.28rem !important;
}

.submit-form-wrapper .ts-wrapper.plugin-remove_button .item .remove {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: center !important;
  box-sizing: border-box !important;
  width: 0 !important;
  max-width: 0 !important;
  min-width: 0 !important;
  height: 1rem !important;
  max-height: 1rem !important;
  min-height: 1rem !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  padding: 0 !important;
  margin-left: 0 !important;
  line-height: 1 !important;
  border-left: 0 solid transparent !important;
  color: transparent !important;
  transform: translateX(-0.2rem) !important;
  transition: max-width 0.18s ease, opacity 0.18s ease, transform 0.18s ease, margin-left 0.18s ease, padding 0.18s ease, border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease !important;
}

.submit-form-wrapper .ts-wrapper.plugin-remove_button .item:is(:hover, :focus-within) .remove,
.submit-form-wrapper .ts-wrapper.plugin-remove_button .item .remove:focus {
  width: 1rem !important;
  max-width: 1rem !important;
  min-width: 1rem !important;
  height: 1rem !important;
  max-height: 1rem !important;
  min-height: 1rem !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  padding-left: 0 !important;
  margin-left: 0.12rem !important;
  border-left-width: 0 !important;
  border-left-color: transparent !important;
  color: var(--jv-submit-field-helper, #64748b) !important;
  transform: translateX(0) !important;
}

.submit-form-wrapper .ts-wrapper.plugin-remove_button .item .remove:hover {
  background: var(--jv-submit-field-bg-muted, #eff5fb) !important;
  color: var(--jv-submit-field-heading, #0f172a) !important;
}

.submit-form-wrapper .ts-dropdown .active,
.submit-form-wrapper .ts-dropdown .create:hover,
.submit-form-wrapper .ts-dropdown .option:hover {
  background: var(--jv-submit-field-bg-soft, #f8fafc) !important;
  color: var(--jv-submit-field-heading, #0f172a) !important;
}

.javo-post-meta-logo-shell {
  position: relative;
  overflow: visible;
}

.javo-post-meta-logo-shell--has-membership {
  isolation: isolate;
  width: fit-content;
  max-width: 100%;
}

.javo-post-meta-logo-membership {
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(32%, -32%);
  outline: none;
}

.javo-post-meta-logo-membership__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 2px solid #facc15;
  border-radius: 999px;
  background: #fef3c7;
  color: #b45309;
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.2), 0 0 0 3px #fff;
}

.javo-post-meta-logo-membership__badge i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  font-size: 13px;
  line-height: 1;
}

.javo-post-meta-logo-membership__popover {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 170px;
  max-width: min(240px, calc(100vw - 24px));
  padding: 11px 13px;
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  text-align: left;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  pointer-events: none;
}

.javo-post-meta-logo-membership__popover::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 10px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #dbe4f0;
  border-left: 1px solid #dbe4f0;
  background: #fff;
  transform: rotate(45deg);
}

.javo-post-meta-logo-membership:hover .javo-post-meta-logo-membership__popover,
.javo-post-meta-logo-membership:focus .javo-post-meta-logo-membership__popover,
.javo-post-meta-logo-membership:focus-within .javo-post-meta-logo-membership__popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.javo-post-meta-logo-membership__popover-title {
  color: #0f172a;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.25;
}

.javo-post-meta-logo-membership__popover-description {
  color: #475569;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.35;
}

.javo-author-avatar-membership--placement-top .javo-author-avatar-membership__popover,
.javo-post-meta-logo-membership--placement-top .javo-post-meta-logo-membership__popover {
  top: auto;
  right: 0;
  bottom: calc(100% + 9px);
  left: auto;
  transform: translateY(4px);
}

.javo-author-avatar-membership--placement-top .javo-author-avatar-membership__popover::before,
.javo-post-meta-logo-membership--placement-top .javo-post-meta-logo-membership__popover::before {
  top: auto;
  right: 10px;
  bottom: -5px;
  left: auto;
  border-top: 0;
  border-right: 1px solid #dbe4f0;
  border-bottom: 1px solid #dbe4f0;
  border-left: 0;
}

.javo-author-avatar-membership--placement-bottom .javo-author-avatar-membership__popover,
.javo-post-meta-logo-membership--placement-bottom .javo-post-meta-logo-membership__popover {
  top: calc(100% + 9px);
  right: 0;
  bottom: auto;
  left: auto;
  transform: translateY(-4px);
}

.javo-author-avatar-membership--placement-bottom .javo-author-avatar-membership__popover::before,
.javo-post-meta-logo-membership--placement-bottom .javo-post-meta-logo-membership__popover::before {
  top: -5px;
  right: 10px;
  bottom: auto;
  left: auto;
  border-top: 1px solid #dbe4f0;
  border-right: 0;
  border-bottom: 0;
  border-left: 1px solid #dbe4f0;
}

.javo-author-avatar-membership--placement-left .javo-author-avatar-membership__popover,
.javo-post-meta-logo-membership--placement-left .javo-post-meta-logo-membership__popover {
  top: 50%;
  right: calc(100% + 9px);
  bottom: auto;
  left: auto;
  transform: translateY(-50%) translateX(4px);
}

.javo-author-avatar-membership--placement-left .javo-author-avatar-membership__popover::before,
.javo-post-meta-logo-membership--placement-left .javo-post-meta-logo-membership__popover::before {
  top: 50%;
  right: -5px;
  bottom: auto;
  left: auto;
  border-top: 1px solid #dbe4f0;
  border-right: 1px solid #dbe4f0;
  border-bottom: 0;
  border-left: 0;
  transform: translateY(-50%) rotate(45deg);
}

.javo-author-avatar-membership--placement-right .javo-author-avatar-membership__popover,
.javo-post-meta-logo-membership--placement-right .javo-post-meta-logo-membership__popover {
  top: 50%;
  right: auto;
  bottom: auto;
  left: calc(100% + 9px);
  transform: translateY(-50%) translateX(-4px);
}

.javo-author-avatar-membership--placement-right .javo-author-avatar-membership__popover::before,
.javo-post-meta-logo-membership--placement-right .javo-post-meta-logo-membership__popover::before {
  top: 50%;
  right: auto;
  bottom: auto;
  left: -5px;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #dbe4f0;
  border-left: 1px solid #dbe4f0;
  transform: translateY(-50%) rotate(45deg);
}

.javo-author-avatar-membership--placement-top:hover .javo-author-avatar-membership__popover,
.javo-author-avatar-membership--placement-top:focus .javo-author-avatar-membership__popover,
.javo-author-avatar-membership--placement-top:focus-within .javo-author-avatar-membership__popover,
.javo-author-avatar-membership--placement-bottom:hover .javo-author-avatar-membership__popover,
.javo-author-avatar-membership--placement-bottom:focus .javo-author-avatar-membership__popover,
.javo-author-avatar-membership--placement-bottom:focus-within .javo-author-avatar-membership__popover,
.javo-post-meta-logo-membership--placement-top:hover .javo-post-meta-logo-membership__popover,
.javo-post-meta-logo-membership--placement-top:focus .javo-post-meta-logo-membership__popover,
.javo-post-meta-logo-membership--placement-top:focus-within .javo-post-meta-logo-membership__popover,
.javo-post-meta-logo-membership--placement-bottom:hover .javo-post-meta-logo-membership__popover,
.javo-post-meta-logo-membership--placement-bottom:focus .javo-post-meta-logo-membership__popover,
.javo-post-meta-logo-membership--placement-bottom:focus-within .javo-post-meta-logo-membership__popover {
  transform: translateY(0);
}

.javo-author-avatar-membership--placement-left:hover .javo-author-avatar-membership__popover,
.javo-author-avatar-membership--placement-left:focus .javo-author-avatar-membership__popover,
.javo-author-avatar-membership--placement-left:focus-within .javo-author-avatar-membership__popover,
.javo-author-avatar-membership--placement-right:hover .javo-author-avatar-membership__popover,
.javo-author-avatar-membership--placement-right:focus .javo-author-avatar-membership__popover,
.javo-author-avatar-membership--placement-right:focus-within .javo-author-avatar-membership__popover,
.javo-post-meta-logo-membership--placement-left:hover .javo-post-meta-logo-membership__popover,
.javo-post-meta-logo-membership--placement-left:focus .javo-post-meta-logo-membership__popover,
.javo-post-meta-logo-membership--placement-left:focus-within .javo-post-meta-logo-membership__popover,
.javo-post-meta-logo-membership--placement-right:hover .javo-post-meta-logo-membership__popover,
.javo-post-meta-logo-membership--placement-right:focus .javo-post-meta-logo-membership__popover,
.javo-post-meta-logo-membership--placement-right:focus-within .javo-post-meta-logo-membership__popover {
  transform: translateY(-50%) translateX(0);
}

.javo-event-hero-extra {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 680px;
  margin-top: 4px;
}

.javo-event-hero-extra .javo-post-meta-wrapper {
  width: 100%;
}

.javo-event-hero-tagline .javo-post-meta-value {
  color: #6b7280;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.javo-event-hero-date .javo-post-meta-content {
  gap: 8px;
}

.javo-event-hero-date .javo-post-meta-value {
  color: #4b5563;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.javo-event-contact-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.javo-event-contact-lines .elementor-widget-javo-post-meta,
.javo-event-contact-lines .javo-post-meta-wrapper {
  max-width: 100%;
  width: 100%;
}

.javo-event-contact-lines .javo-post-meta-content {
  align-items: flex-start;
  flex-wrap: nowrap;
  max-width: 100%;
}

.javo-event-contact-lines .javo-post-meta-value {
  max-width: 100%;
  min-width: 0;
}

.javo-event-contact-lines a.javo-post-meta-value,
.javo-event-contact-lines .javo-post-meta-value a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.javo-event-contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.javo-event-detail-facts {
  display: grid;
  gap: 12px;
}

.javo-event-detail-fact {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
}

.javo-event-detail-fact__label {
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
}

.javo-event-detail-fact__value {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.javo-event-detail-fact__list {
  margin: 0;
  padding-left: 1.1rem;
}

.javo-event-detail-fact__list li + li {
  margin-top: 4px;
}

.javo-event-main-gallery {
  margin: 24px 0;
}

.javo-event-main-gallery .javo-gallery-classic {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.javo-event-main-gallery .javo-gallery-item {
  min-width: 0;
}

@media (max-width: 767px) {
  body.single-lv_listing .e-con.e-grid:has(> .elementor-widget-javo-post-meta + .elementor-widget-javo-post-meta) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding-top: 16px !important;
  }

  body.single-lv_listing .e-con.e-grid:has(> .elementor-widget-javo-post-meta + .elementor-widget-javo-post-meta) > .elementor-widget-javo-post-meta {
    width: auto !important;
    min-width: 0;
  }

  body.single-lv_listing .e-con.e-grid:has(> .elementor-widget-javo-post-meta + .elementor-widget-javo-post-meta) .javo-post-meta-wrapper {
    min-height: 84px;
    padding-top: 18px;
    padding-bottom: 14px;
  }

  body.single-lv_listing [id^="spyscroll-"],
  body.single-lv_listing #jv-review-review {
    scroll-margin-top: 76px;
  }

  .javo-event-main-gallery .javo-gallery-classic {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 480px) {
  .javo-event-main-gallery .javo-gallery-classic {
    grid-template-columns: 1fr !important;
  }
}

body.single-lv_listing .elementor-3890 {
  --hg-detail-text: #111827;
  --hg-detail-muted: #64748b;
  --hg-detail-soft: #f8fafc;
  --hg-detail-chip: #f1f5f9;
  --hg-detail-border: #e5e7eb;
  --hg-detail-border-strong: #d6dbe3;
  --hg-detail-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  color: var(--hg-detail-text);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.single-lv_listing .elementor-3890 [id^="hg-"],
body.single-lv_listing .elementor-3890 #hg-review {
  scroll-margin-top: 104px;
}

body.single-lv_listing .elementor-3890 .hg-detail-header .elementor-container,
body.single-lv_listing .elementor-3890 .hg-detail-gallery .elementor-container,
body.single-lv_listing .elementor-3890 .hg-detail-summary .elementor-container,
body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .elementor-container,
body.single-lv_listing .elementor-3890 .hg-detail-main .elementor-container {
  max-width: 1120px;
  width: min(1120px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

body.single-lv_listing .elementor-3890 .hg-detail-summary:not(:has(.javo-post-meta-wrapper)),
body.single-lv_listing .elementor-3890 .hg-detail-fact-grid:not(:has(.javo-post-meta-wrapper)) {
  display: none;
}

body.single-lv_listing .elementor-3890 .hg-detail-info-block:not(:has(.javo-post-meta-wrapper)) {
  display: none;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-section:not(:has(.javo-post-meta-wrapper)) {
  display: none;
}

body.single-lv_listing .elementor-3890 .hg-detail-main-copy > .elementor-widget-wrap > .elementor-widget-heading:has(#hg-intro):has(+ .elementor-widget-javo-post-meta:not(:has(.javo-post-meta-wrapper))),
body.single-lv_listing .elementor-3890 .hg-detail-main-copy > .elementor-widget-wrap > .elementor-widget-heading:has(#hg-intro) + .elementor-widget-javo-post-meta:not(:has(.javo-post-meta-wrapper)),
body.single-lv_listing .elementor-3890 .hg-detail-main-copy > .elementor-widget-wrap > .elementor-widget-heading:has(#hg-intro) + .elementor-widget-javo-post-meta:not(:has(.javo-post-meta-wrapper)) + .elementor-widget-divider {
  display: none;
}

body.single-lv_listing .elementor-3890 .hg-detail-main-copy > .elementor-widget-wrap > #hg-intro.elementor-widget-heading:has(+ .elementor-widget-divider),
body.single-lv_listing .elementor-3890 .hg-detail-main-copy > .elementor-widget-wrap > #hg-intro.elementor-widget-heading + .elementor-widget-divider {
  display: none;
}

body.single-lv_listing .elementor-3890 .hg-detail-gallery {
  display: none;
}

body.single-lv_listing .elementor-3890 .hg-detail-gallery:has(.elementor-widget-wrap > .elementor-element) {
  display: block;
}

body.single-lv_listing .elementor-3890 .hg-detail-main > .elementor-container {
  align-items: flex-start;
  gap: 32px;
}

body.single-lv_listing .elementor-3890 .hg-detail-main-copy > .elementor-widget-wrap {
  gap: 0;
}

body.single-lv_listing .elementor-3890 .hg-detail-spy-nav {
  position: relative;
  z-index: 30;
  border: 0;
  background: #ffffff;
}

body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .elementor-widget-container,
body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .javo-spyscroll-menu {
  width: 100%;
}

body.single-lv_listing .elementor-3890 .hg-detail-spy-nav > .elementor-container,
body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .elementor-column,
body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .elementor-widget-wrap,
body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .elementor-widget-javo-post-meta {
  min-height: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .spyscroll-bar {
  padding: 0 !important;
  background: #ffffff !important;
}

body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .spyscroll-bar.sticky {
  border-bottom: 1px solid rgba(229, 231, 235, 0.75);
  box-shadow: none !important;
}

body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .spyscroll-bar-inner {
  gap: 8px !important;
}

body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .spyscroll-list {
  gap: 4px !important;
}

body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .spyscroll-link {
  padding: 11px 10px 10px !important;
  color: var(--hg-detail-muted);
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.2;
}

body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .spyscroll-icon {
  font-size: 15px;
}

body.single-lv_listing .elementor-3890 .hg-detail-summary > .elementor-container,
body.single-lv_listing .elementor-3890 .hg-detail-fact-grid > .elementor-container {
  display: grid;
  gap: 12px;
  align-items: stretch;
}

body.single-lv_listing .elementor-3890 .hg-detail-summary > .elementor-container {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.single-lv_listing .elementor-3890 .hg-detail-fact-grid > .elementor-container {
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
}

body.single-lv_listing .elementor-3890 .hg-detail-hero-stats > .elementor-container {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.single-lv_listing .elementor-3890 .hg-detail-summary .elementor-column,
body.single-lv_listing .elementor-3890 .hg-detail-fact-grid .elementor-column {
  width: auto !important;
  max-width: none !important;
  min-width: 0;
}

body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card {
  align-self: flex-start;
  height: fit-content;
}

body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card > .elementor-widget-wrap {
  align-content: flex-start;
  gap: 8px;
}

body.single-lv_listing .elementor-3890 .hg-detail-fact-card {
  display: none;
}

body.single-lv_listing .elementor-3890 .hg-detail-fact-card:has(> .elementor-widget-wrap > .elementor-element) {
  display: flex;
  min-height: 112px;
  border-color: var(--hg-detail-border-strong) !important;
  background: #ffffff;
}

body.single-lv_listing .elementor-3890 .hg-detail-fact-card > .elementor-widget-wrap {
  align-content: center;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 16px 14px !important;
  text-align: center;
}

body.single-lv_listing .elementor-3890 .hg-detail-fact-card .javo-post-meta-heading {
  width: 100%;
  color: var(--hg-detail-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

body.single-lv_listing .elementor-3890 .hg-detail-fact-card .javo-post-meta-heading-group {
  width: 100%;
  text-align: center;
}

body.single-lv_listing .elementor-3890 .hg-detail-fact-card .javo-post-meta-leading-block {
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

body.single-lv_listing .elementor-3890 .hg-detail-fact-card .javo-post-meta-leading-block__body {
  width: 100%;
  flex: none;
}

body.single-lv_listing .elementor-3890 .hg-detail-fact-card .javo-post-meta-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

body.single-lv_listing .elementor-3890 .hg-detail-fact-card .javo-post-meta-content {
  display: inline-flex;
  width: 100%;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

body.single-lv_listing .elementor-3890 .hg-detail-fact-card .javo-post-meta-value {
  color: var(--hg-detail-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

body.single-lv_listing .elementor-3890 .hg-detail-fact-card .javo-post-meta-suffix {
  color: var(--hg-detail-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
}

body.single-lv_listing .elementor-3890 .hg-detail-fact-card .javo-post-meta-icon--block-start {
  width: 30px;
  height: 30px;
  margin: 0 auto 2px;
  border-radius: 999px;
  background: var(--hg-detail-chip);
  color: #334155;
  font-size: 16px;
}

body.single-lv_listing .elementor-3890 .hg-detail-hero-stats .hg-detail-fact-card {
  min-height: 104px;
}

body.single-lv_listing .elementor-3890 .hg-detail-hero-stats .javo-post-meta-value {
  font-size: 22px;
}

body.single-lv_listing .elementor-3890 .hg-detail-main-copy > .elementor-widget-wrap > .elementor-widget-heading .elementor-heading-title,
body.single-lv_listing .elementor-3890 .hg-detail-info-block .elementor-heading-title,
body.single-lv_listing .elementor-3890 .hg-detail-list-section .elementor-heading-title {
  color: var(--hg-detail-text) !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
}

body.single-lv_listing .elementor-3890 .hg-detail-main-copy > .elementor-widget-wrap > .elementor-widget-javo-post-meta .javo-post-meta-value {
  color: #334155;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

body.single-lv_listing .elementor-3890 .hg-detail-main-copy .hg-detail-fact-card .javo-post-meta-value {
  color: var(--hg-detail-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

body.single-lv_listing .elementor-3890 .hg-detail-main-copy .hg-detail-hero-stats .javo-post-meta-value {
  font-size: 22px;
}

body.single-lv_listing .elementor-3890 .hg-detail-info-block {
  margin-top: 8px;
}

body.single-lv_listing .elementor-3890 .hg-detail-info-block .elementor-widget-divider,
body.single-lv_listing .elementor-3890 .hg-detail-list-section .elementor-widget-divider,
body.single-lv_listing .elementor-3890 .hg-detail-main-copy > .elementor-widget-wrap > .elementor-widget-divider {
  margin: 8px 0 34px;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-section {
  margin-top: 0;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-section > .elementor-container,
body.single-lv_listing .elementor-3890 .hg-detail-list-section > .elementor-container > .elementor-column,
body.single-lv_listing .elementor-3890 .hg-detail-list-section > .elementor-container > .elementor-column > .elementor-widget-wrap {
  width: 100%;
  max-width: none;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-section > .elementor-container > .elementor-column > .elementor-widget-wrap {
  gap: 0;
  padding: 0 !important;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-grid > .elementor-container {
  display: grid;
  align-items: stretch;
  gap: 0 36px;
  width: 100%;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-grid--two > .elementor-container {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.single-lv_listing .elementor-3890 .hg-detail-list-grid--one > .elementor-container {
  grid-template-columns: minmax(0, 1fr);
}

body.single-lv_listing .elementor-3890 .hg-detail-list-grid .elementor-column {
  width: auto !important;
  max-width: none !important;
  min-width: 0;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-item {
  display: none;
  min-width: 0;
  border-bottom: 1px solid var(--hg-detail-border);
}

body.single-lv_listing .elementor-3890 .hg-detail-list-item:has(.javo-post-meta-wrapper) {
  display: flex;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-item > .elementor-widget-wrap {
  align-content: flex-start;
  width: 100%;
  padding: 18px 0 !important;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-item .elementor-widget-javo-post-meta,
body.single-lv_listing .elementor-3890 .hg-detail-list-item .elementor-widget-container,
body.single-lv_listing .elementor-3890 .hg-detail-list-item .javo-post-meta,
body.single-lv_listing .elementor-3890 .hg-detail-list-item .javo-post-meta-leading-block {
  width: 100%;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-item .javo-post-meta-leading-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-item .javo-post-meta-icon--block-start {
  display: inline-flex;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  margin: 1px 0 0;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #f6f8fb;
  color: #334155;
  font-size: 17px;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-item .javo-post-meta-leading-block__body {
  flex: 1 1 auto;
  min-width: 0;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-item .javo-post-meta-heading,
body.single-lv_listing .elementor-3890 .hg-detail-list-item .javo-post-meta-heading-group {
  margin: 0;
  color: var(--hg-detail-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: left;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-item .javo-post-meta-wrapper {
  margin-top: 4px;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-item .javo-post-meta-content {
  display: flex;
  width: 100%;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 4px;
  text-align: left;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-item .javo-post-meta-value {
  color: var(--hg-detail-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-item .javo-post-meta-suffix {
  color: var(--hg-detail-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
}

body.single-lv_listing .elementor-3890 .hg-detail-course-list .javo-post-meta-value,
body.single-lv_listing .elementor-3890 .hg-detail-facility-list .javo-post-meta-value {
  font-size: 16px;
  font-weight: 500;
}

body.single-lv_listing .elementor-3890 .hg-detail-rate-list .hg-detail-list-item > .elementor-widget-wrap {
  padding: 16px 0 !important;
}

body.single-lv_listing .elementor-3890 .hg-detail-rate-list .javo-post-meta-leading-block__body {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(190px, auto);
  column-gap: 24px;
  align-items: baseline;
}

body.single-lv_listing .elementor-3890 .hg-detail-rate-list .javo-post-meta-heading-group {
  align-self: baseline;
}

body.single-lv_listing .elementor-3890 .hg-detail-rate-list .javo-post-meta-wrapper {
  justify-self: end;
  max-width: 430px;
  margin-top: 0;
  text-align: right;
}

body.single-lv_listing .elementor-3890 .hg-detail-rate-list .javo-post-meta-content {
  justify-content: flex-end;
  text-align: right;
}

body.single-lv_listing .elementor-3890 .hg-detail-rate-list .javo-post-meta-value {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

body.single-lv_listing .elementor-3890 .hg-detail-rate-list .javo-post-meta-suffix {
  white-space: nowrap;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-item .javo-taxonomy-inline-badges,
body.single-lv_listing .elementor-3890 .hg-detail-list-item .javo-taxonomy-inline-badges__content {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

body.single-lv_listing .elementor-3890 .hg-detail-list-item .javo-taxonomy-inline-badge {
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--hg-detail-chip) !important;
  color: var(--hg-detail-text) !important;
  padding: 6px 10px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card .javo-post-meta-logo-shell {
  justify-content: center;
  width: 100%;
  margin: 0 0 10px;
}

body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card {
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06) !important;
}

body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card > .elementor-widget-wrap {
  padding: 22px !important;
}

body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card .javo-post-meta-image--logo {
  max-width: 112px;
  max-height: 62px;
  object-fit: contain !important;
}

body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card .elementor-widget-heading {
  margin-top: 2px;
}

body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card .elementor-heading-title {
  font-size: 20px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card .elementor-widget-javo-post-meta {
  margin-bottom: 14px;
}

body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card .javo-post-meta-leading-block {
  align-items: flex-start;
  gap: 9px;
}

body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card .javo-post-meta-icon {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  color: #111827;
  font-size: 16px;
}

body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card .javo-post-meta-heading {
  margin-bottom: 3px;
  color: var(--hg-detail-muted);
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.3;
}

body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card .javo-post-meta-content {
  gap: 4px;
}

body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card .javo-post-meta-wrapper--layout-vertical .javo-post-meta-content {
  align-items: flex-start !important;
  text-align: left;
}

body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card .javo-post-meta-value {
  max-width: 100%;
  color: var(--hg-detail-text);
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card .elementor-widget-divider {
  margin: 8px 0 18px;
}

body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card .javo-post-meta-map,
body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card .javo-map-container,
body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card [class*="map"] {
  border-radius: 8px;
}

body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card .leaflet-container {
  overflow: hidden;
  border-radius: 8px;
}

@media (min-width: 1025px) {
  body.single-lv_listing .elementor-3890 .hg-detail-main-copy {
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0;
  }

  body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card {
    position: sticky;
    top: 86px;
    flex: 0 0 360px !important;
    width: 360px !important;
    max-width: 360px !important;
    border-color: #e5e7eb !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06) !important;
  }
}

@media (max-width: 1024px) {
  body.single-lv_listing .elementor-3890 .hg-detail-header .elementor-container,
  body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .elementor-container,
  body.single-lv_listing .elementor-3890 .hg-detail-main > .elementor-container {
    flex-direction: column;
  }

  body.single-lv_listing .elementor-3890 .hg-detail-header .elementor-column,
  body.single-lv_listing .elementor-3890 .hg-detail-main .elementor-column {
    width: 100% !important;
  }

  body.single-lv_listing .elementor-3890 .hg-detail-main-copy,
  body.single-lv_listing .elementor-3890 .hg-detail-sidebar-card {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 767px) {
  body.single-lv_listing .elementor-3890 .hg-detail-header .elementor-container,
  body.single-lv_listing .elementor-3890 .hg-detail-gallery .elementor-container,
  body.single-lv_listing .elementor-3890 .hg-detail-summary .elementor-container,
  body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .elementor-container,
  body.single-lv_listing .elementor-3890 .hg-detail-main .elementor-container {
    width: min(1120px, calc(100% - 28px));
  }

  body.single-lv_listing .elementor-3890 .hg-detail-header {
    padding-top: 28px !important;
  }

  body.single-lv_listing .elementor-3890 .hg-detail-summary .elementor-container,
  body.single-lv_listing .elementor-3890 .hg-detail-fact-grid .elementor-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.single-lv_listing .elementor-3890 .hg-detail-list-grid--two > .elementor-container,
  body.single-lv_listing .elementor-3890 .hg-detail-list-grid--one > .elementor-container {
    grid-template-columns: minmax(0, 1fr);
  }

  body.single-lv_listing .elementor-3890 .hg-detail-list-item > .elementor-widget-wrap {
    padding: 16px 0 !important;
  }

  body.single-lv_listing .elementor-3890 .hg-detail-rate-list .javo-post-meta-leading-block__body {
    display: block;
  }

  body.single-lv_listing .elementor-3890 .hg-detail-rate-list .javo-post-meta-wrapper,
  body.single-lv_listing .elementor-3890 .hg-detail-rate-list .javo-post-meta-content {
    justify-content: flex-start;
    text-align: left;
  }

  body.single-lv_listing .elementor-3890 .hg-detail-summary .elementor-column,
  body.single-lv_listing .elementor-3890 .hg-detail-fact-grid .elementor-column {
    width: auto !important;
  }

  body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .spyscroll-bar-inner,
  body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .spyscroll-list {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .spyscroll-bar-inner::-webkit-scrollbar,
  body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .spyscroll-list::-webkit-scrollbar {
    display: none;
  }

  body.single-lv_listing .elementor-3890 .hg-detail-spy-nav .spyscroll-link {
    white-space: nowrap;
  }
}

/* Hungry Golfer footer polish */
.footer.footer-elementor {
  margin-top: 0 !important;
  border-top: 1px solid #e5e7eb !important;
  background: #f8fafc !important;
  color: #111827 !important;
  font-family: Inter, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif !important;
}

.footer.footer-elementor .elementor-10640,
.footer.footer-elementor .elementor-10640 * {
  font-family: inherit !important;
  letter-spacing: 0 !important;
}

.footer.footer-elementor .elementor-10640 .e-con,
.footer.footer-elementor .elementor-10640 .elementor-section,
.footer.footer-elementor .elementor-10640 .elementor-container,
.footer.footer-elementor .elementor-10640 .elementor-column,
.footer.footer-elementor .elementor-10640 .elementor-widget-wrap {
  background: transparent !important;
}

.footer.footer-elementor .elementor-10640 .elementor-element-efee3320 {
  width: 100%;
  border-top: 0 !important;
  padding: 42px 24px 30px !important;
}

.footer.footer-elementor .elementor-10640 .elementor-element-2ad3e0a,
.footer.footer-elementor .elementor-10640 .elementor-element-c184556e {
  width: min(1120px, calc(100% - 40px)) !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.footer.footer-elementor .elementor-10640 .elementor-element-2ad3e0a {
  gap: 28px !important;
  align-items: flex-start;
}

.footer.footer-elementor .elementor-10640 .elementor-element-424c37f7 {
  flex: 1.45 1 0 !important;
}

.footer.footer-elementor .elementor-10640 .elementor-element-b575d530,
.footer.footer-elementor .elementor-10640 .elementor-element-d520e10c {
  flex: 0.85 1 0 !important;
}

.footer.footer-elementor .elementor-10640 .elementor-widget {
  margin-bottom: 0 !important;
}

.footer.footer-elementor .elementor-10640 .elementor-widget-jv-heading .jv-heading-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer.footer-elementor .elementor-10640 .jv-heading-text {
  color: #111827 !important;
  font-size: 16px !important;
  font-weight: 650 !important;
  line-height: 1.25 !important;
}

.footer.footer-elementor .elementor-10640 .elementor-element-8a825c3f .jv-heading-text,
.footer.footer-elementor .elementor-10640 .elementor-element-4fb2a8a .jv-heading-text {
  font-size: 17px !important;
}

.footer.footer-elementor .elementor-10640 .des-heading-text,
.footer.footer-elementor .elementor-10640 .sub-heading-text,
.footer.footer-elementor .elementor-10640 .elementor-widget-text-editor,
.footer.footer-elementor .elementor-10640 .elementor-widget-text-editor p,
.footer.footer-elementor .elementor-10640 .elementor-icon-list-text {
  color: #64748b !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
}

.footer.footer-elementor .elementor-10640 .elementor-icon-list-items {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer.footer-elementor .elementor-10640 .elementor-icon-list-item {
  align-items: center !important;
  gap: 0;
}

.footer.footer-elementor .elementor-10640 .elementor-icon-list-icon {
  display: none !important;
}

.footer.footer-elementor .elementor-10640 a {
  color: #334155 !important;
  text-decoration: none !important;
}

.footer.footer-elementor .elementor-10640 a:hover {
  color: #111827 !important;
}

.footer.footer-elementor .elementor-10640 .elementor-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 15px !important;
  border: 1px solid #111827 !important;
  border-radius: 8px !important;
  background: #111827 !important;
  box-shadow: none !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
}

.footer.footer-elementor .elementor-10640 .elementor-button:hover {
  border-color: #334155 !important;
  background: #334155 !important;
  color: #ffffff !important;
}

.footer.footer-elementor .elementor-10640 .elementor-button-text {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}

.footer.footer-elementor .elementor-10640 .elementor-element-ec328df8 {
  max-width: 260px;
}

.footer.footer-elementor .elementor-10640 .elementor-element-c184556e {
  margin-top: 30px !important;
  padding-top: 24px !important;
  border-top: 1px solid #e5e7eb !important;
}

.footer.footer-elementor .elementor-10640 .elementor-element-4fb2a8a {
  text-align: center;
}

.footer.footer-elementor .elementor-10640 .elementor-element-4fb2a8a .jv-heading-content {
  gap: 6px;
}

.footer.footer-elementor .elementor-10640 .elementor-element-4fb2a8a .jv-heading-text {
  font-weight: 700 !important;
}

.footer.footer-elementor .elementor-10640 .elementor-element-4fb2a8a .sub-heading-text,
.footer.footer-elementor .elementor-10640 .elementor-element-4fb2a8a .des-heading-text {
  font-size: 13px !important;
}

@media (max-width: 767px) {
  .footer.footer-elementor .elementor-10640 .elementor-element-efee3320 {
    padding: 34px 18px 28px !important;
  }

  .footer.footer-elementor .elementor-10640 .elementor-element-2ad3e0a,
  .footer.footer-elementor .elementor-10640 .elementor-element-c184556e {
    width: min(100%, calc(100% - 28px)) !important;
  }

  .footer.footer-elementor .elementor-10640 .elementor-element-2ad3e0a {
    flex-direction: column !important;
    gap: 24px !important;
  }

  .footer.footer-elementor .elementor-10640 .elementor-element-424c37f7,
  .footer.footer-elementor .elementor-10640 .elementor-element-b575d530,
  .footer.footer-elementor .elementor-10640 .elementor-element-d520e10c {
    width: 100% !important;
  }

  .footer.footer-elementor .elementor-10640 .elementor-element-c184556e {
    margin-top: 24px !important;
  }
}

/*
 * Submit form Tom Select chip guard.
 *
 * @purpose Keep single and multiple Tom Select chips visually consistent after late-loaded vendor styles.
 * @target Taxonomy and location dropdown chips inside frontend listing submit forms.
 * @keywords submit-form, tom-select, field-height, chip-style
 */
.submit-form-wrapper .ts-wrapper.single .ts-control,
.submit-form-wrapper .ts-wrapper.multi .ts-control {
  min-height: var(--jv-submit-field-control-height, 3rem) !important;
  display: flex !important;
  align-items: center !important;
  align-content: center !important;
  gap: var(--jv-submit-field-chip-gap, 0.375rem) !important;
  padding: var(--jv-submit-field-control-padding-y, 0.5rem) var(--jv-submit-field-control-padding-x, 0.875rem) !important;
}

.submit-form-wrapper .ts-wrapper.single .ts-control > .item,
.submit-form-wrapper .ts-wrapper.single .ts-control > div.item,
.submit-form-wrapper .ts-wrapper.multi .ts-control > div.item,
.submit-form-wrapper .ts-wrapper.multi .ts-control [data-value] {
  display: inline-flex !important;
  align-items: center !important;
  box-sizing: border-box !important;
  height: 1.75rem !important;
  min-height: 1.75rem !important;
  max-height: 1.75rem !important;
  padding: var(--jv-submit-field-chip-padding-y, 0.2rem) var(--jv-submit-field-chip-padding-x, 0.625rem) !important;
  border: 1px solid var(--jv-submit-field-border, #d7e0ea) !important;
  border-radius: var(--jv-submit-field-chip-radius, 5px) !important;
  background: var(--jv-submit-field-bg-soft, #f8fafc) !important;
  background-color: var(--jv-submit-field-bg-soft, #f8fafc) !important;
  color: var(--jv-submit-field-text, #334155) !important;
  line-height: 1.35 !important;
  white-space: nowrap !important;
  margin: 0 0.25rem 0 0 !important;
}

/*
 * Pet detail template responsive guard.
 *
 * @purpose Keep generated pet listing detail templates from overflowing on small screens.
 * @target Elementor/Javo Post Meta widgets inside pet detail templates.
 * @keywords pet-detail, listing-detail, mobile-overflow, post-meta
 */
body.single-lv_listing .pet-detail-template,
body.single-lv_listing .pet-detail-template .e-con,
body.single-lv_listing .pet-detail-template .elementor-widget,
body.single-lv_listing .pet-detail-template .elementor-widget-container,
body.single-lv_listing .pet-detail-template .javo-post-meta-leading-block,
body.single-lv_listing .pet-detail-template .javo-post-meta-leading-block__body,
body.single-lv_listing .pet-detail-template .javo-post-meta-wrapper,
body.single-lv_listing .pet-detail-template .javo-post-meta-content,
body.single-lv_listing .pet-detail-template .javo-post-meta-value {
  min-width: 0;
  max-width: 100%;
}

body.single-lv_listing .pet-detail-template .javo-post-meta-value,
body.single-lv_listing .pet-detail-template .javo-post-meta-value a,
body.single-lv_listing .pet-detail-template .javo-markdown-output,
body.single-lv_listing .pet-detail-template .markdown-output {
  overflow-wrap: anywhere;
  white-space: normal;
}

@media (max-width: 767px) {
  body.single-lv_listing .pet-detail-template .elementor-widget-javo-post-meta.elementor-widget__width-initial {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.single-lv_listing .pet-detail-template .pet-detail-hero-chips {
    flex-wrap: wrap !important;
  }

  body.single-lv_listing .pet-detail-template .pet-detail-hero-chips > .elementor-widget-javo-post-meta {
    flex: 0 0 calc(50% - 5px) !important;
    width: calc(50% - 5px) !important;
    max-width: calc(50% - 5px) !important;
  }

  body.single-lv_listing .pet-detail-template .pet-detail-hero-chips > .elementor-widget-javo-post-meta:nth-child(3):last-child {
    flex-basis: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.single-lv_listing .pet-detail-template .pet-detail-hero-actions {
    flex-wrap: wrap !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.single-lv_listing .pet-detail-template .pet-detail-hero-actions > .elementor-widget-javo-post-meta {
    flex: 0 0 calc(50% - 4px) !important;
    width: calc(50% - 4px) !important;
    max-width: calc(50% - 4px) !important;
  }

  body.single-lv_listing .pet-detail-template .javo-post-meta-action-button,
  body.single-lv_listing .pet-detail-template .javo-contact-button button {
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  body.single-lv_listing .pet-detail-template .pet-detail-hero-chips > .elementor-widget-javo-post-meta,
  body.single-lv_listing .pet-detail-template .pet-detail-hero-actions > .elementor-widget-javo-post-meta {
    flex-basis: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43),
body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .e-con,
body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .elementor-widget,
body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .elementor-widget-container,
body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .javo-post-meta-leading-block,
body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .javo-post-meta-leading-block__body,
body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .javo-post-meta-wrapper,
body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .javo-post-meta-content,
body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .javo-post-meta-value {
  min-width: 0;
  max-width: 100%;
}

body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .javo-post-meta-value,
body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .javo-post-meta-value a,
body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .javo-markdown-output,
body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .markdown-output {
  overflow-wrap: anywhere;
  white-space: normal;
}

@media (max-width: 767px) {
  body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .e-con.e-flex:has(> .elementor-widget-javo-post-meta + .elementor-widget-javo-post-meta) {
    flex-wrap: wrap !important;
  }

  body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .elementor-widget-javo-post-meta.elementor-widget__width-initial {
    flex-basis: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .javo-post-meta-value,
  body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .javo-post-meta-value a,
  body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .javo-markdown-output,
  body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .markdown-output {
    line-break: anywhere;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .javo-post-meta-action-button,
  body.single-lv_listing :is(.elementor-36, .elementor-37, .elementor-38, .elementor-39, .elementor-40, .elementor-41, .elementor-42, .elementor-43) .javo-contact-button button {
    max-width: 100%;
  }
}
