:root {
  --wh-navy: #0b1949;
  --wh-orange: #f5670c;
  --wh-orange-alt: #f4740e;
  --wh-blue: #2fa7e2;
  --wh-border: #dee2ea;
  --wh-light-blue: #e9eff9;
  --wh-footer: #0b1949;
  --wh-text: #0b1949;
  --wh-body-font: Arial, sans-serif;
  --wh-heading-font: Arial, sans-serif;
  --wh-radius: 8px;
  --wh-container: 1200px;
  --wh-shadow: 0 14px 30px rgba(11, 25, 73, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--wh-text);
  font-family: var(--wh-body-font);
  line-height: 1.6;
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 16px;
  color: var(--wh-navy);
  font-family: var(--wh-heading-font);
  line-height: 1.2;
}
p { margin: 0 0 16px; }
ul { margin: 0; padding: 0; list-style: none; }
.container {
  width: min(calc(100% - 32px), var(--wh-container));
  margin: 0 auto;
}
.screen-reader-text {
  position: absolute;
  left: -9999px;
}
.wh-btn,
.wh-search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--wh-radius);
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s ease;
  text-align: center;
}
.wh-btn:hover,
.wh-search-submit:hover { transform: translateY(-1px); }
.wh-btn-outline {
  background: #fff;
  border-color: var(--wh-border);
  color: var(--wh-orange);
}
.wh-btn-outline .icon { color: var(--wh-navy); position: relative; top: 3px; }
.wh-btn-primary,
.wh-search-submit {
  background: var(--wh-orange);
  color: #fff;
}
.wh-btn-orange { background: var(--wh-orange-alt); color: #fff; }
.wh-btn-blue { background: var(--wh-blue); color: #fff; }

.wh-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #edf1f7;
}
.wh-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 100px;
}
.wh-logo img {
  width: auto;
  height: auto;
}
.wh-footer-logo img {
  width: auto;
  height: auto;
}
.wh-nav-wrap { display: flex; justify-content: center; min-width: 0; }
.wh-main-nav { min-width: 0; width: 100%; }
.wh-main-nav .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
}
.wh-main-nav .menu > li {
  position: relative;
}
.wh-main-nav .menu > li::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}
.wh-main-nav .menu > li > a,
.wh-mobile-panel .menu > li > a {
  font-weight: 500;
  color: var(--wh-navy);
  transition: color 0.2s ease;
}
.wh-main-nav .menu > li > a:hover,
.wh-main-nav .menu > li:hover > a,
.wh-main-nav .menu > li.current-menu-item > a,
.wh-main-nav .menu > li.current-menu-ancestor > a,
.wh-mobile-panel .menu > li > a:hover,
.wh-mobile-panel .menu > li.current-menu-item > a,
.wh-mobile-panel .menu > li.current-menu-ancestor > a {
  color: var(--wh-orange);
}
.wh-main-nav .sub-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  padding: 10px 0;
  background: #fff;
  border: 1px solid var(--wh-border);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(11, 25, 73, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}
.wh-main-nav .sub-menu li {
  width: 100%;
}
.wh-main-nav .sub-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--wh-navy);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.wh-main-nav .sub-menu a:hover,
.wh-main-nav .sub-menu li:hover > a,
.wh-main-nav .sub-menu li.current-menu-item > a,
.wh-main-nav .sub-menu li.current-menu-ancestor > a {
  background: #f6f8fc;
  color: var(--wh-orange);
}
.wh-main-nav .menu > li:hover > .sub-menu,
.wh-main-nav .menu > li:focus-within > .sub-menu,
.wh-main-nav .menu > li > .sub-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.wh-main-nav .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wh-main-nav .menu-item-has-children > a::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-5px);
  transform-origin: center;
}
.wh-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  margin-left: auto;
  justify-self: end;
  border-radius: 8px;
  border: 1px solid var(--wh-border);
  background: #fff;
  color: var(--wh-navy);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 42px;
}
.wh-mobile-toggle:hover { transform: none; }
.wh-mobile-toggle svg { width: 18px; height: 18px; }
.wh-mobile-panel { display: none; }

.wh-hero {
  background: linear-gradient(180deg, #eff6fd 0%, #ffffff 100%);
  padding: 72px 0;
}
.wh-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.wh-hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  letter-spacing: -0.03em;
}
.wh-hero-copy .subtext {
  color: rgba(11,25,73,0.8);
  font-size: 1.3rem;
  padding: 25px 0 10px;
}
.wh-search-form {
  margin: 28px 0 22px;
}
.wh-search-field {
  position: relative;
  border-radius: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.wh-search-field:focus-within {
  box-shadow: 0 0 0 4px rgba(47, 167, 226, 0.14);
}
.wh-search-form input[type="text"] {
  width: 100%;
  min-height: 64px;
  border: 1px solid var(--wh-border);
  border-radius: 14px;
  padding: 0 220px 0 18px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wh-search-form input[type="text"]:focus {
  outline: none;
  border-color: var(--wh-blue);
}
.wh-search-submit {
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  padding: 12px 22px;
  border: 0;
  border-radius: 10px;
  white-space: nowrap;
}
.wh-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}
.wh-hero-point {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--wh-navy);
  font-weight: 500;
  font-size:18px;
}
.wh-hero-point img { width: 24px; height: 24px; object-fit: contain; }
.wh-hero-media img {
  width: 100%;
  border-radius: 18px;
}
.wh-hero-media-mobile { display: none; }

.wh-features {
  background: var(--wh-light-blue);
  padding: 60px 0;
}
.wh-features-shell {
  position: relative;
}
.wh-features-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.wh-features-track.is-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.wh-features-track.is-slider::-webkit-scrollbar { display: none; }
.wh-features-track.is-slider > * {
  min-width: calc((100% - 48px) / 3);
  scroll-snap-align: start;
}
.wh-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid var(--wh-border);
  border-radius: 999px;
  background: #fff;
  color: var(--wh-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(11, 25, 73, 0.08);
}
.wh-slider-arrow:disabled {
  opacity: 0.4;
  cursor: default;
}
.wh-slider-arrow-prev { left: -22px; }
.wh-slider-arrow-next { right: -22px; }
.wh-slider-arrow span,
.wh-social-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.wh-slider-arrow svg,
.wh-social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}
.wh-feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
}
.wh-feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e0f2fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.wh-feature-icon img { width: 40px; height: 40px; object-fit: contain; }
.wh-feature-card h2,
.wh-feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.wh-feature-card-text {
  padding: 8px 0 18px;
}
.wh-feature-card-description {
  padding: 15px 0 5px;
}

.wh-footer {
  background: var(--wh-footer);
  color: rgba(255,255,255,0.9);
  padding: 56px 0 24px;
}
.wh-footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 320px) repeat(3, minmax(140px, 1fr));
  column-gap: clamp(36px, 5vw, 72px);
  row-gap: 28px;
  align-items: start;
}
.wh-footer-top > :not(:first-child) {
  padding-left: clamp(12px, 2vw, 28px);
}
.wh-footer a { color: rgba(255,255,255,0.9); }
.wh-footer-logo-text {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}
.wh-footer-menu-title {
  font-family: var(--wh-heading-font);
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.05rem;
  font-weight:600;
}
.wh-footer-menu li + li { margin-top: 10px; }
.wh-footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}
.wh-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.wh-social-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wh-social-link svg { width: 18px; height: 18px; }
.wh-page-content { background: linear-gradient(180deg, #eff6fd 0%, #ffffff 28%);}

@media (max-width: 991px) {
  .wh-header-inner {
    grid-template-columns: auto 1fr;
  }
  .wh-nav-wrap,
  .wh-header-cta { display: none; }
  .wh-mobile-toggle { display: inline-flex; }
  .wh-mobile-panel {
    display: none;
    padding: 14px 0 20px;
    border-top: 1px solid var(--wh-border);
  }
  .wh-mobile-panel.is-open { display: block; }
  .wh-mobile-panel nav {
    max-height: calc(100vh - 145px);
    overflow-y: auto;
  }
  .wh-mobile-panel .menu {
    display: grid;
    gap: 10px;
    padding-top: 4px;
  }
  .wh-mobile-panel .menu > li {
    width: 100%;
    border: 1px solid var(--wh-border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(11, 25, 73, 0.05);
  }
  .wh-mobile-panel .menu > li > a {
    display: block;
    width: calc(100% - 52px);
    padding: 14px 18px;
    font-size: 1rem;
    font-weight: 600;
  }
  .wh-mobile-panel .menu > li.menu-item-has-children > a {
    font-weight: 600;
  }
  .wh-mobile-panel .menu > li:not(.menu-item-has-children) > a {
    width: 100%;
  }
  .wh-mobile-panel .menu > li > a:hover {
    background: #f7fbfe;
  }
  .wh-mobile-panel .wh-mobile-has-children {
    position: relative;
  }
  .wh-mobile-submenu-toggle {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: #f1f7fc;
    color: var(--wh-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .wh-mobile-submenu-toggle span {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
  }
  .wh-mobile-has-children.is-expanded > .wh-mobile-submenu-toggle span {
    transform: rotate(-135deg) translateY(-1px);
  }
  .wh-mobile-panel .sub-menu {
    display: none;
    margin: 0;
    padding: 0 14px 14px;
  }
  .wh-mobile-has-children.is-expanded > .sub-menu {
    display: block;
  }
  .wh-mobile-panel .sub-menu li {
    border-top: 1px solid var(--wh-border);
  }
  .wh-mobile-panel .sub-menu a {
    display: block;
    color: var(--wh-navy);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 8px;
  }
  .wh-mobile-panel .wh-mobile-cta {
    margin-top: 16px;
    padding-bottom: 4px;
  }
  .wh-mobile-panel .wh-mobile-cta .wh-btn {
    width: 100%;
    justify-content: center;
  }
  .wh-hero-grid,
  .wh-footer-top {
    grid-template-columns: 1fr;
  }
  .wh-footer-top > :not(:first-child) {
    padding-left: 0;
  }
  .wh-hero-copy {
    text-align: center;
  }
  .wh-hero {
    padding-top: 40px;
  }
  .wh-hero-media-desktop {
    display: none;
  }
  .wh-hero-media-mobile {
    display: block;
    margin: 0 auto 12px;
  }
  .wh-hero-points {
    justify-content: center;
  }
  .wh-features-track {
    grid-template-columns: 1fr;
  }
  .wh-features-track.is-slider {
    gap: 16px;
  }
  .wh-features-track.is-slider > * {
    min-width: 100%;
    width: 100%;
    flex: 0 0 100%;
  }
  .wh-slider-arrow-prev { left: 8px; }
  .wh-slider-arrow-next { right: 8px; }
}

@media (max-width: 767px) {
  .wh-header-inner { min-height: 72px; gap: 12px; }
  .wh-search-form {
    margin-bottom: 18px;
  }
  .wh-search-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid var(--wh-border);
    background: #fff;
  }
  .wh-search-form input[type="text"] {
    min-height: 56px;
    padding: 0 16px;
    border: 1px solid var(--wh-border);
    border-radius: 10px;
  }
  .wh-search-submit {
    position: static;
    width: 100%;
    min-height: 48px;
  }
  .wh-hero-copy .subtext {
    font-size: 1.08rem;
    padding-top: 0;
  }
  .wh-hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }
  .wh-hero-point {
    justify-content: center;
    text-align: center;
  }
  .wh-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .wh-feature-card { padding: 24px 20px; }
}

@media (max-width: 479px) {
  .wh-hero-copy h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }
  .wh-slider-arrow {
    width: 40px;
    height: 40px;
  }
}


.wh-latest-posts {
  padding: 48px 0 56px;
  background: #fff;
}
.wh-posts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.25fr);
  gap: 36px;
  align-items: start;
}
.wh-post-featured,
.wh-post-list {
  background: #fff;
  border: 1px solid #edf1f7;
  border-radius: 18px;
  box-shadow: var(--wh-shadow);
}
.wh-post-featured {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
.wh-post-featured-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #eff6fd 0%, #e9eff9 100%);
}
.wh-post-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wh-post-placeholder,
.wh-post-list-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #eff6fd 0%, #e9eff9 100%);
  color: var(--wh-navy);
  font-family: var(--wh-heading-font);
  font-weight: 700;
}
.wh-post-featured-content {
  padding: 26px;
}
.wh-post-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--wh-orange);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.wh-post-featured h2 {
  font-size: clamp(1.8rem, 2vw, 2rem);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.wh-post-featured p {
  color: rgba(11,25,73,0.82);
  margin-bottom: 20px;
}
.wh-post-list {
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-content: start;
  align-self: start;
}
.wh-post-list-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 10px;
  border-radius: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.wh-post-list-item:hover {
  background: #f8fbff;
  transform: translateY(-1px);
}
.wh-post-list-media {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  background: #eff6fd;
}
.wh-post-list-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.wh-post-list-content h3 {
  font-size: 1rem;
  margin: 0 0 6px;
  line-height: 1.3;
}
.wh-post-list-content p {
  margin: 0;
  color: rgba(11,25,73,0.78);
  font-size: 0.96rem;
  line-height: 1.59;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
@media (max-width: 991px) {
  .wh-posts-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .wh-latest-posts {
    padding: 48px 0 56px;
  }
  .wh-post-featured-content {
    padding: 22px 20px;
  }
  .wh-post-list {
    padding: 14px;
  }
  .wh-post-list-item {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
    padding: 8px;
  }
  .wh-post-list-media {
    width: 84px;
    height: 84px;
  }
}


.wh-posts-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.wh-posts-toolbar-title {
  text-align: left;
  flex: 0 0 auto;
  display: grid;
  gap: 6px;
}
.wh-posts-toolbar-title h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
}
.wh-posts-toolbar-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
}
.wh-posts-toolbar-side {
  min-width: 0;
}
.wh-posts-toolbar-filter {
  flex: 0 0 auto;
}
.wh-posts-toolbar-search {
  width: min(100%, 360px);
  max-width: 360px;
}
.wh-post-control {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--wh-border);
  border-radius: 12px;
  background: #fff;
  color: var(--wh-navy);
  padding: 0 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wh-post-control:focus {
  outline: none;
  border-color: var(--wh-blue);
}
.wh-post-category-select {
  min-width: 220px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 52px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%230b1949' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px 16px;
}
.wh-post-search-wrap {
  position: relative;
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.wh-post-search-wrap:focus-within {
  box-shadow: 0 0 0 4px rgba(47, 167, 226, 0.14);
}
.wh-post-search-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: rgba(11,25,73,0.6);
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.wh-post-search-icon svg {
  width: 18px;
  height: 18px;
}
.wh-post-search-input {
  padding-left: 46px;
}
.wh-post-results-count {
  margin: 0;
  color: rgba(11,25,73,0.72);
  font-size: 0.95rem;
  text-align: left;
  white-space: nowrap;
}
.wh-posts-empty {
  grid-column: 1 / -1;
  min-height: 280px;
  border: 1px dashed var(--wh-border);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  color: rgba(11,25,73,0.72);
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fd 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.wh-posts-empty-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: #eff6fd;
  color: var(--wh-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.wh-posts-empty-icon svg {
  width: 28px;
  height: 28px;
}
.wh-posts-empty h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}
.wh-posts-empty p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}
.wh-post-featured-content,
.wh-post-list-content,
.wh-post-featured h2,
.wh-post-featured p,
.wh-post-list-content h3,
.wh-post-list-content p {
  min-width: 0;
  overflow-wrap: anywhere;
}
.wh-post-featured-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}
.wh-post-featured-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 6px;
  background: var(--wh-blue);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}
.wh-post-featured-cat:hover,
.wh-post-featured-cat:focus {
  color: #fff;
  text-decoration: none;
}
.wh-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.wh-post-meta span {
  color: rgba(11,25,73,0.72);
}
@media (max-width: 991px) {
  .wh-posts-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .wh-posts-toolbar-controls {
    width: 100%;
    justify-content: space-between;
  }
  .wh-posts-toolbar-title {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .wh-posts-toolbar {
    gap: 14px;
    margin-bottom: 16px;
  }
  .wh-posts-toolbar-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .wh-post-category-select,
  .wh-posts-toolbar-search {
    min-width: 0;
    width: 100%;
    max-width: none;
  }
}


.wh-home-banner {
  padding: 8px 0 72px;
  background: #fff;
}
.wh-home-banner-inner {
  display: flex;
  justify-content: center;
}
.wh-home-banner-link {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #edf1f7;
  box-shadow: var(--wh-shadow);
  background: #fff;
}
.wh-home-banner-link-desktop {
  width: min(100%, 728px);
}
.wh-home-banner-link-mobile {
  width: min(100%, 300px);
  display: none;
}
.wh-home-banner-image {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .wh-home-banner {
    padding: 0 0 48px;
  }
}

@media (max-width: 767px) {
  .wh-home-banner.has-mobile-banner .wh-home-banner-link-desktop {
    display: none;
  }
  .wh-home-banner.has-mobile-banner .wh-home-banner-link-mobile {
    display: block;
  }
}


.wh-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}
.wh-section-heading > * { min-width: 0; }
.wh-section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--wh-orange);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wh-section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}
.wh-section-heading p {
  max-width: 800px;
  color: rgba(11,25,73,0.78);
}

.wh-reviews {
  padding: 0 0 80px;
  background: #fff;
}
.wh-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.wh-reviews-archive {
    padding: 0px 0 15px;
    background: linear-gradient(180deg, #eff6fd 0%, #ffffff 28%);
}
.wh-reviews-archive-hero {
  padding: 34px;
  margin-bottom: 24px;
}
.wh-reviews-archive-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.wh-reviews-archive-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.wh-reviews-archive-search {
  width: min(100%, 420px);
}
.wh-reviews-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.wh-review-card-archive .wh-review-card-content {
  display: grid;
  gap: 10px;
}
.wh-review-card-archive .wh-review-rating {
  margin: 0;
}
.wh-category-list-item + .wh-category-list-item {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #edf1f7;
}

.wh-review-card {
  background: #fff;
  border: 1px solid #edf1f7;
  border-radius: 18px;
  overflow: hidden;
}
.wh-review-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #eff6fd 0%, #e9eff9 100%);
}
.wh-review-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wh-review-card-content {
  padding: 24px;
}
.wh-review-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.wh-review-card p {
  color: rgba(11,25,73,0.8);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.wh-review-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--wh-orange);
  font-weight: 700;
}
.wh-review-link:hover {
  text-decoration: underline;
}

.wh-basic-page {
  padding: 52px 0 72px;
  background: linear-gradient(180deg, #eff6fd 0%, #ffffff 28%);
}
.wh-basic-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: start;
}
.wh-basic-page-article,
.wh-sidebar-card {
  background: #fff;
  border: 1px solid #edf1f7;
  border-radius: 20px;
  box-shadow: var(--wh-shadow);
}
.wh-basic-page-article {
  padding: 34px;
}
.wh-basic-page-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #edf1f7;
  margin-bottom: 28px;
}
.wh-basic-page-header h1 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.wh-basic-page-content > *:last-child {
  margin-bottom: 0;
}
.wh-basic-page-content h2,
.wh-basic-page-content h3,
.wh-basic-page-content h4 {
  margin-top: 1.8em;
margin-bottom:15px;
}
.wh-basic-page-content ul,
.wh-basic-page-content ol {
  margin: 0 0 16px 20px;
  padding-left: 20px;
}
.wh-basic-page-content ul {
  list-style: disc;
}
.wh-basic-page-content ol {
  list-style: decimal;
}
.wh-basic-page-content blockquote {
  margin: 0 0 20px;
  padding: 18px 22px;
  border-left: 4px solid var(--wh-blue);
  background: #f7fbff;
  border-radius: 0 14px 14px 0;
}
.wh-basic-page-content img {
  border-radius: 10px;
}
.wh-basic-page-sidebar {
  position: static;
}
.wh-basic-page-sidebar,
.wh-single-sidebar {
  align-self: stretch;
  min-height: 100%;
}
.wh-sidebar-stack {
  display: grid;
  gap: 20px;
  min-height: 100%;
  align-content: start;
}
.wh-sidebar-card {
  padding: 24px;
}
.wh-sidebar-card h2 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.wh-sidebar-search-card {
  position: sticky;
  top: 110px;
  position: sticky;
  overflow: visible;
}
.wh-sidebar-search-card h2 {
  font-size: 2rem;
}
.wh-sidebar-search-card.is-floating {
  border-color: rgba(58, 129, 197, 0.42);
  box-shadow: 0 24px 54px rgba(11,25,73,0.16), 0 0 0 1px rgba(58, 129, 197, 0.16);
}
.wh-sidebar-search-card.is-floating::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 26px;
  background: radial-gradient(circle at top, rgba(58,129,197,0.18), rgba(58,129,197,0) 68%);
  pointer-events: none;
  z-index: -1;
}

.wh-sidebar-card p {
  color: rgba(11,25,73,0.78);
}
.wh-search-form-compact {
  margin: 18px 0 0;
}
.wh-search-form-compact .wh-search-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wh-search-form-compact input[type="text"] {
  min-height: 56px;
  padding: 0 16px;
  border-radius: 12px;
}
.wh-search-form-compact .wh-search-submit {
  position: static;
  width: 100%;
  min-height: 48px;
}
.wh-sidebar-feature-list,
.wh-sidebar-review-list {
  display: grid;
  gap: 16px;
}
.wh-sidebar-feature-item + .wh-sidebar-feature-item,
.wh-sidebar-review-item + .wh-sidebar-review-item {
  padding-top: 16px;
  border-top: 1px solid #edf1f7;
}
.wh-sidebar-feature-item h3,
.wh-sidebar-review-copy h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.wh-sidebar-feature-item p {
  margin-bottom: 8px;
}
.wh-sidebar-review-copy p {
  margin: 0 0 8px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(11,25,73,0.78);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.wh-sidebar-review-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.wh-sidebar-review-thumb {
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 12px;
  overflow: hidden;
  background: #eff6fd;
}
.wh-sidebar-review-thumb img,
.wh-sidebar-review-thumb .wh-post-list-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 991px) {
  .wh-section-heading,
  .wh-basic-page-grid,
  .wh-reviews-grid,
  .wh-reviews-archive-grid {
    grid-template-columns: 1fr;
  }
  .wh-reviews-archive-toolbar {
    align-items: stretch;
  }
  .wh-reviews-archive-search {
    width: 100%;
  }
  .wh-section-heading {
    align-items: start;
  }
  .wh-basic-page-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .wh-reviews {
    padding-bottom: 48px;
  }
  .wh-reviews-archive {
    padding: 40px 0 48px;
  }
  .wh-reviews-archive-hero {
    padding: 24px 20px;
  }
  .wh-review-card-content,
  .wh-basic-page-article,
  .wh-sidebar-card {
    padding: 20px;
  }
  .wh-basic-page {
    padding: 40px 0 48px;
  }
}

/* Round 2 refinements */
.wh-basic-page-header h1 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}
.wh-sidebar-feature-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.wh-sidebar-feature-item + .wh-sidebar-feature-item,
.wh-sidebar-review-item + .wh-sidebar-review-item {
  padding-top: 16px;
  border-top: 1px solid #edf1f7;
}
.wh-sidebar-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(180deg, #eff6fd 0%, #e9eff9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.wh-sidebar-feature-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.wh-sidebar-feature-copy h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.wh-sidebar-feature-copy p {
  margin-bottom: 10px;
}
.wh-single-page {
  padding: 56px 0 80px;
  background: linear-gradient(180deg, #eff6fd 0%, #ffffff 22%);
}
.wh-single-standard-grid,
.wh-single-review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.85fr);
  gap: 32px;
  align-items: start;
  padding: 52px 0px 32px;
}
.wh-single-card {
  background: #fff;
  border: 1px solid #edf1f7;
  border-radius: 22px;
  box-shadow: var(--wh-shadow);
  margin-bottom:30px;
}
.wh-single-standard {
  display: grid;
  gap: 24px;
}
.wh-single-standard-header {
  padding: 34px;
}
.wh-single-standard-header h1,
.wh-single-review-copy h1 {
  font-size: clamp(2rem, 4vw, 2rem);
  margin-bottom: 14px;
}
.wh-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(11,25,73,0.72);
  font-weight: 600;
  margin-bottom: 18px;
}
.wh-single-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wh-single-meta span + span::before {
  content: "•";
  margin-right: 2px;
  color: var(--wh-orange);
}
.wh-review-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: -4px 0 18px;
  font-weight: 700;
  color: var(--wh-navy);
}
.wh-review-rating-stars {
  position: relative;
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.16em;
  color: rgba(11,25,73,0.14);
}
.wh-review-rating-stars::before,
.wh-review-rating-stars::after {
  content: "★★★★★";
}
.wh-review-rating-stars::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc((var(--wh-rating, 0) / 5) * 100%);
  overflow: hidden;
  color: #f3ab2b;
}
.wh-review-rating-value {
  font-size: 0.95rem;
  color: rgba(11,25,73,0.72);
}
.wh-review-card-meta {
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(11,25,73,0.56);
}

.wh-single-standard-excerpt,
.wh-single-review-excerpt {
  color: rgba(11,25,73,0.82);
  font-size: 1.06rem;
  max-width: 720px;
  margin-bottom: 0;
}
.wh-single-standard-media {
  overflow: hidden;
}
.wh-single-standard-image,
.wh-single-review-image {
  width: 100%;
  display: block;
}
.wh-single-content {
  padding: 34px;
}
.wh-single-content > *:last-child {
  margin-bottom: 0;
}
.wh-single-content h2,
.wh-single-content h3,
.wh-single-content h4 {
  margin-top: 1.8em;
}
.wh-single-content ul,
.wh-single-content ol {
  margin: 0 0 16px 20px;
  padding-left: 20px;
}
.wh-single-content ul {
  list-style: disc;
}
.wh-single-content ol {
  list-style: decimal;
}
.wh-single-content blockquote {
  margin: 0 0 20px;
  padding: 18px 22px;
  border-left: 4px solid var(--wh-blue);
  background: #f7fbff;
  border-radius: 0 14px 14px 0;
}
.wh-single-content img {
  border-radius: 16px;
}
.wh-single-related {
  padding: 28px;
}
.wh-related-slider-shell {
  position: relative;
}
.wh-related-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.wh-related-track::-webkit-scrollbar {
  display: none;
}
.wh-related-track > * {
  flex: 0 0 calc((100% - 24px) / 2);
  min-width: calc((100% - 24px) / 2);
  scroll-snap-align: start;
}
.wh-single-related .wh-slider-arrow-prev {
  left: -22px;
}
.wh-single-related .wh-slider-arrow-next {
  right: -22px;
}
.wh-single-sidebar {
  position: static;
}
.wh-single-review {
  display: grid;
  gap: 28px;
}
.wh-single-review-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}
.wh-single-review-copy,
.wh-single-review-media {
  background: #fff;
  border: 1px solid #edf1f7;
  border-radius: 22px;
  box-shadow: var(--wh-shadow);
}
.wh-single-review-copy {
  padding: 38px;
}
.wh-single-review-media {
  overflow: hidden;
  min-height: 100%;
}
.wh-single-review-media .wh-post-placeholder {
  min-height: 100%;
}
.wh-single-review-image {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .wh-single-standard-grid,
  .wh-single-review-grid,
  .wh-single-review-hero {
    grid-template-columns: 1fr;
  }
  .wh-single-sidebar,
  .wh-basic-page-sidebar,
  .wh-sidebar-search-card {
    position: static;
  }
}
@media (max-width: 767px) {
  .wh-sidebar-feature-item {
    grid-template-columns: 48px minmax(0, 1fr);
  }
  .wh-related-track > * {
    flex-basis: 100%;
    min-width: 100%;
  }
  .wh-sidebar-feature-icon {
    width: 48px;
    height: 48px;
  }
  .wh-single-standard-header,
  .wh-single-content,
  .wh-single-related,
  .wh-single-review-copy,
  .wh-basic-page-article,
  .wh-sidebar-card {
    padding: 24px;
  }
}

/* Advertising suite + typography refinement */
body {
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600 !important;
}
.wh-btn,
.wh-search-submit {
  font-weight: 500;
}
.wh-main-nav .menu > li > a,
.wh-mobile-panel .menu > li > a,
.wh-main-nav .sub-menu a {
  font-weight: 400;
}
.wh-section-kicker,
.wh-post-kicker,
.wh-review-link,
.wh-post-placeholder,
.wh-post-list-placeholder {
  font-weight: 600;
}
.entry-content a:not(.wh-btn):not(.wh-review-link),
.wh-basic-page-content a:not(.wh-btn):not(.wh-review-link),
.wh-single-content a:not(.wh-btn):not(.wh-review-link) {
  color: var(--wh-orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
.entry-content a:not(.wh-btn):not(.wh-review-link):hover,
.wh-basic-page-content a:not(.wh-btn):not(.wh-review-link):hover,
.wh-single-content a:not(.wh-btn):not(.wh-review-link):hover {
  color: var(--wh-orange-alt);
}

.wh-ad-banner {
  background: transparent;
}
.wh-ad-banner-inner {
  display: flex;
  justify-content: center;
}
.wh-ad-banner-link {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #edf1f7;
  box-shadow: var(--wh-shadow);
  background: #fff;
}
.wh-ad-banner-link-desktop {
  width: min(100%, 728px);
}
.wh-ad-banner-link-mobile {
  width: min(100%, 300px);
  display: none;
}
.wh-ad-banner-image {
  display: block;
  width: 100%;
  height: auto;
}
.wh-home-banner {
  padding: 8px 0 72px;
  background: #fff;
}
.wh-home-banner-inner {
  width: 100%;
}
.wh-inline-ad,
.wh-sidebar-ad {
  margin-top: 24px;
}
.wh-inline-ad .wh-ad-banner-link-desktop {
  width: 100%;
}
.wh-sidebar-ad .wh-ad-banner-link-desktop,
.wh-sidebar-ad .wh-ad-banner-link-mobile {
  width: 100%;
}
.wh-sidebar-ad .wh-ad-banner-link {
  border-radius: 20px;
}
@media (max-width: 767px) {
  .wh-home-banner {
    padding: 0 0 48px;
  }
}
@media (max-width: 767px) {
  .wh-ad-banner.has-mobile-banner .wh-ad-banner-link-desktop {
    display: none;
  }
  .wh-ad-banner.has-mobile-banner .wh-ad-banner-link-mobile {
    display: block;
  }
}

/* Round 3 refinements */
.wh-single-standard-header .wh-review-rating,
.wh-single-review-copy .wh-review-rating {
  gap: 12px;
  margin: 2px 0 18px;
}
.wh-single-standard-header .wh-review-rating-stars,
.wh-single-review-copy .wh-review-rating-stars {
  font-size: 1.45rem;
}
.wh-single-standard-header .wh-review-rating-value,
.wh-single-review-copy .wh-review-rating-value {
  font-size: 1rem;
}
.wh-review-card-archive .wh-review-card-content {
  display: block;
}
.wh-review-card-archive .wh-review-card-content h3 {
  margin-bottom: 10px;
}
.wh-review-card-archive .wh-review-rating {
  margin: 0 0 14px;
}
.wh-basic-page-no-sidebar .container {
}
.wh-basic-page-article-full {
  max-width: 100%;
}

.wh-archive-page-grid {
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.9fr);
}
.wh-archive-page-article {
  padding: 0;
}
.wh-archive-page-sidebar .wh-sidebar-stack {
  gap: 20px;
}
.wh-archive-sidebar-section {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.wh-section-kicker.wh-section-kicker-spaced {
  margin-bottom: 20px;
}


.wh-search-open {
  overflow: hidden;
}
.wh-header-search-trigger {
  border: 1px solid var(--wh-border);
  background: #fff;
  color: var(--wh-orange);
}
.wh-header-search-trigger .icon {
  color: var(--wh-navy);
}
.wh-search-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(11, 25, 73, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 120;
}
.wh-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.wh-search-overlay-backdrop {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
}
.wh-search-overlay-panel {
  position: relative;
  width: min(760px, 100%);
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(11, 25, 73, 0.2);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}
.wh-search-overlay.is-open .wh-search-overlay-panel {
  transform: translateY(0) scale(1);
}
.wh-search-overlay-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--wh-border);
  border-radius: 50%;
  background: #fff;
  color: var(--wh-navy);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.wh-search-overlay-kicker {
  margin: 0 0 8px !important;
  color: var(--wh-orange);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.wh-search-overlay-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 2rem);
}
.wh-search-overlay-form {
  margin: 0;
}
.wh-search-overlay-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  position: relative;
}
.wh-search-overlay-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(11,25,73,0.55);
  pointer-events: none;
  z-index: 1;
}
.wh-search-overlay-icon svg {
  width: 20px;
  height: 20px;
}
.wh-search-overlay-field input[type="search"] {
  width: 100%;
  height: 48px;
  min-height: 48px;
  padding: 0 20px 0 54px;
  border: 1px solid var(--wh-border);
  border-radius: 10px;
  font-size: 1.05rem;
  appearance: none;
  -webkit-appearance: none;
}
.wh-search-overlay-field input[type="search"]::-webkit-search-decoration,
.wh-search-overlay-field input[type="search"]::-webkit-search-cancel-button,
.wh-search-overlay-field input[type="search"]::-webkit-search-results-button,
.wh-search-overlay-field input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
.wh-search-overlay-field input[type="search"]:focus {
  outline: none;
  border-color: var(--wh-blue);
  box-shadow: 0 0 0 4px rgba(47, 167, 226, 0.12);
}
.wh-post-link-columns {
  padding: 0 0 56px;
  background: #fff;
}
.wh-post-link-columns-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.wh-post-link-column {
  padding: 24px;
  border: 1px solid #edf1f7;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: var(--wh-shadow);
}
.wh-post-link-column h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.wh-post-link-column ul {
  display: grid;
  gap: 12px;
}
.wh-post-link-column li {
  padding-bottom: 12px;
  border-bottom: 1px solid #edf1f7;
}
.wh-post-link-column li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.wh-post-link-column a {
  color: var(--wh-navy);
  font-weight: 400;
  line-height: 1.45;
}
.wh-post-link-column a:hover {
  color: var(--wh-orange);
}
.wh-post-link-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.wh-post-link-thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f8fe;
  flex-shrink: 0;
}
.wh-post-link-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wh-post-link-thumb-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(11, 25, 73, 0.58);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.wh-post-link-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.wh-post-link-title {
  min-width: 0;
  display: block;
}
.wh-post-link-meta {
  display: block;
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(11, 25, 73, 0.64);
  font-weight: 600;
}
@media (max-width: 991px) {
  .wh-post-link-columns-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .wh-search-overlay {
    padding: 16px;
  }
  .wh-search-overlay-panel {
    padding: 28px 18px 22px;
    border-radius: 22px;
  }
  .wh-search-overlay-field {
    grid-template-columns: 1fr;
  }
  .wh-search-overlay-field .wh-btn {
    width: 100%;
  }
}


.wh-footer-brand {
  display: grid;
  gap: 16px;
  align-content: start;
}
.wh-footer-logo-text + .wh-socials,
.wh-footer-brand .wh-socials {
  justify-content: flex-start;
}
.wh-footer-bottom {
  align-items: center;
}
.wh-search-results {
  padding: 40px 0 72px;
}
.wh-search-results-header {
  margin-bottom: 28px;
  padding: 28px;
  border: 1px solid #edf1f7;
  border-radius: 24px;
  background: linear-gradient(180deg, #f4f8fe 0%, #ffffff 100%);
}
.wh-search-results-header .wh-search-overlay-form {
  width: 100%;
  max-width: none;
}

.wh-search-results-form .wh-search-overlay-field {
  grid-template-columns: minmax(0, 1fr) auto;
}
.wh-search-result-media {
  display: block;
  width: 100%;
  height: 100%;
}
.wh-search-result-image,
.wh-search-result-image-placeholder {
  width: 100%;
  height: 180px;
  border-radius: 18px;
}
.wh-search-result-image {
  object-fit: cover;
}
.wh-search-result-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #eef5fd 0%, #dce9fb 100%);
  color: var(--wh-navy);
  font-family: var(--wh-heading-font);
  font-weight: 700;
}
.wh-search-result-body {
  min-width: 0;
}
.wh-search-result-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}


.wh-search-results-list {
  display: grid;
  gap: 18px;
}
.wh-search-result-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 26px;
  border: 1px solid #edf1f7;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--wh-shadow);
}
.wh-search-result-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}
.wh-search-result-card h2 a {
  color: var(--wh-navy);
}
.wh-search-result-card h2 a:hover {
  color: var(--wh-orange);
}
.wh-search-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(11, 25, 73, 0.7);
  font-size: 0.95rem;
}
.wh-search-result-excerpt {
  margin-bottom: 18px !important;
  color: rgba(11, 25, 73, 0.92);
}
.wh-search-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.wh-search-empty {
  padding: 34px 28px;
  border: 1px dashed #d5dfef;
  border-radius: 22px;
  background: #f9fbff;
}
.wh-search-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.wh-search-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--wh-border);
  border-radius: 999px;
  background: #fff;
  color: var(--wh-navy);
  font-weight: 600;
}
.wh-search-pagination .page-numbers.current,
.wh-search-pagination .page-numbers:hover {
  background: var(--wh-orange);
  border-color: var(--wh-orange);
  color: #fff;
}
@media (max-width: 767px) {
  .wh-search-results {
    padding: 28px 0 56px;
  }
  .wh-search-results-header,
  .wh-search-result-card,
  .wh-search-empty {
    padding: 22px 18px;
    border-radius: 18px;
  }
  .wh-search-result-card {
    grid-template-columns: 1fr;
  }
  .wh-search-result-image,
  .wh-search-result-image-placeholder {
    height: 200px;
  }
}

@media (max-width: 991px) {
  .wh-search-result-card {
    grid-template-columns: 1fr;
  }
  .wh-search-result-image,
  .wh-search-result-image-placeholder {
    height: 200px;
  }
}


.wh-comments-card {
  margin-top: 24px;
}
.wh-comments-area {
  color: var(--wh-navy);
}
.wh-comments-title,
.comment-reply-title {
  margin: 0 0 18px;
}
.wh-comment-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.wh-comment-list .comment {
  padding: 20px 0;
  border-top: 1px solid var(--wh-border);
}
.wh-comment-list > .comment:first-child {
  border-top: 0;
  padding-top: 0;
}
.wh-comment-list .children {
  list-style: none;
  margin: 18px 0 0 24px;
  padding: 0;
}
.wh-comment-list .comment-body {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
}
.wh-comment-list .avatar {
  border-radius: 999px;
}
.wh-comment-list .comment-meta {
  margin-bottom: 8px;
}
.wh-comment-list .comment-author {
  font-weight: 700;
}
.wh-comment-list .comment-metadata a,
.wh-comment-list .reply a,
.wh-comments-area a {
  color: var(--wh-orange);
}
.wh-comment-list .comment-metadata a:hover,
.wh-comment-list .reply a:hover,
.wh-comments-area a:hover {
  color: var(--wh-navy);
}
.wh-comments-area .comment-content p:last-child {
  margin-bottom: 0;
}
.wh-comments-area .comment-respond {
  padding-top: 8px;
}
.wh-comments-area label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.wh-comments-area textarea,
.wh-comments-area input[type="text"],
.wh-comments-area input[type="email"],
.wh-comments-area input[type="url"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--wh-border);
  border-radius: 14px;
  background: #fff;
  color: var(--wh-navy);
}
.wh-comments-area textarea {
  min-height: 160px;
  resize: vertical;
}
.wh-comments-area .form-submit {
  margin-bottom: 0;
}
.wh-comments-area .comment-form-cookies-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.wh-comments-area .comment-form-cookies-consent input {
  margin-top: 6px;
}
@media (max-width: 767px) {
  .wh-comment-list .comment-body {
    grid-template-columns: 1fr;
  }
  .wh-comment-list .children {
    margin-left: 16px;
  }
}


/* Comment layout refinements */
.wh-comments-area {
  margin-top: 0;
}
.wh-comments-area > *:last-child {
  margin-bottom: 0;
}
.wh-comments-area .comment-list,
.wh-comments-area .comment-form,
.wh-comments-area .logged-in-as,
.wh-comments-area .comment-notes,
.wh-comments-area .no-comments,
.wh-comments-area .comments-navigation {
  margin-top: 0;
}
.wh-comments-area .comment-list,
.wh-comments-area .comment-form {
  margin-bottom: 0;
}
.wh-comment-list .comment {
  padding: 24px 0 0;
  margin-top: 24px;
}
.wh-comment-list > .comment:first-child {
  margin-top: 0;
}
.wh-comment-list .comment-body {
  display: block;
  padding: 24px;
  border: 1px solid var(--wh-border);
  border-radius: 18px;
  background: #fff;
}
.wh-comment-list .comment-meta {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.wh-comment-list .comment-author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 0;
}
.wh-comment-list .comment-author .avatar {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
}
.wh-comment-list .comment-author .fn {
  color: var(--wh-navy);
  font-style: normal;
  font-weight: 700;
}
.wh-comment-list .comment-author .says {
  display: none;
}
.wh-comment-list .comment-metadata {
  margin-left: auto;
  padding-top: 2px;
  font-size: 0.95rem;
  white-space: nowrap;
}
.wh-comment-list .comment-awaiting-moderation {
  margin: 0 0 12px;
  color: var(--wh-orange);
  font-weight: 600;
}
.wh-comments-area .comment-content {
  padding-left: 68px;
}
.wh-comments-area .reply {
  padding-left: 68px;
  margin-top: 14px;
}
.wh-comments-area .reply a {
  font-weight: 600;
}
.wh-comments-area .comment-respond {
  margin-top: 32px;
  padding-top: 0;
}
.wh-comments-area .comment-respond,
.wh-comments-area .comment-form {
  display: grid;
  gap: 16px;
}
.wh-comments-area .comment-form p {
  margin: 0;
}
.wh-comments-area .comment-form-comment,
.wh-comments-area .comment-form-author,
.wh-comments-area .comment-form-email,
.wh-comments-area .comment-form-url {
  display: grid;
  gap: 8px;
}
.wh-comments-area .comment-form-cookies-consent label {
  margin: 0;
  font-weight: 400;
}
.wh-comments-area textarea:focus,
.wh-comments-area input[type="text"]:focus,
.wh-comments-area input[type="email"]:focus,
.wh-comments-area input[type="url"]:focus {
  outline: 0;
  border-color: var(--wh-orange);
  box-shadow: 0 0 0 3px rgba(245, 103, 12, 0.12);
}
@media (max-width: 767px) {
  .wh-comment-list .comment-body {
    padding: 18px;
  }
  .wh-comment-list .comment-meta {
    display: block;
  }
  .wh-comment-list .comment-author {
    margin-bottom: 10px;
  }
  .wh-comment-list .comment-metadata,
  .wh-comments-area .comment-content,
  .wh-comments-area .reply {
    margin-left: 0;
    padding-left: 0;
  }
  .wh-comment-list .children {
    margin-top: 16px;
  }
}


/* Round 4 fixes */
.wh-post-link-columns .container {
  width: min(calc(100% - 32px), var(--wh-container));
  max-width: var(--wh-container);
}
.wh-post-link-columns-grid {
  width: 100%;
  align-items: stretch;
}
.wh-post-link-column {
  width: 100%;
}

.wh-archive-page-sidebar .wh-sidebar-card,
.wh-archive-page-sidebar .wh-sidebar-search-card {
  background: #fff;
  border: 1px solid #edf1f7;
  border-radius: 20px;
  box-shadow: var(--wh-shadow);
  padding: 24px;
}
.wh-archive-page-sidebar .wh-sidebar-search-card {
  position: sticky;
  top: 110px;
}
@media (max-width: 991px) {
  .wh-archive-page-sidebar .wh-sidebar-search-card {
    position: static !important;
    top: auto;
  }
}

.wh-pagination-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.wh-pagination-wrap .wh-search-pagination {
  margin-top: 0;
  width: 100%;
  justify-content: center;
}
.wh-pagination-wrap .wh-search-pagination li {
  display: inline-flex;
}


/* Round 5 fixes */
.wh-post-link-columns-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 24px;
}
.wh-post-link-column {
  width: calc(50% - 12px);
  flex: 0 0 calc(50% - 12px);
  max-width: calc(50% - 12px);
}
@media (max-width: 991px) {
  .wh-post-link-column {
    width: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

.wh-pagination-wrap {
  display: block;
  width: 100%;
  text-align: center;
}
.wh-pagination-wrap .wh-search-pagination {
  display: inline-flex;
  width: auto;
  margin: 28px auto 0;
  padding: 0;
  justify-content: center;
  float: none;
}
.wh-pagination-wrap .wh-search-pagination li {
  display: inline-flex;
  float: none;
}
.wh-pagination-wrap .wh-search-pagination .page-numbers {
  margin: 0;
}

.wh-category-results-count {
  text-align: right;
  margin-left: auto;
}


/* Round 6 fixes */
.wh-search-results-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.wh-search-results-topline .wh-search-overlay-kicker,
.wh-search-results-topline .wh-category-results-count {
  margin: 0;
}
.wh-search-results-header h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}
.wh-search-results-count {
  margin: 0 0 0 auto;
  text-align: right;
  white-space: nowrap;
  font-weight: 600;
  color: rgba(11, 25, 73, 0.76);
}
.wh-search-results-header .wh-search-results-form {
  margin-top: 18px;
}
.wh-category-results-count {
  text-align: right;
  margin-left: auto;
  white-space: nowrap;
}
.wh-posts-toolbar-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.wh-posts-toolbar-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wh-posts-toolbar-controls > .wh-post-results-count {
  margin: 0;
  white-space: nowrap;
  order: 1;
}
.wh-posts-toolbar-filter {
  order: 2;
}
.wh-posts-toolbar-search {
  order: 3;
}
.wh-posts-toolbar-title .wh-post-results-count {
  margin: 0;
  white-space: nowrap;
}
.wh-pagination-wrap,
nav.wh-pagination-wrap {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}
ul.page-numbers.wh-search-pagination,
.page-numbers.wh-search-pagination {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: auto !important;
  margin: 46px auto 0 !important;
  padding-left: 0;
  float: none !important;
}
ul.page-numbers.wh-search-pagination li,
.page-numbers.wh-search-pagination li {
  display: inline-flex;
  float: none !important;
}
@media (max-width: 767px) {
  .wh-features {
    padding: 20px 0;
  }
  .wh-search-results-topline,
  .wh-posts-toolbar-title {
    display: grid;
    gap: 8px;
    align-items: start;
  }
  .wh-posts-toolbar-controls {
    align-items: stretch;
  }
  .wh-search-results-count,
  .wh-category-results-count,
  .wh-posts-toolbar-controls > .wh-post-results-count {
    margin-left: 0;
    white-space: normal;
    text-align: left;
  }
  .wh-posts-toolbar-controls > .wh-post-results-count {
    order: 0;
  }
}


/* Contact form styling */
.wgh-contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid #edf1f7;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--wh-shadow);
}
.wgh-form-row {
  display: grid;
  gap: 8px;
}
.wgh-form-row label {
  margin: 0;
  color: var(--wh-navy);
  font-family: var(--wh-heading-font);
  font-size: 0.98rem;
  font-weight: 700;
}
.wgh-contact-form input[type="text"],
.wgh-contact-form input[type="email"],
.wgh-contact-form input[type="tel"],
.wgh-contact-form select,
.wgh-contact-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--wh-border);
  border-radius: 16px;
  background: #fff;
  color: var(--wh-navy);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.wgh-contact-form textarea {
  min-height: 180px;
  resize: vertical;
}
.wgh-contact-form input::placeholder,
.wgh-contact-form textarea::placeholder {
  color: rgba(11, 25, 73, 0.45);
}
.wgh-contact-form input:focus,
.wgh-contact-form select:focus,
.wgh-contact-form textarea:focus {
  outline: 0;
  border-color: var(--wh-orange);
  box-shadow: 0 0 0 3px rgba(245, 103, 12, 0.12);
}
.wgh-contact-form .wpcf7-form-control-wrap {
  display: block;
}
.wgh-form-submit {
  display: flex;
  justify-content: flex-start;
  margin-top: 4px;
}
.wgh-form-submit .wpcf7-submit,
.wgh-form-submit input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--wh-orange-alt);
  color: #fff;
  font-family: var(--wh-heading-font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  box-shadow: 0 18px 34px rgba(245, 103, 12, 0.22);
}
.wgh-form-submit .wpcf7-submit:hover,
.wgh-form-submit input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(245, 103, 12, 0.26);
}
.wgh-contact-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 0.9rem;
}
.wgh-contact-form .wpcf7-response-output {
  margin: 0;
  padding: 12px 16px;
  border-radius: 14px;
}
@media (max-width: 767px) {
  .wgh-contact-form {
    padding: 22px 18px;
    border-radius: 18px;
  }
  .wgh-form-submit .wpcf7-submit,
  .wgh-form-submit input[type="submit"] {
    width: 100%;
  }
  .wh-logo img {
    max-width: min(100%, var(--wh-logo-width-mobile, var(--wh-header-logo-mobile-width, 160px))) !important;
  }
  .wh-footer-logo img {
    max-width: min(100%, var(--wh-footer-logo-width-mobile, var(--wh-footer-logo-mobile-width, 150px))) !important;
  }
}

.wgh-privacy-notice {
  width: 100%;
  color: #1f2937;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.wgh-privacy-notice *,
.wgh-privacy-notice *::before,
.wgh-privacy-notice *::after {
  box-sizing: border-box;
}

.wgh-privacy-notice a {
  color: #1d4ed8;
  text-decoration: none;
  word-break: break-word;
}

.wgh-privacy-notice a:hover,
.wgh-privacy-notice a:focus {
  text-decoration: underline;
}

.wgh-updated {
  margin: 0 0 28px;
  font-size: 15px;
  color: #4b5563;
}

.wgh-section {
  margin: 0 0 22px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
}

.wgh-section h2 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.25;
  color: #0f172a;
}

.wgh-section h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
  color: #111827;
}

.wgh-section p:last-child,
.wgh-section ul:last-child,
.wgh-section table:last-child,
.wgh-card:last-child,
.wgh-definition-item:last-child {
  margin-bottom: 0;
}

.wgh-privacy-notice p {
  margin: 0 0 14px;
}

.wgh-privacy-notice ul {
  margin: 0 0 14px 20px;
  padding: 0;
}

.wgh-privacy-notice li {
  margin: 0 0 8px;
}

.wgh-definition-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wgh-definition-item,
.wgh-card {
  padding: 18px;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  background: #f8fbff;
  margin-bottom: 14px;
}

.wgh-card ul {
  margin-bottom: 0;
}

.wgh-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.wgh-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.wgh-table thead th {
  background: #eff6ff;
  color: #0f172a;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 16px;
  border-bottom: 1px solid #dbe3ee;
}

.wgh-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #e5ebf3;
  vertical-align: top;
}

.wgh-table tbody tr:nth-child(even) {
  background: #fafcff;
}

.wgh-table tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 900px) {
  .wgh-definition-list {
    grid-template-columns: 1fr;
  }

  .wgh-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .wgh-privacy-notice {
    font-size: 15px;
    line-height: 1.65;
  }

  .wgh-section {
    padding: 18px;
    border-radius: 12px;
  }

  .wgh-section h2 {
    font-size: 21px;
  }

  .wgh-section h3 {
    font-size: 18px;
  }

  .wgh-definition-item,
  .wgh-card {
    padding: 16px;
  }
}

.wgh-terms-of-use {
  width: 100%;
  color: #1f2937;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.wgh-terms-of-use *,
.wgh-terms-of-use *::before,
.wgh-terms-of-use *::after {
  box-sizing: border-box;
}

.wgh-terms-of-use a {
  color: #1d4ed8;
  text-decoration: none;
  word-break: break-word;
}

.wgh-terms-of-use a:hover,
.wgh-terms-of-use a:focus {
  text-decoration: underline;
}

.wgh-updated {
  margin: 0 0 28px;
  font-size: 15px;
  color: #4b5563;
}

.wgh-section {
  margin: 0 0 22px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
}

.wgh-section h2 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.25;
  color: #0f172a;
}

.wgh-section p:last-child,
.wgh-section ul:last-child {
  margin-bottom: 0;
}

.wgh-terms-of-use p {
  margin: 0 0 14px;
}

.wgh-terms-of-use ul {
  margin: 0 0 14px 20px;
  padding: 0;
}

.wgh-terms-of-use li {
  margin: 0 0 8px;
}

@media (max-width: 640px) {
  .wgh-terms-of-use {
    font-size: 15px;
    line-height: 1.65;
  }

  .wgh-section {
    padding: 18px;
    border-radius: 12px;
  }

  .wgh-section h2 {
    font-size: 21px;
  }
}