:root {
  --hcfb-navy: #143156;
  --hcfb-red: #a73439;
  --hcfb-blue: #0097ce;
  --hcfb-orange: #e98300;
  --hcfb-charcoal: #464c4f;
  --hcfb-muted: #667085;
  --hcfb-border: #d9e0e8;
  --hcfb-surface: #f4f7fa;
  --hcfb-white: #fff;
  --hcfb-shadow: 0 18px 45px rgba(20, 49, 86, 0.12);
  --hcfb-radius: 18px;
}

.hcfb-press-room,
.hcfb-release-page {
  color: var(--hcfb-charcoal);
  font-family: inherit;
}

.hcfb-press-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(210px, .45fr) auto;
  gap: 12px;
  margin: 0 0 32px;
  padding: 18px;
  background: var(--hcfb-surface);
  border: 1px solid var(--hcfb-border);
  border-radius: 16px;
}

.hcfb-press-filters input,
.hcfb-press-filters select {
  box-sizing: border-box;
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid #aebac8;
  border-radius: 10px;
  background: var(--hcfb-white);
  color: var(--hcfb-navy);
  font: inherit;
}

.hcfb-press-filters button,
.hcfb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 22px;
  border: 2px solid var(--hcfb-red);
  border-radius: 999px;
  background: var(--hcfb-red);
  color: var(--hcfb-white) !important;
  font-weight: 700;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.hcfb-press-filters button:hover,
.hcfb-button:hover {
  background: #8f2d33;
  box-shadow: 0 8px 20px rgba(167, 52, 57, .22);
  transform: translateY(-1px);
}

.hcfb-press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.hcfb-press-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--hcfb-border);
  border-radius: var(--hcfb-radius);
  background: var(--hcfb-white);
  box-shadow: 0 8px 24px rgba(20, 49, 86, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hcfb-press-card:hover {
  box-shadow: var(--hcfb-shadow);
  transform: translateY(-4px);
}

.hcfb-press-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--hcfb-navy), #244f83);
}

.hcfb-press-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.hcfb-press-card__media--fit-contain {
  padding: 14px;
  box-sizing: border-box;
  background: var(--hcfb-surface);
}

.hcfb-press-card__media--fit-contain img {
  object-fit: contain;
}

.hcfb-press-card:hover .hcfb-press-card__media--fit-cover img {
  transform: scale(1.025);
}

.hcfb-press-card__placeholder {
  display: grid;
  height: 100%;
  place-items: center;
  color: rgba(255,255,255,.75);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: .08em;
}

.hcfb-press-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.hcfb-press-card__meta,
.hcfb-release__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--hcfb-muted);
  font-size: .86rem;
  font-weight: 700;
}

.hcfb-chip {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,151,206,.1);
  color: #006d95;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hcfb-press-card__title {
  margin: 16px 0 8px;
  color: var(--hcfb-navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.hcfb-press-card__title a {
  color: inherit;
  text-decoration: none;
}

.hcfb-press-card__title a:focus-visible,
.hcfb-text-link:focus-visible,
.hcfb-button:focus-visible,
.hcfb-press-filters :focus-visible,
.hcfb-resource-card a:focus-visible {
  outline: 3px solid var(--hcfb-orange);
  outline-offset: 3px;
}

.hcfb-press-card__partner {
  margin: 0 0 8px;
  color: var(--hcfb-red);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hcfb-press-card__excerpt {
  margin: 0 0 22px;
  color: var(--hcfb-charcoal);
  line-height: 1.65;
}

.hcfb-text-link {
  margin-top: auto;
  color: var(--hcfb-navy);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hcfb-press-grid--featured-first .hcfb-press-card:first-child {
  grid-column: span 2;
}

.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__media {
  aspect-ratio: 16 / 8.1;
}

.hcfb-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 38px;
}

.hcfb-pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--hcfb-border);
  border-radius: 10px;
  color: var(--hcfb-navy);
  text-decoration: none;
}

.hcfb-pagination .current {
  border-color: var(--hcfb-navy);
  background: var(--hcfb-navy);
  color: var(--hcfb-white);
}

.hcfb-press-empty {
  padding: 48px 24px;
  border-radius: var(--hcfb-radius);
  background: var(--hcfb-surface);
  text-align: center;
}

.hcfb-release__header {
  padding: clamp(54px, 8vw, 100px) 24px clamp(42px, 6vw, 72px);
  background:
    radial-gradient(circle at 88% 20%, rgba(0,151,206,.18), transparent 25%),
    linear-gradient(135deg, #0f294b 0%, var(--hcfb-navy) 62%, #224b79 100%);
  color: var(--hcfb-white);
}

.hcfb-release__header-inner {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.hcfb-release__header .hcfb-chip {
  background: rgba(255,255,255,.14);
  color: var(--hcfb-white);
}

.hcfb-release__header .hcfb-release__meta {
  color: rgba(255,255,255,.82);
}

.hcfb-release__header h1 {
  max-width: 980px;
  margin: 22px 0 14px;
  color: var(--hcfb-white);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.25rem, 5.4vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -.035em;
}

.hcfb-release__subtitle {
  max-width: 820px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.5;
}

.hcfb-release__byline {
  margin: 18px 0 0;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}

.hcfb-release__hero {
  width: min(calc(100% - 40px), 1180px);
  margin: -28px auto 0;
}

.hcfb-release__hero-stage {
  display: grid;
  min-height: 220px;
  max-height: 680px;
  place-items: center;
  overflow: hidden;
  border: 8px solid var(--hcfb-white);
  border-radius: 22px;
  background: var(--hcfb-surface);
  box-shadow: var(--hcfb-shadow);
}

.hcfb-release__hero img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 664px;
  object-fit: contain;
}

.hcfb-release__hero--fit-cover .hcfb-release__hero-stage {
  aspect-ratio: 16 / 8.8;
}

.hcfb-release__hero--fit-cover img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.hcfb-release__hero figcaption {
  margin-top: 8px;
  color: var(--hcfb-muted);
  font-size: .82rem;
  text-align: right;
}

.hcfb-release__layout {
  display: grid;
  width: min(calc(100% - 40px), 1120px);
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(34px, 6vw, 72px);
  margin: clamp(48px, 7vw, 82px) auto;
}

.hcfb-release__article {
  color: #31373d;
  font-size: clamp(1.06rem, 1.4vw, 1.18rem);
  line-height: 1.82;
}

.hcfb-release__article p {
  margin: 0 0 1.35em;
}

.hcfb-release__article blockquote {
  margin: 2.2em 0;
  padding: 8px 0 8px 26px;
  border-left: 5px solid var(--hcfb-orange);
  color: var(--hcfb-navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.28em;
  line-height: 1.55;
}

.hcfb-release-question {
  margin: 2em 0 .55em;
  color: var(--hcfb-navy);
  font-size: 1.3rem;
}

.hcfb-release-answer {
  padding-left: 18px;
  border-left: 3px solid rgba(0,151,206,.35);
}

.hcfb-release__cta {
  margin: 36px 0;
}

.hcfb-release__about {
  margin-top: 58px;
  padding-top: 30px;
  border-top: 1px solid var(--hcfb-border);
}

.hcfb-release__about h2,
.hcfb-resource-card h2 {
  color: var(--hcfb-navy);
  font-family: Georgia, 'Times New Roman', serif;
}

.hcfb-release__about h3 {
  margin-top: 28px;
  color: var(--hcfb-navy);
}

.hcfb-resource-card {
  position: sticky;
  top: 32px;
  padding: 24px;
  border: 1px solid var(--hcfb-border);
  border-top: 5px solid var(--hcfb-red);
  border-radius: 16px;
  background: var(--hcfb-surface);
}

.hcfb-resource-card h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

.hcfb-resource-card h3 {
  margin-top: 26px;
  color: var(--hcfb-navy);
  font-size: 1rem;
}

.hcfb-resource-card ul {
  margin: 0;
  padding-left: 1.2em;
}

.hcfb-resource-card li {
  margin: 10px 0;
}

.hcfb-resource-card a {
  color: var(--hcfb-navy);
  font-weight: 700;
}

.hcfb-resource-card p {
  font-size: .92rem;
  line-height: 1.65;
}

.hcfb-release__archive-notice {
  margin-bottom: 28px;
  padding: 15px 18px;
  border-left: 5px solid var(--hcfb-orange);
  background: #fff7ea;
}

@media (max-width: 920px) {
  .hcfb-press-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hcfb-press-grid--featured-first .hcfb-press-card:first-child { grid-column: span 2; }
  .hcfb-release__layout { grid-template-columns: 1fr; }
  .hcfb-resource-card { position: static; }
}

@media (max-width: 640px) {
  .hcfb-press-filters { grid-template-columns: 1fr; }
  .hcfb-press-grid { grid-template-columns: 1fr; }
  .hcfb-press-grid--featured-first .hcfb-press-card:first-child { grid-column: auto; }
  .hcfb-press-card__body { padding: 20px; }
  .hcfb-release__header { padding-left: 20px; padding-right: 20px; }
  .hcfb-release__hero { width: calc(100% - 24px); }
  .hcfb-release__hero-stage { border-width: 5px; border-radius: 16px; }
  .hcfb-release__layout { width: calc(100% - 32px); }
}

@media (prefers-reduced-motion: reduce) {
  .hcfb-press-card,
  .hcfb-press-card__media img,
  .hcfb-button { transition: none; }
}

/* Category-aware fallback artwork for releases without photos. */
.hcfb-press-card__media--empty {
  position: relative;
  background:
    radial-gradient(circle at 82% 22%, rgba(255,255,255,.16), transparent 22%),
    linear-gradient(135deg, var(--hcfb-navy), #24588b);
}

.hcfb-press-card__media--empty::before,
.hcfb-press-card__media--empty::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.hcfb-press-card__media--empty::before {
  width: 170px;
  height: 170px;
  right: -48px;
  top: -62px;
}

.hcfb-press-card__media--empty::after {
  width: 100px;
  height: 100px;
  right: 22px;
  top: 14px;
}

.hcfb-press-card__media--emergency-update {
  background: linear-gradient(135deg, #8f242d, var(--hcfb-red));
}

.hcfb-press-card__media--impact-report {
  background: linear-gradient(135deg, #006d95, var(--hcfb-blue));
}

.hcfb-press-card__media--event,
.hcfb-press-card__media--event-recap {
  background: linear-gradient(135deg, #b65f00, var(--hcfb-orange));
}

.hcfb-press-card__media--qa,
.hcfb-press-card__media--feature-commentary {
  background: linear-gradient(135deg, #3d4d59, #657480);
}

.hcfb-press-card__placeholder {
  position: relative;
  z-index: 1;
  align-content: center;
  justify-items: start;
  gap: 9px;
  box-sizing: border-box;
  padding: clamp(24px, 4vw, 42px);
  color: var(--hcfb-white);
  font-size: 1rem;
  letter-spacing: normal;
}

.hcfb-press-card__placeholder strong {
  max-width: 82%;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.hcfb-press-card__placeholder-kicker {
  color: rgba(255,255,255,.78);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hcfb-press-card--no-media .hcfb-press-card__body {
  padding-top: 30px;
}

.hcfb-release__gallery,
.hcfb-release__logos {
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid var(--hcfb-border);
}

.hcfb-release__gallery h2,
.hcfb-release__logos h2 {
  color: var(--hcfb-navy);
  font-family: Georgia, 'Times New Roman', serif;
}

.hcfb-release__gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hcfb-release__gallery figure,
.hcfb-release__logos figure {
  margin: 0;
}

.hcfb-release__gallery-stage {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  box-sizing: border-box;
  overflow: hidden;
  padding: 12px;
  border: 1px solid var(--hcfb-border);
  border-radius: 14px;
  background: var(--hcfb-surface);
}

.hcfb-release__gallery img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hcfb-release__gallery--fit-cover .hcfb-release__gallery-stage {
  padding: 0;
}

.hcfb-release__gallery--fit-cover img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.hcfb-release__gallery figcaption {
  margin-top: 7px;
  color: var(--hcfb-muted);
  font-size: .78rem;
}

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

.hcfb-release__logos figure {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--hcfb-border);
  border-radius: 14px;
  background: var(--hcfb-white);
}

.hcfb-release__logos a {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.hcfb-release__logos img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
}

@media (max-width: 780px) {
  .hcfb-release__logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .hcfb-release__gallery-grid,
  .hcfb-release__logo-grid { grid-template-columns: 1fr; }
}


/* v0.4 magazine, balanced-grid and expandable-card refinements. */
.hcfb-press-grid {
  align-items: start;
}

.hcfb-press-card {
  align-self: start;
}

.hcfb-press-grid--columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hcfb-press-grid--columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hcfb-press-grid--columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }

.hcfb-press-card__brand {
  display: flex;
  width: fit-content;
  max-width: min(100%, 190px);
  min-height: 42px;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid var(--hcfb-border);
  border-radius: 12px;
  background: var(--hcfb-white);
  box-shadow: 0 5px 16px rgba(20,49,86,.06);
}

.hcfb-press-card__brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

.hcfb-card-more {
  margin: -12px 0 20px;
}

.hcfb-card-more summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 5px 0;
  color: var(--hcfb-navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  cursor: pointer;
  list-style: none;
}

.hcfb-card-more summary::-webkit-details-marker { display: none; }
.hcfb-card-more summary::after {
  content: "+";
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,151,206,.12);
  color: #006d95;
  font-size: 1rem;
  line-height: 1;
}
.hcfb-card-more[open] summary::after { content: "−"; }
.hcfb-card-more__close { display: none; }
.hcfb-card-more[open] .hcfb-card-more__open { display: none; }
.hcfb-card-more[open] .hcfb-card-more__close { display: inline; }
.hcfb-card-more p {
  margin: 3px 0 0;
  color: var(--hcfb-charcoal);
  line-height: 1.65;
}

.hcfb-card-more summary:focus-visible {
  outline: 3px solid var(--hcfb-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child {
  display: grid;
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
}

.hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__media {
  min-height: 100%;
  aspect-ratio: auto;
}

.hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__media img {
  min-height: 100%;
}

.hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__body {
  padding: clamp(26px, 4vw, 42px);
}

.hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__title {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.hcfb-press-grid--layout-list {
  grid-template-columns: 1fr;
  gap: 18px;
}

.hcfb-press-grid--layout-list .hcfb-press-card {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
}

.hcfb-press-grid--layout-list .hcfb-press-card__media {
  min-height: 100%;
  aspect-ratio: 4 / 3;
}

.hcfb-press-grid--layout-list .hcfb-press-card--no-media {
  grid-template-columns: 1fr;
}

.hcfb-press-grid--layout-list .hcfb-press-card__body {
  padding: 26px 30px;
}

.hcfb-press-grid--layout-list .hcfb-press-card__title {
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
}

.hcfb-press-grid--columns-4 .hcfb-press-card__body { padding: 20px; }
.hcfb-press-grid--columns-4 .hcfb-press-card__title { font-size: 1.28rem; }
.hcfb-press-grid--columns-4 .hcfb-press-card__brand { max-width: 150px; }

@media (max-width: 1100px) {
  .hcfb-press-grid--columns-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .hcfb-press-grid--columns-3,
  .hcfb-press-grid--columns-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child {
    grid-column: span 2;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child,
  .hcfb-press-grid--layout-list .hcfb-press-card {
    display: flex;
    grid-column: auto;
    flex-direction: column;
  }

  .hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__media,
  .hcfb-press-grid--layout-list .hcfb-press-card__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .hcfb-press-grid--columns-2,
  .hcfb-press-grid--columns-3,
  .hcfb-press-grid--columns-4 { grid-template-columns: 1fr; }
}

/* Guard against theme-level image rules overriding card sizing. */
.hcfb-press-card__media > img {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.hcfb-press-card__media--fit-cover > img { object-fit: cover !important; }
.hcfb-press-card__media--fit-contain > img { object-fit: contain !important; }

/* v0.5 progressive "View more releases" navigation. */
.hcfb-load-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 38px;
  text-align: center;
  transition: opacity .25s ease, transform .25s ease;
}

.hcfb-load-more__button {
  min-width: min(100%, 240px);
}

.hcfb-load-more__button.is-loading {
  opacity: .78;
  pointer-events: none;
}

.hcfb-load-more__button.is-loading::before {
  content: "";
  width: 17px;
  height: 17px;
  margin-right: 9px;
  border: 2px solid rgba(255,255,255,.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: hcfb-spin .75s linear infinite;
}

.hcfb-load-more.is-complete {
  opacity: 0;
  transform: translateY(5px);
}

.hcfb-press-card--new {
  animation: hcfb-card-arrive .5s ease both;
}

@keyframes hcfb-spin {
  to { transform: rotate(360deg); }
}

@keyframes hcfb-card-arrive {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hcfb-load-more,
  .hcfb-press-card--new,
  .hcfb-load-more__button.is-loading::before {
    animation: none;
    transition: none;
  }
}


/* v0.5.1 reliability and responsive hardening for Movedo/WPBakery containers. */
.hcfb-press-room,
.hcfb-press-room *,
.hcfb-release-page,
.hcfb-release-page * {
  box-sizing: border-box;
}

.hcfb-press-room,
.hcfb-press-grid,
.hcfb-press-card,
.hcfb-press-card__body,
.hcfb-press-card__media {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hcfb-press-room {
  container-type: inline-size;
}

.hcfb-press-card__title,
.hcfb-press-card__excerpt,
.hcfb-card-more p,
.hcfb-press-card__partner,
.hcfb-release__content,
.hcfb-release__content p,
.hcfb-release__content li {
  overflow-wrap: anywhere;
  word-break: normal;
}

.hcfb-load-more__status {
  max-width: 640px;
  margin: 0;
  color: var(--hcfb-red);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.45;
}

.hcfb-load-more__status:not(.is-visible) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@container (max-width: 760px) {
  .hcfb-press-filters {
    grid-template-columns: minmax(0, 1fr);
  }

  .hcfb-press-grid,
  .hcfb-press-grid--columns-2,
  .hcfb-press-grid--columns-3,
  .hcfb-press-grid--columns-4 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child,
  .hcfb-press-grid--layout-list .hcfb-press-card {
    display: flex;
    grid-column: auto;
    flex-direction: column;
  }

  .hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__media,
  .hcfb-press-grid--layout-list .hcfb-press-card__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 782px) {
  .hcfb-press-room {
    overflow-x: clip;
  }

  .hcfb-press-filters {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px;
    padding: 14px;
    margin-bottom: 22px;
  }

  .hcfb-press-filters button {
    width: 100%;
  }

  .hcfb-press-grid,
  .hcfb-press-grid--columns-2,
  .hcfb-press-grid--columns-3,
  .hcfb-press-grid--columns-4 {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px;
  }

  .hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child,
  .hcfb-press-grid--layout-list .hcfb-press-card {
    display: flex !important;
    grid-column: auto !important;
    grid-template-columns: minmax(0, 1fr) !important;
    flex-direction: column;
  }

  .hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__media,
  .hcfb-press-grid--layout-list .hcfb-press-card__media {
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
  }

  .hcfb-press-card__body,
  .hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__body,
  .hcfb-press-grid--layout-list .hcfb-press-card__body {
    padding: 20px;
  }

  .hcfb-press-card__title,
  .hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__title {
    font-size: clamp(1.3rem, 6.2vw, 1.75rem);
  }

  .hcfb-press-card__brand {
    max-width: 100%;
  }

  .hcfb-load-more {
    margin-top: 26px;
  }

  .hcfb-load-more__button {
    width: min(100%, 360px);
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .hcfb-press-card__body,
  .hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__body,
  .hcfb-press-grid--layout-list .hcfb-press-card__body {
    padding: 17px;
  }

  .hcfb-press-card__meta {
    gap: 7px 10px;
    font-size: .78rem;
  }

  .hcfb-chip {
    padding: 5px 8px;
    font-size: .68rem;
  }

  .hcfb-press-card__placeholder {
    padding: 20px;
  }
}

@media (hover: none) {
  .hcfb-press-card:hover,
  .hcfb-press-filters button:hover,
  .hcfb-button:hover {
    transform: none;
  }
}

.hcfb-load-more__status.screen-reader-text.is-visible {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  white-space: normal !important;
  border: 0 !important;
}


/* v0.5.2: prevent the magazine lead story from squeezing its headline into a narrow text rail. */
.hcfb-press-card__title,
.hcfb-press-card__title a {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: auto;
}

.hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child {
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
}

.hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__title {
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  line-height: 1.12;
}

/* Movedo/WPBakery often places the shortcode in a medium-width content rail even on desktop.
   At that width, keep the large magazine card but stack its image above the copy. */
@container (min-width: 761px) and (max-width: 1120px) {
  .hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child {
    display: flex;
    flex-direction: column;
  }

  .hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__media img {
    min-height: 0;
  }

  .hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__body {
    padding: clamp(24px, 3.2vw, 34px);
  }
}

/* v0.5.3: face-safe photography and homepage Press Room highlights. */
.hcfb-press-card__media--face-safe {
  display: grid;
  place-items: center;
  padding: 0;
  background:
    radial-gradient(circle at 15% 12%, rgba(0,151,206,.12), transparent 32%),
    linear-gradient(145deg, #f8fafc, #e8eef5);
}

.hcfb-press-card__media--face-safe > img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  object-fit: contain !important;
  object-position: center top !important;
  transform: none !important;
}

.hcfb-press-card__media--face-safe.hcfb-press-card__media--portrait {
  aspect-ratio: 4 / 5;
}

.hcfb-press-card__media--face-safe.hcfb-press-card__media--square {
  aspect-ratio: 1 / 1;
}

.hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__media--face-safe {
  min-height: clamp(460px, 52vw, 650px);
  aspect-ratio: auto;
}

.hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__media--face-safe > img {
  max-height: 650px;
}

@container (min-width: 761px) and (max-width: 1120px) {
  .hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__media--face-safe {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__media--face-safe.hcfb-press-card__media--portrait {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 782px) {
  .hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__media--face-safe {
    min-height: 0 !important;
    aspect-ratio: 16 / 10 !important;
  }

  .hcfb-press-grid--layout-magazine.hcfb-press-grid--featured-first .hcfb-press-card:first-child .hcfb-press-card__media--face-safe.hcfb-press-card__media--portrait {
    aspect-ratio: 4 / 5 !important;
  }
}

.hcfb-home-press {
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(20,49,86,.11);
  border-radius: clamp(22px, 3vw, 32px);
  background:
    radial-gradient(circle at 88% 6%, rgba(0,151,206,.12), transparent 28%),
    linear-gradient(150deg, #f9fbfd 0%, #eef4f8 100%);
  color: var(--hcfb-charcoal);
  box-shadow: 0 24px 70px rgba(20,49,86,.11);
  container-type: inline-size;
}

.hcfb-home-press * {
  box-sizing: border-box;
}

.hcfb-home-press__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(24px, 4vw, 38px);
}

.hcfb-home-press__eyebrow {
  margin: 0 0 8px;
  color: #006d95;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hcfb-home-press__heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--hcfb-navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.02;
}

.hcfb-home-press__top-link,
.hcfb-home-press__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--hcfb-navy) !important;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hcfb-home-press__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: clamp(18px, 2.6vw, 30px);
  align-items: stretch;
}

.hcfb-home-press__secondary-list {
  display: grid;
  gap: clamp(18px, 2.6vw, 30px);
}

.hcfb-home-press-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--hcfb-border);
  border-radius: 22px;
  background: var(--hcfb-white);
  box-shadow: 0 12px 34px rgba(20,49,86,.09);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hcfb-home-press-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(20,49,86,.14);
}

.hcfb-home-press-card--featured {
  display: flex;
  flex-direction: column;
}

.hcfb-home-press-card--secondary {
  display: grid;
  grid-template-columns: minmax(135px, 39%) minmax(0, 1fr);
}

.hcfb-home-press-card__media {
  display: grid;
  min-width: 0;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #f8fafc, #e8eef5);
}

.hcfb-home-press-card--featured .hcfb-home-press-card__media {
  min-height: clamp(300px, 34vw, 470px);
}

.hcfb-home-press-card--secondary .hcfb-home-press-card__media {
  min-height: 100%;
}

.hcfb-home-press-card__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hcfb-home-press-card__media--face-safe img {
  object-fit: contain;
  object-position: center top;
}

.hcfb-home-press-card__media--cover img {
  object-fit: cover;
  object-position: center;
}

.hcfb-home-press-card__media--placeholder {
  min-height: 210px;
  background: linear-gradient(145deg, var(--hcfb-navy), #285c91);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
}

.hcfb-home-press-card__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: clamp(20px, 2.8vw, 32px);
}

.hcfb-home-press-card--secondary .hcfb-home-press-card__body {
  padding: 20px 22px;
}

.hcfb-home-press-card__logo {
  display: flex;
  width: fit-content;
  max-width: min(100%, 170px);
  min-height: 36px;
  align-items: center;
  margin: 0 0 14px;
  padding: 6px 9px;
  border: 1px solid var(--hcfb-border);
  border-radius: 10px;
  background: #fff;
}

.hcfb-home-press-card__logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
}

.hcfb-home-press-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--hcfb-muted);
  font-size: .78rem;
  font-weight: 800;
}

.hcfb-home-press-card__meta span {
  color: #006d95;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hcfb-home-press-card h3 {
  margin: 14px 0 9px;
  color: var(--hcfb-navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

.hcfb-home-press-card--secondary h3 {
  font-size: clamp(1.16rem, 1.65vw, 1.48rem);
  line-height: 1.14;
}

.hcfb-home-press-card h3 a {
  color: inherit;
  text-decoration: none;
}

.hcfb-home-press-card__partner {
  margin: 0 0 9px;
  color: var(--hcfb-red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.hcfb-home-press-card__excerpt {
  margin: 0 0 18px;
  color: var(--hcfb-charcoal);
  line-height: 1.58;
}

.hcfb-home-press-card--secondary .hcfb-home-press-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hcfb-home-press-card__link {
  margin-top: auto;
  color: var(--hcfb-navy) !important;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hcfb-home-press__footer {
  display: none;
  margin-top: 26px;
  text-align: center;
}

.hcfb-home-press__button {
  min-height: 50px;
  padding: 11px 24px;
  border-radius: 999px;
  background: var(--hcfb-red);
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(167,52,57,.2);
}

.hcfb-home-press a:focus-visible {
  outline: 3px solid var(--hcfb-orange);
  outline-offset: 3px;
}

@container (max-width: 900px) {
  .hcfb-home-press__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hcfb-home-press__secondary-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hcfb-home-press-card--secondary {
    display: flex;
    flex-direction: column;
  }

  .hcfb-home-press-card--secondary .hcfb-home-press-card__media {
    min-height: 210px;
    aspect-ratio: 16 / 10;
  }
}

@container (max-width: 650px) {
  .hcfb-home-press {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .hcfb-home-press__heading {
    align-items: flex-start;
  }

  .hcfb-home-press__top-link {
    display: none;
  }

  .hcfb-home-press__footer {
    display: block;
  }

  .hcfb-home-press__secondary-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .hcfb-home-press-card--featured .hcfb-home-press-card__media,
  .hcfb-home-press-card--secondary .hcfb-home-press-card__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .hcfb-home-press-card__media--face-safe.hcfb-home-press-card__media--portrait {
    aspect-ratio: 4 / 5;
  }

  .hcfb-home-press__button {
    width: 100%;
  }
}

@media (hover: none) {
  .hcfb-home-press-card:hover {
    transform: none;
  }
}
