/* =========================================================
   Need WebHosting – Joomla Template
   Modern, clean design for hosting review & affiliate sites
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }

:root {
  /* Fallbacks (overridden by inline vars from index.php) */
  --nwh-primary: #1e3a8a;
  --nwh-accent: #2563eb;
  --nwh-highlight: #10b981;
  --nwh-container: 1200px;
  --nwh-radius: 12px;
  --nwh-shadow: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px -1px rgba(0,0,0,.04);
  --nwh-shadow-hover: 0 10px 25px -5px rgba(37,99,235,.1), 0 8px 10px -6px rgba(37,99,235,.05);

  --nwh-bg: #f8fafc;
  --nwh-surface: #ffffff;
  --nwh-border: #e2e8f0;
  --nwh-text: #1e293b;
  --nwh-text-muted: #64748b;
  --nwh-text-light: #94a3b8;
}

html { scroll-behavior: smooth; }

body.nwh-site {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--nwh-text);
  background-color: var(--nwh-bg);
  background-image:
    radial-gradient(circle at 50% 0%, rgba(37,99,235,.08) 0%, transparent 70%),
    linear-gradient(to right, rgba(226,232,240,.6) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(226,232,240,.6) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
  margin-top: 0;
}

a { color: var(--nwh-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--nwh-primary); }

img { max-width: 100%; height: auto; display: block; }

/* ---- Layout helpers ---- */
.nwh-container {
  width: 100%;
  max-width: var(--nwh-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .nwh-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* ---- Top bar ---- */
.nwh-topbar {
  background: var(--nwh-primary);
  color: #fff;
  font-size: 0.8125rem;
  padding: 0.4rem 0;
}
.nwh-topbar a { color: #e0e7ff; }
.nwh-topbar a:hover { color: #fff; }

/* ---- Header ---- */
.nwh-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  z-index: 100;
  transition: box-shadow .25s;
  overflow: visible;              /* allow always-open submenus to show */
}

.nwh-header.is-sticky {
  position: sticky;
  top: 0;
}

.nwh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 1.5rem;
  overflow: visible;
  position: relative;
}

.nwh-brand { flex-shrink: 0; }

.nwh-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nwh-logo {
  height: auto;
  max-height: 84px;
  width: auto;
}

.nwh-brand-text {
  font-weight: 800;
  font-size: 1.25rem;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.nwh-brand-text span { color: var(--nwh-accent); }

/* =========================================================
   Navigation – accordion submenus (one section open at a time)
   Colors: primary #1e3a8a · accent #2563eb · surface white
   ========================================================= */
.nwh-nav {
  display: none;
  flex: 1;
  justify-content: center;
}

@media (min-width: 900px) {
  .nwh-nav { display: flex; }
}

/* Top-level list */
.nwh-nav > ul,
.nwh-nav ul.mod-menu,
.nwh-nav ul.nav,
.nwh-nav ul.menu,
.nwh-nav ul.nwh-menu {
  display: flex;
  align-items: stretch;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nwh-nav > ul > li,
.nwh-nav ul.mod-menu > li,
.nwh-nav ul.nav > li,
.nwh-nav ul.menu > li,
.nwh-nav ul.nwh-menu > li {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Top-level links */
.nwh-nav > ul > li > a,
.nwh-nav ul.mod-menu > li > a,
.nwh-nav ul.nav > li > a,
.nwh-nav ul.menu > li > a,
.nwh-nav ul.nwh-menu > li > a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #334155;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  transition: color .18s ease, background .18s ease;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}

.nwh-nav > ul > li > a:hover,
.nwh-nav ul.mod-menu > li > a:hover,
.nwh-nav ul.nav > li > a:hover,
.nwh-nav ul.menu > li > a:hover,
.nwh-nav ul.nwh-menu > li > a:hover {
  color: var(--nwh-primary);
  background: rgba(37, 99, 235, 0.06);
}

/* Active / current top-level */
.nwh-nav > ul > li.active > a,
.nwh-nav > ul > li.current > a,
.nwh-nav ul.mod-menu > li.active > a,
.nwh-nav ul.mod-menu > li.current > a,
.nwh-nav ul.nav > li.active > a,
.nwh-nav ul.nav > li.current > a,
.nwh-nav ul.menu > li.active > a,
.nwh-nav ul.menu > li.current > a,
.nwh-nav ul.nwh-menu > li.active > a,
.nwh-nav ul.nwh-menu > li.current > a,
.nwh-nav li.active > a,
.nwh-nav li.current > a {
  color: var(--nwh-primary);
  background: rgba(37, 99, 235, 0.08);
}

/* Open parent highlight */
.nwh-nav li.parent.is-open > a,
.nwh-nav li.deeper.is-open > a {
  color: var(--nwh-primary);
  background: rgba(37, 99, 235, 0.1);
}

/* Subtle bottom accent on active top-level (desktop) */
@media (min-width: 900px) {
  .nwh-nav > ul > li.active > a::after,
  .nwh-nav > ul > li.current > a::after,
  .nwh-nav ul.mod-menu > li.active > a::after,
  .nwh-nav ul.mod-menu > li.current > a::after,
  .nwh-nav ul.nav > li.active > a::after,
  .nwh-nav ul.nav > li.current > a::after,
  .nwh-nav ul.menu > li.active > a::after,
  .nwh-nav ul.menu > li.current > a::after,
  .nwh-nav ul.nwh-menu > li.active > a::after,
  .nwh-nav ul.nwh-menu > li.current > a::after,
  .nwh-nav li.parent.is-open > a::after {
    content: '';
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--nwh-primary), var(--nwh-accent));
    border-radius: 1px;
  }
}

/* Parent chevron indicator */
.nwh-nav li.parent > a::before,
.nwh-nav li.deeper > a::before {
  content: '';
  order: 1;
  width: 0;
  height: 0;
  margin-left: 0.15rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
  transition: transform .2s ease, opacity .2s ease;
  flex-shrink: 0;
}

.nwh-nav li.parent.is-open > a::before,
.nwh-nav li.deeper.is-open > a::before {
  transform: rotate(180deg);
  opacity: 0.9;
}

/* ---- Submenus: hidden by default, open via .is-open ---- */
.nwh-nav .mod-menu__sub,
.nwh-nav .nwh-submenu,
.nwh-nav li.deeper > ul,
.nwh-nav li.parent > ul,
.nwh-nav li > ul {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Desktop open panel */
@media (min-width: 900px) {
  .nwh-nav li.parent.is-open > .mod-menu__sub,
  .nwh-nav li.deeper.is-open > .mod-menu__sub,
  .nwh-nav li.parent.is-open > .nwh-submenu,
  .nwh-nav li.deeper.is-open > .nwh-submenu,
  .nwh-nav li.parent.is-open > ul,
  .nwh-nav li.deeper.is-open > ul {
    display: block;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 210px;
    padding: 0.4rem;
    background: var(--nwh-surface);
    border: 1px solid var(--nwh-border);
    border-radius: 10px;
    box-shadow:
      0 4px 6px -1px rgba(30, 58, 138, 0.06),
      0 10px 20px -4px rgba(30, 58, 138, 0.1);
    z-index: 120;
  }

  /* caret */
  .nwh-nav li.parent.is-open > ul::before,
  .nwh-nav li.deeper.is-open > ul::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--nwh-surface);
    border-left: 1px solid var(--nwh-border);
    border-top: 1px solid var(--nwh-border);
    transform: translateX(-50%) rotate(45deg);
    z-index: 0;
  }

  /* top accent line */
  .nwh-nav li.parent.is-open > ul::after,
  .nwh-nav li.deeper.is-open > ul::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    height: 2px;
    background: linear-gradient(90deg, var(--nwh-primary), var(--nwh-accent));
    border-radius: 0 0 2px 2px;
    opacity: 0.85;
  }

  .nwh-nav li > ul > li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nwh-nav li > ul > li > a {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #475569;
    padding: 0.5rem 0.85rem;
    border-radius: 7px;
    text-decoration: none;
    transition: color .15s ease, background .15s ease;
    white-space: nowrap;
  }

  .nwh-nav li > ul > li > a:hover {
    color: var(--nwh-primary);
    background: rgba(37, 99, 235, 0.07);
  }

  .nwh-nav li > ul > li.active > a,
  .nwh-nav li > ul > li.current > a {
    color: var(--nwh-primary);
    background: rgba(37, 99, 235, 0.1);
    font-weight: 600;
  }

  /* 3rd level nested under an open section */
  .nwh-nav li > ul ul {
    position: static !important;
    transform: none !important;
    display: none;
    min-width: 0;
    margin: 0.15rem 0 0.15rem 0.5rem;
    padding: 0.25rem 0 0.25rem 0.5rem;
    border: none;
    border-left: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 0;
    box-shadow: none !important;
    background: transparent;
  }

  .nwh-nav li > ul li.is-open > ul {
    display: block;
  }

  .nwh-nav li > ul ul::before,
  .nwh-nav li > ul ul::after {
    display: none;
  }
}

/* Header actions */
.nwh-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile toggle */
.nwh-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 900px) {
  .nwh-mobile-toggle { display: none; }
}

.nwh-mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #334155;
  border-radius: 1px;
  transition: all .25s;
}

/* ---- Hero ---- */
.nwh-hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(37,99,235,0.08) 0%, transparent 70%),
    linear-gradient(to right, rgba(226,232,240,0.4) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(226,232,240,0.4) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
  border-bottom: 1px solid rgba(226,232,240,0.6);
  overflow: hidden;
}

/* ---- Breadcrumbs (floating bubble between header & body) ---- */
.nwh-breadcrumbs {
  padding: 0.5rem 0;              /* equal top & bottom, tighter than before */
  font-size: 0.8125rem;
  color: var(--nwh-text-muted);
  background: transparent;
  border: none;
}

.nwh-breadcrumb-bubble {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0.55rem 1rem;
  background: var(--nwh-surface);
  border: 1px solid var(--nwh-border);
  border-radius: 10px;            /* softer corners, not full pill */
  box-shadow: var(--nwh-shadow);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Single-line clean breadcrumbs: Home > Category > Page */
.nwh-breadcrumb-nav {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nwh-breadcrumb-list {
  display: inline;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

.nwh-breadcrumb-list > li {
  display: inline;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hide any default numbering from core styles */
.nwh-breadcrumb-list,
.nwh-breadcrumb-list li,
.nwh-breadcrumbs ol,
.nwh-breadcrumbs ul {
  list-style: none !important;
  list-style-type: none !important;
}

.nwh-breadcrumb-list > li + li::before {
  content: " > ";
  color: var(--nwh-text-muted);
  margin: 0 0.15em;
  font-weight: 400;
}

.nwh-breadcrumb-item a {
  color: var(--nwh-text-muted);
  text-decoration: none;
}

.nwh-breadcrumb-item a:hover {
  color: var(--nwh-accent);
  text-decoration: underline;
}

.nwh-breadcrumb-item.active,
.nwh-breadcrumb-item.active span {
  color: var(--nwh-text);
  font-weight: 500;
}

/* ---- Main grid ---- */
.nwh-main {
  flex: 1;
  padding: 2.5rem 0 4rem;
}

.nwh-main-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 992px) {
  .has-sidebar-left .nwh-main-grid,
  .has-sidebar-right .nwh-main-grid {
    grid-template-columns: 1fr 320px;
  }
  .has-sidebar-left.has-sidebar-right .nwh-main-grid {
    grid-template-columns: 280px 1fr 300px;
  }
  .has-sidebar-left:not(.has-sidebar-right) .nwh-main-grid {
    grid-template-columns: 280px 1fr;
  }
  .has-sidebar-right:not(.has-sidebar-left) .nwh-main-grid {
    grid-template-columns: 1fr 320px;
  }
}

.nwh-content { min-width: 0; }

/* ---- Cards / Modules ---- */
.nwh-card,
.moduletable {
  background: var(--nwh-surface);
  border: 1px solid var(--nwh-border);
  border-radius: var(--nwh-radius);
  box-shadow: var(--nwh-shadow);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.nwh-card:hover,
.moduletable:hover {
  border-color: #93c5fd;
  box-shadow: var(--nwh-shadow-hover);
}

.nwh-card .module-title,
.moduletable > h3,
.moduletable > .module-title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #0f172a;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #bfdbfe;
}

/* ---- Component / Article styling (review pages) ---- */
.nwh-component {
  background: var(--nwh-surface);
  border: 1px solid var(--nwh-border);
  border-radius: var(--nwh-radius);
  box-shadow: var(--nwh-shadow);
  padding: 2rem 1.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .nwh-component { padding: 2.5rem 2.5rem; }
}

/* When a full HostVault-style review is present, drop the card chrome
   and let the review control its own width/background */
.nwh-component:has(.hv-review) {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 0;
}

/* Editorial review body — only constrain plain articles */
.nwh-component .item-page:not(:has(.hv-review)),
.nwh-component article:not(:has(.hv-review)) {
  max-width: 70ch;
}

.nwh-component h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #0f172a;
}

.nwh-component h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #bfdbfe;
}

.nwh-component h3 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: #172554;
}

.nwh-component p {
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #1e293b;
  margin: 0 0 1.25rem;
}

.nwh-component ul, .nwh-component ol {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}

/* Score badge helpers (for custom HTML in articles) */
.nwh-score-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid;
}

.nwh-score-excellent { background: #ecfdf5; color: #047857; border-color: #a7f3d0; }
.nwh-score-good      { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.nwh-score-moderate  { background: #fffbeb; color: #b45309; border-color: #fde68a; }
.nwh-score-weak      { background: #fff1f2; color: #be123c; border-color: #fecdd3; }

/* KPI / Score cards grid */
.nwh-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.nwh-kpi-card {
  background: #fff;
  border: 1px solid var(--nwh-border);
  border-radius: var(--nwh-radius);
  padding: 1.25rem;
  transition: all .25s;
}
.nwh-kpi-card:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
  box-shadow: var(--nwh-shadow-hover);
}

.nwh-kpi-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--nwh-text-muted);
  margin-bottom: 0.35rem;
}

.nwh-kpi-value {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1;
}

.nwh-kpi-sub {
  font-size: 0.75rem;
  color: var(--nwh-text-muted);
  margin-top: 0.5rem;
}

/* ---- Sidebar ---- */
.nwh-sidebar .nwh-card,
.nwh-sidebar .moduletable {
  position: sticky;
  top: 5.5rem;
}


/* =========================================================
   Sidebar accordion menus (Hosting Types / Reviews / Measurement)
   One section open at a time — closed subs fully removed from layout
   ========================================================= */
.nwh-sidebar .mod-menu,
.nwh-sidebar ul.nwh-menu,
.nwh-sidebar ul.mod-list {
  list-style: none !important;
  margin: 0 0 0.6rem !important;
  padding: 0 !important;
  background: var(--nwh-surface);
  border: 1px solid var(--nwh-border);
  border-radius: 10px;
  box-shadow: var(--nwh-shadow);
  overflow: hidden;
}

.nwh-sidebar .mod-menu > li,
.nwh-sidebar ul.nwh-menu > li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Parent headers — clearly darker */
.nwh-sidebar .mod-menu > li.parent > a,
.nwh-sidebar .mod-menu > li.deeper > a,
.nwh-sidebar ul.nwh-menu > li.parent > a,
.nwh-sidebar ul.nwh-menu > li.deeper > a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.8rem 1rem !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  color: #ffffff !important;
  text-decoration: none !important;
  background: #1e293b !important;          /* dark slate header */
  border: none !important;
  border-left: 3px solid transparent !important;
  transition: background .15s ease, border-color .15s ease;
  cursor: pointer;
}

.nwh-sidebar .mod-menu > li.parent > a:hover,
.nwh-sidebar .mod-menu > li.deeper > a:hover {
  background: #0f172a !important;
  color: #ffffff !important;
}

/* Open / active parent */
.nwh-sidebar .mod-menu > li.is-open > a,
.nwh-sidebar .mod-menu > li.parent.is-open > a,
.nwh-sidebar .mod-menu > li.deeper.is-open > a {
  background: var(--nwh-primary) !important;
  color: #ffffff !important;
  border-left-color: var(--nwh-highlight) !important;
}

/* Chevron */
.nwh-sidebar .mod-menu > li.parent > a::after,
.nwh-sidebar .mod-menu > li.deeper > a::after {
  content: '' !important;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  opacity: 0.7;
  transition: transform .2s ease, opacity .2s ease;
  flex-shrink: 0;
}

.nwh-sidebar .mod-menu > li.is-open > a::after {
  transform: rotate(180deg);
  opacity: 1;
}

/* ---- Closed submenus: fully out of layout (not just invisible) ---- */
.nwh-sidebar .mod-menu__sub,
.nwh-sidebar .nwh-submenu,
.nwh-sidebar .mod-menu li > ul,
.nwh-sidebar ul.mod-menu ul {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  list-style: none !important;
  pointer-events: none !important;
}

/* Open state restores full layout */
.nwh-sidebar .mod-menu > li.is-open > .mod-menu__sub,
.nwh-sidebar .mod-menu > li.is-open > .nwh-submenu,
.nwh-sidebar .mod-menu > li.is-open > ul {
  display: block !important;
  visibility: visible !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  margin: 0 !important;
  padding: 0.35rem 0 0.55rem !important;
  background: #f8fafc !important;
  border-top: 1px solid var(--nwh-border) !important;
  pointer-events: auto !important;
}

.nwh-sidebar .mod-menu__sub > li,
.nwh-sidebar .nwh-submenu > li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nwh-sidebar .mod-menu__sub > li > a,
.nwh-sidebar .nwh-submenu > li > a {
  display: block !important;
  padding: 0.5rem 1rem 0.5rem 1.35rem !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  color: #475569 !important;
  text-decoration: none !important;
  border-left: 3px solid transparent !important;
  transition: color .15s ease, background .15s ease, border-color .15s ease;
}

.nwh-sidebar .mod-menu__sub > li > a:hover,
.nwh-sidebar .nwh-submenu > li > a:hover {
  color: var(--nwh-primary) !important;
  background: rgba(37, 99, 235, 0.07) !important;
  border-left-color: rgba(37, 99, 235, 0.4) !important;
}

.nwh-sidebar .mod-menu__sub > li.active > a,
.nwh-sidebar .mod-menu__sub > li.current > a,
.nwh-sidebar .nwh-submenu > li.active > a,
.nwh-sidebar .nwh-submenu > li.current > a {
  color: var(--nwh-primary) !important;
  font-weight: 600 !important;
  background: rgba(37, 99, 235, 0.1) !important;
  border-left-color: var(--nwh-accent) !important;
}

/* Non-parent single links */
.nwh-sidebar .mod-menu > li:not(.parent):not(.deeper) > a {
  display: block !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: #334155 !important;
  text-decoration: none !important;
  border-left: 3px solid transparent !important;
}

.nwh-sidebar .mod-menu > li:not(.parent):not(.deeper) > a:hover,
.nwh-sidebar .mod-menu > li:not(.parent):not(.deeper).active > a {
  color: var(--nwh-primary) !important;
  background: rgba(37, 99, 235, 0.06) !important;
  border-left-color: var(--nwh-accent) !important;
}

/* ---- Footer ---- */
.nwh-footer {
  background: #fff;
  border-top: 1px solid var(--nwh-border);
  margin-top: auto;
}

.nwh-footer-main {
  padding: 2.5rem 0;
}

.nwh-footer-modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.nwh-footer-bottom {
  border-top: 1px solid var(--nwh-border);
  padding: 1.25rem 0;
  font-size: 0.8125rem;
  color: var(--nwh-text-muted);
}

.nwh-footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.nwh-copyright { margin: 0; }

/* ---- Buttons ---- */
.nwh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}

.nwh-btn-primary {
  background: var(--nwh-accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(37,99,235,0.2);
}
.nwh-btn-primary:hover {
  background: var(--nwh-primary);
  color: #fff;
  transform: translateY(-1px);
}

.nwh-btn-outline {
  background: #fff;
  color: #334155;
  border: 1px solid #cbd5e1;
}
.nwh-btn-outline:hover {
  background: #f1f5f9;
  color: #0f172a;
}

/* ---- Utility ---- */
.nwh-text-muted { color: var(--nwh-text-muted); }
.nwh-text-center { text-align: center; }
.nwh-mt-0 { margin-top: 0; }
.nwh-mb-0 { margin-bottom: 0; }

/* ---- Joomla specific overrides ---- */
.nwh-component .pager,
.nwh-component .pagination {
  margin-top: 2rem;
}

.nwh-component .tags { margin-top: 1.5rem; }

/* Messages */
#system-message-container .alert {
  border-radius: var(--nwh-radius);
  margin-bottom: 1.5rem;
}

/* Mobile menu open state (controlled by JS) */
body.nwh-nav-open .nwh-nav {
  display: flex;
  position: absolute;
  top: 96px;
  left: 0;
  right: 0;
  background: var(--nwh-surface);
  flex-direction: column;
  padding: 0.75rem 1rem 1.25rem;
  border-bottom: 1px solid var(--nwh-border);
  box-shadow:
    0 10px 25px -5px rgba(30, 58, 138, 0.1),
    0 4px 6px -2px rgba(30, 58, 138, 0.05);
  z-index: 99;
}

body.nwh-nav-open .nwh-nav > ul,
body.nwh-nav-open .nwh-nav ul.mod-menu,
body.nwh-nav-open .nwh-nav ul.nav,
body.nwh-nav-open .nwh-nav ul.menu {
  flex-direction: column;
  align-items: stretch;
  gap: 0.15rem;
  width: 100%;
}

body.nwh-nav-open .nwh-nav > ul > li > a,
body.nwh-nav-open .nwh-nav ul.mod-menu > li > a,
body.nwh-nav-open .nwh-nav ul.nav > li > a,
body.nwh-nav-open .nwh-nav ul.menu > li > a {
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
}

/* Accordion submenus on mobile — only .is-open shows */
body.nwh-nav-open .nwh-nav li > ul,
body.nwh-nav-open .nwh-nav .mod-menu__sub,
body.nwh-nav-open .nwh-nav .nwh-submenu {
  display: none;
  position: static;
  transform: none;
  margin: 0;
  padding: 0;
  min-width: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

body.nwh-nav-open .nwh-nav li.is-open > ul,
body.nwh-nav-open .nwh-nav li.is-open > .mod-menu__sub,
body.nwh-nav-open .nwh-nav li.is-open > .nwh-submenu {
  display: block;
  margin: 0.15rem 0 0.35rem 0.75rem;
  padding: 0.25rem 0 0.25rem 0.75rem;
  border-left: 2px solid rgba(37, 99, 235, 0.25);
}

body.nwh-nav-open .nwh-nav li > ul::before,
body.nwh-nav-open .nwh-nav li > ul::after {
  display: none;
}

body.nwh-nav-open .nwh-nav li > ul > li > a {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
}

body.nwh-nav-open .nwh-nav li > ul > li > a:hover,
body.nwh-nav-open .nwh-nav li > ul > li.active > a,
body.nwh-nav-open .nwh-nav li > ul > li.current > a {
  color: var(--nwh-primary);
  background: rgba(37, 99, 235, 0.07);
}

/* Print */
@media print {
  .nwh-header, .nwh-footer, .nwh-sidebar, .nwh-mobile-toggle { display: none !important; }
  .nwh-component { border: none; box-shadow: none; padding: 0; }
}


/* =========================================================
   HostVault-style full review layout (.hv-review)
   Loaded globally so article editor cannot strip styles
   ========================================================= */
/* ========== FULL SELF-CONTAINED STYLES (no Tailwind dependency) ========== */
.hv-review {
  font-family: Inter, Helvetica, Arial, sans-serif;
  color: #1e293b;
  line-height: 1.5;
  background: #f8fafc;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
.hv-review *, .hv-review *::before, .hv-review *::after { box-sizing: border-box; }
.hv-review img, .hv-review canvas { max-width: 100%; height: auto; display: block; }

/* Layout helpers */
.hv-review .hv-container { max-width: 72rem; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .hv-review .hv-container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .hv-review .hv-container { padding-left: 2rem; padding-right: 2rem; } }

.hv-review .hv-grid { display: grid; gap: 1rem; }
.hv-review .hv-grid-2 { grid-template-columns: 1fr; }
.hv-review .hv-grid-4 { grid-template-columns: 1fr; }
.hv-review .hv-grid-12 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .hv-review .hv-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .hv-review .hv-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .hv-review .hv-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .hv-review .hv-grid-12 { grid-template-columns: repeat(12, 1fr); }
  .hv-review .hv-col-7 { grid-column: span 7; }
  .hv-review .hv-col-5 { grid-column: span 5; }
  .hv-review .hv-col-8 { grid-column: span 8; }
  .hv-review .hv-col-4 { grid-column: span 4; }
  .hv-review .hv-col-span-5 { grid-column: span 5; }
  .hv-review .hv-col-span-7 { grid-column: span 7; }
}

.hv-review .hv-flex { display: flex; }
.hv-review .hv-flex-col { flex-direction: column; }
.hv-review .hv-items-center { align-items: center; }
.hv-review .hv-items-start { align-items: flex-start; }
.hv-review .hv-items-baseline { align-items: baseline; }
.hv-review .hv-justify-between { justify-content: space-between; }
.hv-review .hv-justify-center { justify-content: center; }
.hv-review .hv-justify-start { justify-content: flex-start; }
.hv-review .hv-gap-2 { gap: 0.5rem; }
.hv-review .hv-gap-3 { gap: 0.75rem; }
.hv-review .hv-gap-6 { gap: 1.5rem; }
.hv-review .hv-gap-12 { gap: 3rem; }
.hv-review .hv-space-y-2 > * + * { margin-top: 0.5rem; }
.hv-review .hv-space-y-4 > * + * { margin-top: 1rem; }
.hv-review .hv-space-y-6 > * + * { margin-top: 1.5rem; }
.hv-review .hv-space-y-8 > * + * { margin-top: 2rem; }
.hv-review .hv-flex-wrap { flex-wrap: wrap; }

/* Spacing */
.hv-review .hv-p-5 { padding: 1.25rem; }
.hv-review .hv-p-6 { padding: 1.5rem; }
.hv-review .hv-p-3-5 { padding: 0.875rem; }
.hv-review .hv-px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.hv-review .hv-px-4 { padding-left: 1rem; padding-right: 1rem; }
.hv-review .hv-px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.hv-review .hv-py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.hv-review .hv-py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.hv-review .hv-py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.hv-review .hv-py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.hv-review .hv-pt-2 { padding-top: 0.5rem; }
.hv-review .hv-pt-3 { padding-top: 0.75rem; }
.hv-review .hv-pt-4 { padding-top: 1rem; }
.hv-review .hv-pt-6 { padding-top: 1.5rem; }
.hv-review .hv-pt-12 { padding-top: 3rem; }
.hv-review .hv-pb-3 { padding-bottom: 0.75rem; }
.hv-review .hv-pb-16 { padding-bottom: 4rem; }
.hv-review .hv-mb-2 { margin-bottom: 0.5rem; }
.hv-review .hv-mb-3 { margin-bottom: 0.75rem; }
.hv-review .hv-mb-4 { margin-bottom: 1rem; }
.hv-review .hv-mb-5 { margin-bottom: 1.25rem; }
.hv-review .hv-mb-10 { margin-bottom: 2.5rem; }
.hv-review .hv-mt-2 { margin-top: 0.5rem; }
.hv-review .hv-mt-3 { margin-top: 0.75rem; }
.hv-review .hv-mt-4 { margin-top: 1rem; }
.hv-review .hv-mr-1 { margin-right: 0.25rem; }
.hv-review .hv-mx-auto { margin-left: auto; margin-right: auto; }

/* Typography */
.hv-review .hv-text-xs { font-size: 0.75rem; line-height: 1rem; }
.hv-review .hv-text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.hv-review .hv-text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.hv-review .hv-text-2xl { font-size: 1.5rem; line-height: 2rem; }
.hv-review .hv-text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.hv-review .hv-text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.hv-review .hv-text-5xl { font-size: 3rem; line-height: 1; }
.hv-review .hv-font-medium { font-weight: 500; }
.hv-review .hv-font-semibold { font-weight: 600; }
.hv-review .hv-font-bold { font-weight: 700; }
.hv-review .hv-font-extrabold { font-weight: 800; }
.hv-review .hv-font-black { font-weight: 900; }
.hv-review .hv-tracking-tight { letter-spacing: -0.025em; }
.hv-review .hv-tracking-wide { letter-spacing: 0.025em; }
.hv-review .hv-tracking-wider { letter-spacing: 0.05em; }
.hv-review .hv-uppercase { text-transform: uppercase; }
.hv-review .hv-leading-tight { line-height: 1.25; }
.hv-review .hv-leading-relaxed { line-height: 1.625; }
.hv-review .hv-text-center { text-align: center; }
.hv-review .hv-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Colors */
.hv-review .hv-text-slate-500 { color: #64748b; }
.hv-review .hv-text-slate-600 { color: #475569; }
.hv-review .hv-text-slate-700 { color: #334155; }
.hv-review .hv-text-slate-800 { color: #1e293b; }
.hv-review .hv-text-slate-900 { color: #0f172a; }
.hv-review .hv-text-blue-600 { color: #2563eb; }
.hv-review .hv-text-blue-700 { color: #1d4ed8; }
.hv-review .hv-text-emerald-600 { color: #059669; }
.hv-review .hv-text-emerald-700 { color: #047857; }
.hv-review .hv-text-amber-600 { color: #d97706; }
.hv-review .hv-text-amber-700 { color: #b45309; }
.hv-review .hv-text-white { color: #fff; }
.hv-review .hv-bg-white { background-color: #fff; }
.hv-review .hv-bg-slate-50 { background-color: #f8fafc; }
.hv-review .hv-bg-slate-100 { background-color: #f1f5f9; }
.hv-review .hv-bg-blue-50 { background-color: #eff6ff; }
.hv-review .hv-bg-blue-600 { background-color: #2563eb; }
.hv-review .hv-bg-indigo-50 { background-color: #eef2ff; }
.hv-review .hv-bg-purple-50 { background-color: #faf5ff; }
.hv-review .hv-bg-emerald-50 { background-color: #ecfdf5; }
.hv-review .hv-bg-amber-50 { background-color: #fffbeb; }
.hv-review .hv-bg-rose-50 { background-color: #fff1f2; }

/* Borders & radius */
.hv-review .hv-border { border-width: 1px; border-style: solid; }
.hv-review .hv-border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.hv-review .hv-border-t { border-top-width: 1px; border-top-style: solid; }
.hv-review .hv-border-slate-100 { border-color: #f1f5f9; }
.hv-review .hv-border-slate-200 { border-color: #e2e8f0; }
.hv-review .hv-border-slate-300 { border-color: #cbd5e1; }
.hv-review .hv-border-blue-100 { border-color: #dbeafe; }
.hv-review .hv-border-blue-200 { border-color: #bfdbfe; }
.hv-review .hv-border-emerald-200 { border-color: #a7f3d0; }
.hv-review .hv-border-amber-200 { border-color: #fde68a; }
.hv-review .hv-border-indigo-100 { border-color: #e0e7ff; }
.hv-review .hv-border-purple-100 { border-color: #f3e8ff; }
.hv-review .hv-border-rose-200 { border-color: #fecdd3; }
.hv-review .hv-rounded { border-radius: 0.25rem; }
.hv-review .hv-rounded-lg { border-radius: 0.5rem; }
.hv-review .hv-rounded-xl { border-radius: 0.75rem; }
.hv-review .hv-rounded-2xl { border-radius: 1rem; }
.hv-review .hv-rounded-full { border-radius: 9999px; }
.hv-review .hv-rounded-md { border-radius: 0.375rem; }

/* Cards */
.hv-review .hv-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.04), 0 1px 2px -1px rgba(0,0,0,.04);
}
.hv-review .hv-card-hover { transition: all .25s ease-in-out; }
.hv-review .hv-card-hover:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
  box-shadow: 0 10px 25px -5px rgba(37,99,235,.1), 0 8px 10px -6px rgba(37,99,235,.05);
}

/* Buttons */
.hv-review a.hv-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  text-align: center;
  transition: all .2s;
  cursor: pointer;
}
.hv-review a.hv-btn-primary {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(37,99,235,.2);
}
.hv-review a.hv-btn-primary:hover { background: #1d4ed8; color: #fff; }
.hv-review a.hv-btn-secondary {
  background: #fff;
  color: #334155;
  border: 1px solid #cbd5e1;
}
.hv-review a.hv-btn-secondary:hover { background: #f1f5f9; color: #334155; }

/* Badges */
.hv-review .hv-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid;
}
.hv-review .hv-badge-blue { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.hv-review .hv-badge-emerald { background: #ecfdf5; color: #047857; border-color: #a7f3d0; }
.hv-review .hv-badge-amber { background: #fffbeb; color: #b45309; border-color: #fde68a; }
.hv-review .hv-badge-rose { background: #fff1f2; color: #be123c; border-color: #fecdd3; }

/* Icon boxes */
.hv-review .hv-icon-box {
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid;
}
.hv-review .hv-icon-blue { background: #eff6ff; color: #2563eb; border-color: #dbeafe; }
.hv-review .hv-icon-indigo { background: #eef2ff; color: #4f46e5; border-color: #e0e7ff; }
.hv-review .hv-icon-purple { background: #faf5ff; color: #9333ea; border-color: #f3e8ff; }
.hv-review .hv-icon-emerald { background: #ecfdf5; color: #059669; border-color: #a7f3d0; }

/* Hero */
.hv-review .hv-hero {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 4rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(226,232,240,.6);
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(226,232,240,.6) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(226,232,240,.6) 1px, transparent 1px);
}
.hv-review .hv-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(37,99,235,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hv-review .hv-hero-blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  filter: blur(64px);
  pointer-events: none;
  opacity: 0.1;
}
.hv-review .hv-hero-blob-1 { right: -5rem; top: -5rem; background: #60a5fa; }
.hv-review .hv-hero-blob-2 { left: -5rem; top: 10rem; background: #818cf8; }

.hv-review .hv-pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #2563eb;
  animation: hv-pulse 2s cubic-bezier(0.4,0,0.6,1) infinite;
}
@keyframes hv-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

/* Score card (hero right) */
.hv-review .hv-score-wrap { position: relative; max-width: 28rem; margin-left: auto; margin-right: auto; }
.hv-review .hv-score-glow {
  position: absolute;
  inset: -0.25rem;
  border-radius: 1rem;
  background: linear-gradient(to right, #2563eb, #4f46e5);
  opacity: 0.2;
  filter: blur(24px);
}
.hv-review .hv-score-card {
  position: relative;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(226,232,240,.8);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
}

/* Charts area */
.hv-review .hv-chart-box { position: relative; width: 100%; height: 18rem; }
@media (min-width: 640px) { .hv-review .hv-chart-box { height: 20rem; } }

/* Sub-factor cards */
.hv-review .hv-subgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .hv-review .hv-subgrid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .hv-review .hv-subgrid { grid-template-columns: repeat(5, 1fr); } }

.hv-review .hv-subcard {
  background: #fff;
  padding: 0.875rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  transition: border-color .2s;
}
.hv-review .hv-subcard:hover { border-color: #cbd5e1; }
.hv-review .hv-bar-track {
  width: 100%;
  background: #f1f5f9;
  height: 0.375rem;
  border-radius: 9999px;
  overflow: hidden;
  margin-top: 0.75rem;
}
.hv-review .hv-bar-fill {
  height: 100%;
  border-radius: 9999px;
}

/* Select filters */
.hv-review select {
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  padding: 0.375rem 0.625rem;
  background: #fff;
  color: #334155;
}

/* Editorial copy */
.hv-review .hv-copy {
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  color: #1e293b;
  line-height: 1.75;
  font-size: 1.125rem;
  max-width: 70ch;
}
.hv-review .hv-copy p { margin: 0 0 1.25rem; }
.hv-review .hv-copy h3 {
  font-family: Inter, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #172554;
  margin: 2.75rem 0 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #bfdbfe;
}
.hv-review .hv-copy h3:first-of-type { margin-top: 0; }

/* Sidebar sticky */
.hv-review .hv-sticky { position: sticky; top: 6rem; }

/* Responsive text alignment */
@media (min-width: 1024px) {
  .hv-review .hv-lg-text-left { text-align: left; }
  .hv-review .hv-lg-justify-start { justify-content: flex-start; }
  .hv-review .hv-lg-mx-0 { margin-left: 0; margin-right: 0; }
}
@media (max-width: 1023px) {
  .hv-review .hv-mobile-center { text-align: center; }
  .hv-review .hv-mobile-center-flex { justify-content: center; }
}

/* Button row on mobile */
.hv-review .hv-btn-row { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) {
  .hv-review .hv-btn-row { flex-direction: row; }
  .hv-review .hv-btn-row a { width: auto; }
}
.hv-review .hv-btn-row a { width: 100%; }

/* Section backgrounds */
.hv-review .hv-section-white { background: #fff; border-top: 1px solid #e2e8f0; }
.hv-review .hv-footer-note {
  border-top: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
}

/* Force Joomla content area not to clip */
.hv-review { overflow: visible; width: 100%; }
