:root {
  --hc-bg: #020b17;
  --hc-bg-deep: #010711;
  --hc-panel: #07172a;
  --hc-panel-2: #0a2138;
  --hc-line: rgba(69, 181, 241, 0.34);
  --hc-line-strong: rgba(49, 214, 255, 0.62);
  --hc-blue: #12aef5;
  --hc-cyan: #31d6ff;
  --hc-aqua: #64f2ff;
  --hc-green: #75e35d;
  --hc-text: #edf9ff;
  --hc-muted: #9eb4c5;
  --hc-soft: #c9dae5;
  --hc-danger: #ff7c82;
  --hc-radius: 9px;
  --hc-radius-lg: 15px;
  --hc-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  --hc-container: 1180px;
  --hc-shell-container: 1700px;
  --hc-heading: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --hc-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--hc-bg-deep);
}

body {
  margin: 0;
  color: var(--hc-text);
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 109, 181, 0.12), transparent 28rem),
    linear-gradient(180deg, #020b17 0%, #02101f 45%, #010914 100%);
  font-family: var(--hc-body);
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .hc-site-header {
  top: 32px;
}

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

a {
  color: var(--hc-cyan);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: #fff;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: #fff;
  font-family: var(--hc-heading);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

p {
  margin-top: 0;
}

ul,
ol {
  padding-left: 1.2rem;
}

::selection {
  color: #001525;
  background: var(--hc-cyan);
}

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

.screen-reader-text:focus {
  top: 8px;
  left: 8px;
  z-index: 999999;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto !important;
  color: #00101f;
  background: #fff;
  border-radius: 6px;
}

.hc-container {
  width: min(calc(100% - 36px), var(--hc-container));
  margin-inline: auto;
}

:where(.hc-site-header, .hc-site-footer, .hc-front-page) .hc-container {
  width: min(90%, var(--hc-shell-container));
}

.hc-main {
  min-height: 70vh;
}

.hc-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 76px;
  background: rgba(1, 10, 23, 0.94);
  border-bottom: 1px solid rgba(80, 167, 219, 0.22);
  backdrop-filter: blur(14px);
}

.hc-header-inner {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 24px;
}

.hc-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  width: 220px;
  min-width: 180px;
}

.hc-brand img {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
  object-position: left center;
}

.hc-brand .custom-logo-link {
  display: block;
}

.hc-brand .custom-logo {
  width: auto;
  max-height: 64px;
}

.hc-primary-nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.hc-menu,
.hc-primary-nav ul {
  display: flex;
  align-items: stretch;
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hc-menu > li,
.hc-primary-nav > div > ul > li {
  position: relative;
}

.hc-menu > li > a,
.hc-primary-nav > div > ul > li > a {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 0 14px;
  color: #f7fbff;
  font-family: var(--hc-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.hc-menu > li > a:hover,
.hc-menu > li > a:focus-visible,
.hc-menu > li.current-menu-item > a,
.hc-menu > li.current-menu-ancestor > a {
  color: var(--hc-cyan);
  border-bottom-color: var(--hc-cyan);
}

.menu-item-has-children > a::after {
  content: "⌄";
  margin-left: 6px;
  color: var(--hc-muted);
  font-size: 0.78em;
}

.hc-menu .sub-menu,
.hc-primary-nav .sub-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 50;
  display: grid;
  min-width: 210px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  background: rgba(4, 20, 38, 0.99);
  border: 1px solid var(--hc-line);
  border-radius: 0 0 9px 9px;
  box-shadow: var(--hc-shadow);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.hc-menu li:hover > .sub-menu,
.hc-menu li:focus-within > .sub-menu,
.hc-primary-nav li:hover > .sub-menu,
.hc-primary-nav li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.hc-menu .sub-menu a,
.hc-primary-nav .sub-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--hc-soft);
  font-weight: 700;
  border-radius: 5px;
}

.hc-menu .sub-menu a:hover,
.hc-menu .sub-menu a:focus-visible {
  color: #fff;
  background: rgba(18, 174, 245, 0.14);
}

.hc-search-toggle,
.hc-nav-toggle {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: #fff;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
}

.hc-search-toggle:hover,
.hc-search-toggle:focus-visible,
.hc-nav-toggle:hover,
.hc-nav-toggle:focus-visible {
  color: var(--hc-cyan);
  border-color: var(--hc-line);
  background: rgba(18, 174, 245, 0.08);
}

.hc-search-toggle svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hc-nav-toggle {
  display: none;
  gap: 4px;
}

.hc-nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hc-search-panel {
  padding: 14px 0 18px;
  background: #041326;
  border-top: 1px solid var(--hc-line);
}

.hc-search-panel .search-form {
  display: flex;
  gap: 10px;
  max-width: 720px;
  margin-left: auto;
}

.hc-search-panel .search-field {
  flex: 1;
  min-height: 48px;
  padding: 0 15px;
  color: #fff;
  background: #071d34;
  border: 1px solid var(--hc-line);
  border-radius: 7px;
}

.hc-search-panel .search-submit {
  min-width: 120px;
  color: #00111d;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--hc-cyan);
  border: 0;
  border-radius: 7px;
  cursor: pointer;
}

.hc-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.hc-hero .hc-button {
  min-height: 44px;
}

.hc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  font-family: var(--hc-heading);
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: transform 150ms ease, box-shadow 150ms ease, color 150ms ease, background 150ms ease;
}

.hc-button:hover,
.hc-button:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}

.hc-button--primary {
  background: linear-gradient(135deg, #08a6ef, #007ac9);
  box-shadow: 0 10px 24px rgba(0, 158, 235, 0.22);
}

.hc-button--primary:hover,
.hc-button--primary:focus-visible {
  box-shadow: 0 14px 30px rgba(0, 177, 255, 0.34);
}

.hc-button--outline {
  color: #e9f9ff;
  background: rgba(2, 14, 29, 0.45);
  border-color: rgba(91, 190, 245, 0.7);
}

.hc-button--outline:hover,
.hc-button--outline:focus-visible {
  color: #00131f;
  background: var(--hc-cyan);
  border-color: var(--hc-cyan);
}

.hc-button--small {
  min-height: 38px;
  padding: 0 15px;
  font-size: 0.78rem;
}

.hc-hero {
  position: relative;
  min-height: clamp(360px, 34vw, 520px);
  overflow: hidden;
  background:
    linear-gradient(90deg, #020b17 0%, #020b17 22%, rgba(2, 11, 23, 0.94) 34%, rgba(2, 11, 23, 0.58) 54%, rgba(2, 11, 23, 0.14) 80%, rgba(2, 11, 23, 0.04) 100%),
    linear-gradient(180deg, rgba(0, 11, 27, 0.02), #020b17 100%);
}

.hc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 67% 30%, rgba(37, 153, 221, 0.12), transparent 34%),
    linear-gradient(180deg, transparent 65%, rgba(0, 8, 18, 0.68) 100%);
}

.hc-hero__art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 8px;
  width: min(74vw, 1250px);
  background-image: url("../images/hero-offshore.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.42) 10%, #000 26%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.42) 10%, #000 26%);
}

.hc-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: clamp(350px, 33vw, 510px);
  padding-top: 18px;
  padding-bottom: 34px;
}

.hc-hero__content {
  width: min(720px, 52%);
}

.hc-eyebrow {
  margin-bottom: 7px;
  color: var(--hc-cyan);
  font-family: var(--hc-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hc-hero h1 {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(2.45rem, 3.65vw, 3.5rem);
  line-height: 1.01;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.58);
}

.hc-hero__title-line {
  display: block;
  color: #fff;
  white-space: nowrap;
}

.hc-hero__title-line--accent {
  color: var(--hc-blue);
}

.hc-hero__copy {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--hc-soft);
  font-size: 0.92rem;
  line-height: 1.42;
}

.hc-wave {
  position: absolute;
  right: -2%;
  bottom: -26px;
  left: -2%;
  z-index: 4;
  height: 68px;
  background:
    radial-gradient(75% 70px at 75% 0, transparent 62%, rgba(29, 129, 196, 0.7) 63%, rgba(13, 48, 83, 0.9) 66%, #031426 70%) 0 0/100% 68px no-repeat,
    #031426;
  transform: rotate(-0.4deg);
  border-top: 1px solid rgba(80, 192, 255, 0.28);
}

.hc-section {
  position: relative;
  padding: 24px 0;
}

.hc-section--reports {
  padding-top: 20px;
  background: linear-gradient(180deg, #031426, transparent 90%);
}

.hc-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.hc-section-heading h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.hc-section-heading > a {
  flex: 0 0 auto;
  color: var(--hc-cyan);
  font-family: var(--hc-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hc-heading-icon {
  color: var(--hc-cyan);
  font-family: var(--hc-body);
  font-size: 0.9em;
}

.hc-report-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hc-report-card {
  min-width: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #0b2238, #061525);
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.hc-report-card:hover {
  transform: translateY(-4px);
  border-color: var(--hc-line-strong);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
}

.hc-report-card__image {
  position: relative;
  display: block;
  aspect-ratio: 2.35 / 1;
  overflow: hidden;
  background: #071626;
}

.hc-report-card__image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(transparent, rgba(2, 12, 24, 0.78));
}

.hc-report-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.hc-report-card:hover .hc-report-card__image img {
  transform: scale(1.035);
}

.hc-report-card__image span {
  position: absolute;
  bottom: 8px;
  left: 10px;
  z-index: 2;
  padding: 2px 7px;
  color: #fff;
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
  background: #079fe9;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hc-report-card__body {
  padding: 10px 12px 12px;
}

.hc-report-card h3 {
  margin-bottom: 2px;
  font-size: 1rem;
  line-height: 1.12;
}

.hc-report-card h3 a {
  color: #fff;
}

.hc-card-meta {
  margin-bottom: 7px;
  color: var(--hc-soft);
  font-size: 0.78rem;
}

.hc-report-card__body > p:not(.hc-card-meta) {
  min-height: 58px;
  margin-bottom: 8px;
  color: var(--hc-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hc-read-more {
  color: var(--hc-cyan);
  font-family: var(--hc-heading);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hc-section--species {
  padding-top: 2px;
}

.hc-species-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.hc-species-card {
  position: relative;
  display: block;
  min-height: 128px;
  overflow: hidden;
  background: #07192b;
  border: 1px solid var(--hc-line);
  border-radius: 7px;
}

.hc-species-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(1, 10, 21, 0.22) 50%, rgba(1, 10, 21, 0.96) 100%);
}

.hc-species-card img {
  width: 100%;
  height: 100%;
  min-height: 128px;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.hc-species-card span {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  z-index: 2;
  color: #fff;
  font-family: var(--hc-heading);
  font-size: 0.98rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 8px #000;
}

.hc-species-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.18);
}

.hc-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(320px, 1fr);
  gap: 12px;
}

.hc-panel {
  min-width: 0;
  padding: 12px;
  background: linear-gradient(180deg, rgba(5, 20, 37, 0.93), rgba(3, 14, 27, 0.96));
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
}

.hc-section-heading--inside {
  margin-bottom: 10px;
}

.hc-spots-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
}

.hc-spot-card {
  position: relative;
  min-width: 0;
  min-height: 170px;
  overflow: hidden;
  color: #fff;
  background: #092036;
  border: 1px solid rgba(88, 177, 225, 0.32);
  border-radius: 7px;
}

.hc-spot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(1, 12, 24, 0.25) 52%, rgba(1, 10, 20, 0.98) 100%);
}

.hc-spot-card img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.hc-spot-card__body {
  position: absolute;
  right: 7px;
  bottom: 7px;
  left: 7px;
  z-index: 2;
  display: grid;
  gap: 1px;
}

.hc-spot-card strong {
  overflow: hidden;
  color: #fff;
  font-family: var(--hc-heading);
  font-size: 0.8rem;
  line-height: 1.05;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.hc-spot-card small {
  overflow: hidden;
  color: var(--hc-soft);
  font-size: 0.66rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hc-spot-card:hover img {
  transform: scale(1.07);
}

.hc-conditions {
  padding: 10px;
}

.hc-condition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hc-condition-card {
  min-width: 0;
  min-height: 102px;
  padding: 9px;
  color: var(--hc-soft);
  background: rgba(7, 27, 48, 0.82);
  border: 1px solid rgba(79, 160, 209, 0.27);
  border-radius: 6px;
}

.hc-condition-card h3 {
  margin-bottom: 7px;
  color: var(--hc-cyan);
  font-size: 0.72rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.hc-condition-card--tides > div {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 4px;
  padding: 2px 0 5px;
}

.hc-condition-card--tides > div + div {
  padding-top: 6px;
  border-top: 1px solid rgba(80, 164, 211, 0.16);
}

.hc-condition-card--tides small {
  grid-column: 2;
  color: #6fd98c;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.hc-condition-card--tides strong {
  grid-column: 2;
  color: #fff;
  font-size: 0.8rem;
}

.hc-condition-card--tides em {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  color: #d8f2ff;
  font-size: 0.72rem;
  font-style: normal;
}

.hc-tide-arrow--high {
  color: var(--hc-green);
}

.hc-tide-arrow--low {
  color: var(--hc-blue);
}

.hc-weather-main {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hc-weather-main span {
  color: #fff;
  font-size: 2rem;
}

.hc-weather-main strong {
  color: #fff;
  font-family: var(--hc-heading);
  font-size: 1.65rem;
}

.hc-condition-card--weather p,
.hc-condition-card--weather small {
  display: block;
  margin: 0;
  font-size: 0.65rem;
  line-height: 1.32;
}

.hc-condition-card--moon > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hc-condition-card--moon img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}

.hc-condition-card--moon span {
  display: grid;
}

.hc-condition-card--moon strong {
  color: #fff;
  font-size: 0.72rem;
}

.hc-condition-card--moon small {
  color: var(--hc-soft);
  font-size: 0.62rem;
}

.hc-condition-card dl,
.hc-condition-card dd {
  margin: 0;
}

.hc-condition-card--water dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 7px;
}

.hc-condition-card--water dl div:last-child {
  grid-column: 1 / -1;
}

.hc-condition-card--water dt {
  color: var(--hc-muted);
  font-size: 0.58rem;
}

.hc-condition-card--water dd {
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
}

.hc-condition-card--water dd.hc-good {
  color: var(--hc-green);
}

.hc-conditions-source {
  margin: 8px 0 0;
  font-size: 0.68rem;
  text-align: right;
}

.hc-commerce-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hc-gear-layout {
  display: grid;
  grid-template-columns: 132px minmax(135px, 1fr) minmax(170px, 0.9fr);
  gap: 12px;
  align-items: center;
}

.hc-gear-main-image {
  width: 132px;
  height: 138px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.hc-gear-main-copy h3,
.hc-charter-copy h3 {
  margin-bottom: 7px;
  font-size: 1rem;
  line-height: 1.15;
}

.hc-gear-main-copy h3 a {
  color: #fff;
}

.hc-gear-main-copy p,
.hc-charter-copy p {
  margin-bottom: 10px;
  color: var(--hc-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hc-gear-links {
  display: grid;
  gap: 6px;
}

.hc-gear-links a {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 7px;
  align-items: center;
  min-width: 0;
  color: #fff;
}

.hc-gear-links img {
  width: 54px;
  height: 45px;
  object-fit: cover;
  background: #07182b;
  border: 1px solid rgba(93, 172, 222, 0.25);
  border-radius: 5px;
}

.hc-gear-links span {
  min-width: 0;
}

.hc-gear-links strong,
.hc-gear-links small {
  display: block;
}

.hc-gear-links strong {
  color: #fff;
  font-size: 0.7rem;
  line-height: 1.17;
}

.hc-gear-links small {
  margin-top: 2px;
  color: var(--hc-cyan);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-charter-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(175px, 0.85fr);
  gap: 13px;
}

.hc-charter-image {
  display: block;
  min-height: 138px;
  overflow: hidden;
  border-radius: 7px;
}

.hc-charter-image img {
  width: 100%;
  height: 138px;
  object-fit: cover;
}

.hc-charter-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 9px;
  padding-top: 8px;
  color: var(--hc-soft);
  font-size: 0.68rem;
  text-align: center;
  border-top: 1px solid rgba(80, 163, 209, 0.2);
}

.hc-newsletter {
  padding: 12px 0 0;
}

.hc-newsletter__inner {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(260px, 1fr) minmax(360px, 0.9fr);
  gap: 18px;
  align-items: center;
  min-height: 108px;
  padding: 18px 38px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 47, 86, 0.82), rgba(5, 29, 54, 0.94)),
    url("../images/hero-offshore.webp") center 69%/cover;
  border: 1px solid rgba(38, 184, 255, 0.78);
  border-radius: var(--hc-radius);
  box-shadow: 0 0 32px rgba(0, 157, 233, 0.11) inset;
}

.hc-newsletter__inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -22px;
  left: 0;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(3, 29, 50, 0.8));
}

.hc-newsletter__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #fff;
  font-size: 2rem;
  background: linear-gradient(145deg, #18bfff, #087cd2);
  border: 3px solid rgba(222, 250, 255, 0.88);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(35, 198, 255, 0.62);
}

.hc-newsletter__copy,
.hc-newsletter__form {
  position: relative;
  z-index: 1;
}

.hc-newsletter__copy h2 {
  margin-bottom: 4px;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.hc-newsletter__copy p {
  margin: 0;
  color: var(--hc-soft);
  font-size: 0.82rem;
}

.hc-newsletter__form {
  display: grid;
  grid-template-columns: 1fr auto;
}

.hc-newsletter__form input[type="email"] {
  min-width: 0;
  min-height: 44px;
  padding: 0 14px;
  color: #fff;
  background: rgba(4, 20, 37, 0.9);
  border: 1px solid rgba(123, 202, 242, 0.48);
  border-right: 0;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.hc-newsletter__form input[type="email"]:focus {
  border-color: var(--hc-cyan);
  box-shadow: 0 0 0 3px rgba(49, 214, 255, 0.12);
}

.hc-newsletter__form button {
  min-width: 120px;
  color: #fff;
  font-family: var(--hc-heading);
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(135deg, #14b5fb, #047fd4);
  border: 0;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.hc-newsletter__form small,
.hc-form-message {
  grid-column: 1 / -1;
  margin: 5px 0 0;
  color: var(--hc-muted);
  font-size: 0.64rem;
}

.hc-form-message--success {
  color: #9af28a;
}

.hc-form-message--error {
  color: #ff9ca0;
}

.hc-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.hc-site-footer {
  margin-top: 10px;
  background: linear-gradient(180deg, rgba(1, 10, 21, 0.2), #010711 58%);
  border-top: 1px solid rgba(74, 166, 218, 0.18);
}

.hc-footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, minmax(120px, 0.72fr));
  gap: 34px;
  padding-top: 30px;
  padding-bottom: 26px;
}

.hc-footer-brand img {
  width: 210px;
  margin-bottom: 12px;
}

.hc-footer-brand p,
.hc-footer-column p {
  color: var(--hc-muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.hc-social-links {
  display: flex;
  gap: 7px;
}

.hc-social-links a {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: #bfeaff;
  font-size: 0.72rem;
  font-weight: 800;
  border: 1px solid var(--hc-line);
  border-radius: 50%;
}

.hc-footer-column h2 {
  margin-bottom: 10px;
  color: var(--hc-cyan);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hc-footer-column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hc-footer-column li + li {
  margin-top: 3px;
}

.hc-footer-column a {
  color: var(--hc-soft);
  font-size: 0.74rem;
}

.hc-footer-column a:hover,
.hc-footer-column a:focus-visible {
  color: var(--hc-cyan);
}

.hc-app-badges {
  display: grid;
  gap: 6px;
}

.hc-app-badges span {
  display: grid;
  grid-template-columns: 19px 1fr;
  grid-template-rows: 12px 15px;
  align-items: center;
  width: 142px;
  padding: 5px 8px;
  color: #fff;
  font-size: 0.67rem;
  line-height: 1;
  background: #000;
  border: 1px solid #6c7780;
  border-radius: 5px;
}

.hc-app-badges span > small {
  grid-column: 2;
  font-size: 0.48rem;
}

.hc-footer-bottom {
  color: #6f99b3;
  font-size: 0.65rem;
  border-top: 1px solid rgba(74, 155, 204, 0.15);
}

.hc-footer-bottom .hc-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 12px;
}

.hc-footer-bottom p {
  margin: 0;
}

/* Interior page and archive layouts. */
.hc-page-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 64px;
  background:
    linear-gradient(90deg, rgba(2, 11, 23, 0.98), rgba(2, 11, 23, 0.72)),
    url("../images/hero-offshore.webp") right 45%/cover no-repeat;
  border-bottom: 1px solid var(--hc-line);
}

.hc-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(transparent, var(--hc-bg));
}

.hc-page-hero .hc-container {
  position: relative;
  z-index: 1;
}

.hc-page-hero .hc-eyebrow {
  margin-bottom: 8px;
}

.hc-page-hero h1 {
  max-width: 820px;
  margin-bottom: 10px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.hc-page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--hc-soft);
  font-size: 1.05rem;
}

.hc-content-section {
  padding: 42px 0 70px;
}

.hc-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 36px;
  align-items: start;
}

.hc-entry,
.hc-archive-card,
.hc-widget,
.hc-form-panel,
.hc-data-panel {
  background: linear-gradient(180deg, rgba(8, 29, 51, 0.94), rgba(4, 17, 31, 0.98));
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius-lg);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.18);
}

.hc-entry {
  overflow: hidden;
}

.hc-entry__media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.hc-entry__body {
  padding: clamp(24px, 4vw, 48px);
}

.hc-entry__body > :first-child {
  margin-top: 0;
}

.hc-entry__body h2,
.hc-entry__body h3 {
  margin-top: 1.55em;
}

.hc-entry__body h2 {
  font-size: 2rem;
}

.hc-entry__body h3 {
  font-size: 1.45rem;
}

.hc-entry__body p,
.hc-entry__body li {
  color: #c4d5df;
}

.hc-entry__body a {
  text-decoration: underline;
  text-decoration-color: rgba(49, 214, 255, 0.45);
  text-underline-offset: 3px;
}

.hc-entry__body blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  color: #e8f8ff;
  background: rgba(17, 174, 240, 0.08);
  border-left: 4px solid var(--hc-cyan);
  border-radius: 0 8px 8px 0;
}

.hc-entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 22px;
  color: var(--hc-muted);
  font-size: 0.82rem;
}

.hc-entry-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.hc-entry-facts > div {
  padding: 13px;
  background: rgba(4, 20, 37, 0.72);
  border: 1px solid rgba(73, 169, 220, 0.25);
  border-radius: 8px;
}

.hc-entry-facts dt {
  color: var(--hc-muted);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.hc-entry-facts dd {
  margin: 3px 0 0;
  color: #fff;
  font-weight: 800;
}

.hc-sidebar {
  display: grid;
  gap: 16px;
}

.hc-widget,
.hc-form-panel,
.hc-data-panel {
  padding: 20px;
}

.hc-widget__title,
.hc-sidebar h2,
.hc-form-panel h2,
.hc-data-panel h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.hc-widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hc-widget li + li {
  margin-top: 8px;
}

.hc-widget a {
  color: var(--hc-soft);
}

.hc-widget a:hover {
  color: var(--hc-cyan);
}

.hc-archive-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.hc-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hc-filter-pills a,
.hc-filter-pills button {
  padding: 7px 12px;
  color: var(--hc-soft);
  font-size: 0.76rem;
  font-weight: 800;
  background: #071a2e;
  border: 1px solid var(--hc-line);
  border-radius: 999px;
  cursor: pointer;
}

.hc-filter-pills .is-active,
.hc-filter-pills a:hover,
.hc-filter-pills button:hover {
  color: #001725;
  background: var(--hc-cyan);
  border-color: var(--hc-cyan);
}

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

.hc-archive-card {
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease;
}

.hc-archive-card:hover {
  transform: translateY(-4px);
  border-color: var(--hc-line-strong);
}

.hc-archive-card__image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #07182b;
}

.hc-archive-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.hc-archive-card:hover img {
  transform: scale(1.04);
}

.hc-archive-card__body {
  padding: 17px;
}

.hc-archive-card h2,
.hc-archive-card h3 {
  margin-bottom: 7px;
  font-size: 1.28rem;
}

.hc-archive-card h2 a,
.hc-archive-card h3 a {
  color: #fff;
}

.hc-archive-card p {
  margin-bottom: 13px;
  color: var(--hc-muted);
  font-size: 0.84rem;
}

.hc-pagination {
  margin-top: 28px;
}

.hc-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hc-pagination a,
.hc-pagination span {
  display: grid;
  place-items: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 10px;
  color: var(--hc-soft);
  background: #071a2e;
  border: 1px solid var(--hc-line);
  border-radius: 6px;
}

.hc-pagination .current {
  color: #00131f;
  background: var(--hc-cyan);
  border-color: var(--hc-cyan);
}

.hc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hc-form-field {
  display: grid;
  gap: 6px;
}

.hc-form-field--full {
  grid-column: 1 / -1;
}

.hc-form-field label {
  color: var(--hc-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.hc-form-field input,
.hc-form-field select,
.hc-form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: #fff;
  background: #06182b;
  border: 1px solid var(--hc-line);
  border-radius: 7px;
  outline: none;
}

.hc-form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.hc-form-field input:focus,
.hc-form-field select:focus,
.hc-form-field textarea:focus {
  border-color: var(--hc-cyan);
  box-shadow: 0 0 0 3px rgba(49, 214, 255, 0.11);
}

.hc-form-submit {
  min-height: 46px;
  padding: 0 20px;
  color: #00131f;
  font-family: var(--hc-heading);
  font-weight: 900;
  text-transform: uppercase;
  background: var(--hc-cyan);
  border: 0;
  border-radius: 7px;
  cursor: pointer;
}

.hc-form-submit:hover,
.hc-form-submit:focus-visible {
  background: #fff;
}

.hc-conditions-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hc-forecast-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hc-forecast-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  padding: 12px;
  color: var(--hc-soft);
  background: rgba(5, 21, 39, 0.75);
  border: 1px solid rgba(74, 165, 215, 0.23);
  border-radius: 7px;
}

.hc-error-page {
  display: grid;
  place-items: center;
  min-height: 65vh;
  padding: 70px 0;
  text-align: center;
}

.hc-error-page h1 {
  margin-bottom: 8px;
  color: var(--hc-cyan);
  font-size: clamp(5rem, 15vw, 10rem);
}

.hc-error-page h2 {
  font-size: 2rem;
}

.hc-no-results {
  padding: 42px;
  text-align: center;
  background: #061629;
  border: 1px solid var(--hc-line);
  border-radius: 10px;
}

@media (max-width: 1120px) {
  .hc-hero__content {
    width: min(720px, 55%);
  }

  .hc-header-inner {
    gap: 10px;
  }

  .hc-brand {
    width: 190px;
  }

  .hc-menu > li > a,
  .hc-primary-nav > div > ul > li > a {
    padding-inline: 9px;
    font-size: 0.78rem;
  }

  .hc-report-card__body > p:not(.hc-card-meta) {
    min-height: 76px;
  }

  .hc-gear-layout {
    grid-template-columns: 115px 1fr;
  }

  .hc-gear-links {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  body.admin-bar .hc-site-header {
    top: 46px;
  }

  .hc-site-header,
  .hc-header-inner {
    min-height: 70px;
  }

  .hc-brand {
    width: 205px;
    margin-right: auto;
  }

  .hc-nav-toggle {
    display: grid;
  }

  .hc-primary-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 70px);
    padding: 12px 18px 20px;
    overflow: auto;
    background: rgba(1, 11, 24, 0.99);
    border-bottom: 1px solid var(--hc-line);
    box-shadow: var(--hc-shadow);
  }

  .hc-primary-nav.is-open {
    display: block;
  }

  .hc-menu,
  .hc-primary-nav ul {
    display: grid;
    gap: 2px;
  }

  .hc-menu > li > a,
  .hc-primary-nav > div > ul > li > a {
    justify-content: space-between;
    min-height: 46px;
    padding: 0 12px;
    border: 0;
    border-radius: 6px;
  }

  .hc-menu > li > a:hover,
  .hc-menu > li > a:focus-visible,
  .hc-menu > li.current-menu-item > a {
    background: rgba(18, 174, 245, 0.12);
  }

  .hc-menu .sub-menu,
  .hc-primary-nav .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 5px 16px;
    visibility: visible;
    opacity: 1;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .hc-hero__content {
    width: min(660px, 67%);
  }

  .hc-report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hc-report-card__body > p:not(.hc-card-meta) {
    min-height: 58px;
  }

  .hc-species-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hc-dashboard-grid,
  .hc-commerce-grid {
    grid-template-columns: 1fr;
  }

  .hc-spots-grid {
    grid-template-columns: repeat(6, minmax(92px, 1fr));
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
  }

  .hc-condition-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hc-charter-layout {
    grid-template-columns: 1fr 1fr;
  }

  .hc-newsletter__inner {
    grid-template-columns: 66px 1fr;
  }

  .hc-newsletter__form {
    grid-column: 1 / -1;
  }

  .hc-footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .hc-content-grid {
    grid-template-columns: 1fr;
  }

  .hc-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hc-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hc-container {
    width: min(calc(100% - 24px), var(--hc-container));
  }

  .hc-brand {
    width: 184px;
  }

  .hc-search-toggle,
  .hc-nav-toggle {
    width: 38px;
  }

  .hc-hero {
    min-height: 550px;
  }

  .hc-hero__art {
    top: 130px;
    width: 100%;
    opacity: 0.78;
    mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.8) 18%, #000 46%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.8) 18%, #000 46%);
    background-position: 63% center;
  }

  .hc-hero {
    background: linear-gradient(180deg, #020b17 0%, rgba(2, 11, 23, 0.96) 39%, rgba(2, 11, 23, 0.3) 72%, #020b17 100%);
  }

  .hc-hero__inner {
    align-items: flex-start;
    min-height: 555px;
    padding-top: 48px;
  }

  .hc-hero__content {
    width: 100%;
  }

  .hc-hero h1 {
    max-width: 620px;
    font-size: clamp(2.15rem, 9.8vw, 3rem);
  }

  .hc-hero__title-line {
    white-space: normal;
  }

  .hc-hero__copy {
    max-width: 590px;
  }

  .hc-report-grid,
  .hc-species-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hc-condition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hc-gear-layout {
    grid-template-columns: 120px 1fr;
  }

  .hc-gear-links {
    grid-template-columns: 1fr;
  }

  .hc-charter-layout {
    grid-template-columns: 1fr;
  }

  .hc-charter-features {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hc-newsletter__inner {
    padding: 22px;
  }

  .hc-newsletter__copy h2 {
    font-size: 1.35rem;
  }

  .hc-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .hc-footer-brand {
    grid-column: 1 / -1;
  }

  .hc-app-column {
    grid-column: 1 / -1;
  }

  .hc-footer-bottom .hc-container {
    display: grid;
  }

  .hc-entry-facts {
    grid-template-columns: 1fr;
  }

  .hc-sidebar,
  .hc-conditions-page-grid {
    grid-template-columns: 1fr;
  }

  .hc-form-grid {
    grid-template-columns: 1fr;
  }

  .hc-form-field--full {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .hc-header-inner {
    gap: 5px;
  }

  .hc-brand {
    width: 164px;
    min-width: 145px;
  }

  .hc-search-toggle {
    display: none;
  }

  .hc-button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hc-button {
    width: 100%;
  }

  .hc-section-heading {
    align-items: flex-end;
  }

  .hc-section-heading h2 {
    font-size: 1rem;
  }

  .hc-section-heading > a {
    font-size: 0.65rem;
  }

  .hc-report-grid {
    grid-template-columns: 1fr;
  }

  .hc-report-card__body > p:not(.hc-card-meta) {
    min-height: auto;
  }

  .hc-species-card,
  .hc-species-card img {
    min-height: 112px;
  }

  .hc-condition-grid {
    grid-template-columns: 1fr;
  }

  .hc-gear-layout {
    grid-template-columns: 1fr;
  }

  .hc-gear-main-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
  }

  .hc-newsletter__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hc-newsletter__icon {
    margin-inline: auto;
  }

  .hc-newsletter__form {
    grid-template-columns: 1fr;
  }

  .hc-newsletter__form input[type="email"] {
    border-right: 1px solid rgba(123, 202, 242, 0.48);
    border-radius: 5px 5px 0 0;
  }

  .hc-newsletter__form button {
    min-height: 44px;
    border-radius: 0 0 5px 5px;
  }

  .hc-footer-grid {
    grid-template-columns: 1fr;
  }

  .hc-footer-brand,
  .hc-app-column {
    grid-column: auto;
  }

  .hc-archive-grid {
    grid-template-columns: 1fr;
  }

  .hc-page-hero {
    padding-top: 58px;
  }

  .hc-page-hero h1 {
    font-size: 2.7rem;
  }

  .hc-entry__body {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.hc-data-explainer {
  margin-top: 18px;
}

.hc-comments {
  margin: 0 22px 22px;
  border-top: 1px solid var(--hc-line);
}

.hc-comments__inner {
  padding: 26px 0 4px;
}

.hc-comments h2,
.hc-comments #reply-title {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.hc-comment-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.hc-comment-list .comment-body {
  padding: 18px;
  background: rgba(8, 30, 51, 0.72);
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
}

.hc-comment-list .comment-meta {
  margin-bottom: 10px;
  color: var(--hc-muted);
  font-size: 0.82rem;
}

.hc-comment-list .avatar {
  float: left;
  margin: 0 10px 6px 0;
  border-radius: 50%;
}

.hc-review-rating {
  margin: 0 0 8px;
  color: #ffd166;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.comment-form-rating,
.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
  display: grid;
  gap: 6px;
}

.comment-form-rating select,
.hc-comments input:not([type="submit"]):not([type="checkbox"]),
.hc-comments textarea {
  width: 100%;
  padding: 11px 12px;
  color: var(--hc-text);
  background: rgba(1, 11, 24, 0.9);
  border: 1px solid var(--hc-line);
  border-radius: 6px;
}

.hc-comments .submit {
  padding: 11px 18px;
  color: #00101d;
  font-family: var(--hc-heading);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(135deg, var(--hc-cyan), var(--hc-blue));
  border: 0;
  border-radius: 6px;
}

.hc-conditions-warning {
  margin: 12px 0 0;
  padding: 9px 11px;
  color: #ffe2a3;
  background: rgba(151, 94, 0, 0.18);
  border: 1px solid rgba(255, 190, 75, 0.35);
  border-radius: 6px;
  font-size: 0.78rem;
  line-height: 1.45;
}

.hc-conditions-warning--page {
  margin: 0 0 18px;
  font-size: 0.9rem;
}
