@import url(https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@400;500;700&display=swap);
/* Google Fonts
================================================ */
/* Partials
================================================ */
* {
  box-sizing: border-box;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --bg_gradient: linear-gradient(135deg, var(--navy) 0%, var(--navy_mid) 55%, #1e4d5c 100%);
  --light_grey: #F4F7F9;
  --teal: #006D77;
  --teal_light: #83C5BE;
  --teal_pale: #EDF6F9;
  --coral: #E07A5F;
  --coral_light: #F8D3CA;
  --navy: #1A2942;
  --navy_mid: #2D3F5E;
  --cream: #F4F7F9;
  --text: #1A2942;
  --text_muted: #6B7A8F;
  --border: #E4ECF0;
  --white: #ffffff;
  --tag-bg: #EDF6F9;
  --og_green: #64A70B;
  --og_light: #bccfa3;
  --shadow_sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow_md: 0 4px 16px rgba(26,41,66,0.08), 0 2px 6px rgba(26,41,66,0.04);
  --shadow_lg: 0 12px 40px rgba(26,41,66,0.12);
  --radius: 12px;
  --glass_bg: rgba(255,255,255,0.55);
  --glass_border: rgba(255,255,255,0.7);
  --glass_blur: blur(18px);
  --glass_shadow: 0 8px 32px rgba(26,41,66,0.1), inset 0 1px 0 rgba(255,255,255,0.6);
}

#wpadminbar {
  position: fixed;
}

/**
 * Base grid engine
 * - $cols: number of columns (1 = stack)
 * - $gap: default gap token/size
 * - $row-gap / $col-gap: optionally override axis gaps
 */
/**
 * Stack helper (vertical rhythm only)
 */
/**
 * Responsive grid columns without repeating media queries
 * Pass a map: (0: 1, 768: 2, 1025: 12)
 *
 * Example:
 * @include grid-at((0: 1, 1025: 12), $gap: var(--grid-gap));
 */
/**
 * Child placement helpers
 */
/**
 * Optional convenience: start + width (less "grid line maths")
 * Example: @include col(6, 7) -> grid-column: 6 / span 7;
 */
.hawrc-page main .body-style a {
  transition: all 0.25s ease-in-out;
  font-weight: 500;
  display: inline;
  text-underline-offset: 5px;
  text-decoration: underline;
}
.hawrc-page main .body-style a:hover {
  text-decoration: none;
}
.hawrc-page main .body-style h1, .hawrc-page main .body-style h2, .hawrc-page main .body-style h3, .hawrc-page main .body-style h4, .hawrc-page main .body-style h5 {
  margin-bottom: 25px;
  margin-top: 25px;
}
.hawrc-page main .body-style h1:first-child, .hawrc-page main .body-style h2:first-child, .hawrc-page main .body-style h3:first-child, .hawrc-page main .body-style h4:first-child, .hawrc-page main .body-style h5:first-child {
  margin-top: 0;
}
.hawrc-page main .body-style h1:only-child, .hawrc-page main .body-style h2:only-child, .hawrc-page main .body-style h3:only-child, .hawrc-page main .body-style h4:only-child, .hawrc-page main .body-style h5:only-child {
  margin-bottom: 0;
}
.hawrc-page main .body-style h1 {
  margin-bottom: 40px;
}
.hawrc-page main .body-style p {
  margin-bottom: 15px;
}
.hawrc-page main .body-style p:last-child {
  margin-bottom: 0;
}
.hawrc-page main .body-style ul {
  font-size: 16px;
  list-style: disc;
  margin-left: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .hawrc-page main .body-style ul {
    font-size: 14px;
  }
}
.hawrc-page main .body-style ul li {
  margin-bottom: 15px;
}
.hawrc-page main .body-style ul li:last-of-type {
  margin-bottom: 0;
}
.hawrc-page main .body-style ul:last-child {
  margin-bottom: 0;
}

.hawrc-page .hawrc-btn, .hawrc-page a.hawrc-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.25s ease-in-out;
  height: 50px;
  padding: 10px 20px;
  border-radius: 4px;
  color: #FFF;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--teal);
  background-color: var(--teal);
  color: #FFF;
  cursor: pointer;
  white-space: nowrap;
}
.hawrc-page .hawrc-btn:hover, .hawrc-page a.hawrc-btn:hover {
  filter: brightness(0.9);
}
.hawrc-page .hawrc-btn.coral, .hawrc-page .hawrc-resource-card .tags .hawrc-btn.hawrc-tag:nth-of-type(2n), .hawrc-resource-card .tags .hawrc-page .hawrc-btn.hawrc-tag:nth-of-type(2n), .hawrc-page a.hawrc-btn.coral {
  border: 1px solid var(--coral);
  background-color: var(--coral);
}
.hawrc-page .hawrc-btn.og-green, .hawrc-page .hawrc-block.hawrc-buttons .hawrc-btn:nth-of-type(2n), .hawrc-block.hawrc-buttons .hawrc-page .hawrc-btn:nth-of-type(2n), .hawrc-page .hawrc-btn.hawrc-tag:nth-of-type(2), .hawrc-page a.hawrc-btn.og-green {
  border: 1px solid var(--og_green);
  background-color: var(--og_green);
}
.hawrc-page .hawrc-btn.white, .hawrc-page a.hawrc-btn.white {
  border: 1px solid #FFF;
  background-color: #FFF;
  color: var(--navy);
}
.hawrc-page .hawrc-btn[target=_blank]:after, .hawrc-page a.hawrc-btn[target=_blank]:after {
  transition: all 0.25s ease-in-out;
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}
@media screen and (max-width: 1023px) {
  .hawrc-page .hawrc-btn[target=_blank]:after, .hawrc-page a.hawrc-btn[target=_blank]:after {
    display: none;
  }
}

html:has(.hawrc-page) {
  scroll-behavior: smooth;
  scroll-padding-top: var(--headerHeight);
}

.hawrc-page {
  background-color: var(--light_grey);
}
.hawrc-page .hawrc-wrap {
  max-width: 1360px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}
.hawrc-page .hawrc-grid {
  padding: 40px 0;
}
.hawrc-page .hawrc-grid .hawrc-wrap {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}
@media screen and (max-width: 1023px) {
  .hawrc-page .hawrc-grid .hawrc-wrap {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Third Party Payload
================================================ */
/* Layout
================================================ */
/* Components Payload
================================================ */
.ajax-listings {
  position: relative;
  min-height: 40rem;
  width: 100%;
}
.ajax-listings.loading .ajax-loader {
  opacity: 1;
}
.ajax-listings.loading .inner-grid, .ajax-listings.loading .pagination {
  animation: fadeOut 0.5s both;
}
.ajax-listings.loaded .ajax-loader {
  opacity: 0;
}
.ajax-listings.loaded .inner-grid, .ajax-listings.loaded .pagination {
  animation: fadeIn 0.5s 0.5s forwards;
}
.ajax-listings .inner-grid {
  min-height: 40rem;
  opacity: 0;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ajax-listings .noposts {
  grid-column: 1/-1;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
}
.ajax-listings .pagination {
  margin-top: 40px;
  grid-column: 1/-1;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.ajax-listings .page-numbers {
  transition: all 0.25s ease-in-out;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  color: var(--primary);
  font-size: 14px;
  line-height: 1;
  box-shadow: var(--shadow_md);
  border-radius: 5px;
  background-color: #FFF;
}
@media screen and (min-width: 1024px) {
  .ajax-listings .page-numbers {
    font-size: 16px;
  }
}
.ajax-listings .page-numbers.current, .ajax-listings .page-numbers:hover {
  background: var(--teal);
  color: #FFF;
}
.ajax-listings .page-numbers.next, .ajax-listings .page-numbers.prev {
  display: none;
}
.ajax-listings .ajax-loader {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: 0.5s 0.5s all;
  z-index: 5;
  background: var(--light_grey);
  box-sizing: none;
}
.ajax-listings .ajax-loader .loader {
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  position: absolute;
  top: 20rem;
  margin: 0 auto;
}
.ajax-listings .ajax-loader .loader:before, .ajax-listings .ajax-loader .loader:after {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 5px solid transparent;
  border-top-color: var(--primary);
}
.ajax-listings .ajax-loader .loader:before {
  z-index: 100;
  animation: spin 1s infinite;
}
.ajax-listings .ajax-loader .loader:after {
  border: 5px solid #F4F4F4;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ajax-loader {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.5s 0.5s all;
  z-index: 5;
  background: rgba(255, 255, 255, 0.4);
}
.ajax-loader .loader {
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  position: absolute;
  top: 20rem;
  margin: 0 auto;
}
.ajax-loader .loader:before, .ajax-loader .loader:after {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 5px solid transparent;
  border-top-color: var(--primary);
}
.ajax-loader .loader:before {
  z-index: 100;
  animation: spin 1s infinite;
}
.ajax-loader .loader:after {
  border: 5px solid #F4F4F4;
}
.ajax-loader.show-loader {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.hawrc-page .wpcf7 form input, .hawrc-page .wpcf7 form button:not(.modal-close), .hawrc-page input, .hawrc-page button:not(.modal-close) {
  -webkit-appearance: none;
  outline: 0;
  border: 0;
  display: flex;
  width: 100%;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 6px 6px 6px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  gap: 8px;
  align-items: center;
  transition: border-color 0.2s;
  color: #FFF;
  font-size: 15px;
  height: 50px;
}
.hawrc-page .wpcf7 form input[type=submit], .hawrc-page input[type=submit] {
  transition: all 0.25s ease-in-out;
  justify-content: center;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--teal);
  background-color: var(--teal);
  color: #FFF;
  box-shadow: none;
  cursor: pointer;
  padding: 0;
  text-transform: none;
}
.hawrc-page .wpcf7 form input[type=submit]:hover, .hawrc-page input[type=submit]:hover {
  filter: brightness(0.9);
}

.hawrc-masthead {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  background: var(--bg_gradient);
  color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  padding: 60px 0 0;
}
.hawrc-masthead img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  filter: brightness(0.45) saturate(0.8);
}
.hawrc-masthead .masthead-blob-mid {
  position: absolute;
  top: 30%;
  left: 40%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 109, 119, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hawrc-masthead:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 41, 66, 0.55) 0%, rgba(0, 109, 119, 0.3) 60%, rgba(26, 41, 66, 0.6) 100%);
  z-index: 3;
  border-radius: 0;
}
.hawrc-masthead:after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(224, 122, 95, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hawrc-masthead.disable-overlay img {
  filter: none;
}
.hawrc-masthead.disable-overlay:before {
  display: none;
}
.hawrc-masthead-content {
  max-width: 550px;
}
.hawrc-masthead .hawrc-wrap {
  display: grid;
  gap: 36px;
  position: relative;
  z-index: 4;
}
.hawrc-masthead .hawrc-pre-title-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(131, 197, 190, 0.15);
  border: 1px solid rgba(131, 197, 190, 0.3);
  color: var(--teal_light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  backdrop-filter: blur(3px);
  margin-bottom: 14px;
}
.hawrc-masthead .hawrc-pre-title-tag:before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal_light);
  border-radius: 50%;
}
.hawrc-masthead .hawrc-pre-title-tag.navy, .hawrc-masthead .hawrc-pre-title-tag.hawrc-tag:nth-of-type(3) {
  background: var(--navy_mid);
  border-color: var(--navy);
  color: var(--navy);
}
.hawrc-masthead .hawrc-pre-title-tag.og-green, .hawrc-masthead .hawrc-block.hawrc-buttons .hawrc-pre-title-tag.hawrc-btn:nth-of-type(2n), .hawrc-block.hawrc-buttons .hawrc-masthead .hawrc-pre-title-tag.hawrc-btn:nth-of-type(2n), .hawrc-masthead .hawrc-pre-title-tag.hawrc-tag:nth-of-type(2) {
  background: var(--og_green_light);
  border-color: var(--og_green);
  color: var(--og_green);
}
.hawrc-masthead .hawrc-pre-title-tag.coral, .hawrc-masthead .hawrc-resource-card .tags .hawrc-pre-title-tag.hawrc-tag:nth-of-type(2n), .hawrc-resource-card .tags .hawrc-masthead .hawrc-pre-title-tag.hawrc-tag:nth-of-type(2n) {
  background: var(--coral_light);
  border-color: var(--coral);
  color: var(--coral);
}
.hawrc-masthead h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1 !important;
  color: #FFF;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .hawrc-masthead h1 {
    font-size: 40px;
  }
}
.hawrc-masthead h1 span {
  color: var(--teal_light);
}
.hawrc-masthead p {
  font-size: 17px;
  margin-bottom: 15px;
  color: #FFF;
}
.hawrc-masthead p:last-of-type {
  margin-bottom: 0;
}
.hawrc-masthead input[type=search] {
  margin-top: 24px;
  margin-bottom: 48px;
  max-width: 620px;
}
.hawrc-masthead input[type=search]::-moz-placeholder {
  color: #FFF;
}
.hawrc-masthead input[type=search]::placeholder {
  color: #FFF;
}
.hawrc-masthead .stats-row {
  display: flex;
  flex-direction: row;
  justify-content: none;
  align-items: none;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}
@media screen and (max-width: 767px) {
  .hawrc-masthead .stats-row {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.hawrc-masthead .stats-row .statistic {
  position: relative;
}
.hawrc-masthead .stats-row .statistic-number {
  font-size: 28px;
  font-weight: 700;
  color: white;
}
.hawrc-masthead .stats-row .statistic-label {
  font-size: 12px;
}
.hawrc-masthead .stats-row .stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 4px 0;
}
@media screen and (max-width: 767px) {
  .hawrc-masthead .stats-row .stat-divider {
    display: none;
  }
}
.hawrc-masthead.single-resource-masthead {
  min-height: 520px;
  padding-bottom: 60px;
}
.hawrc-masthead.single-resource-masthead:after {
  display: none;
}
.hawrc-masthead.single-resource-masthead .hawrc-masthead-content {
  max-width: 750px;
}
.hawrc-masthead.single-resource-masthead .tags {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1023px) {
  .hawrc-masthead.single-resource-masthead .tags {
    flex-wrap: wrap;
  }
}
.hawrc-masthead.single-resource-masthead .tags .hawrc-tag {
  padding: 5px 14px;
  font-size: 12px;
  border-color: rgba(131, 197, 190, 0.35);
  backdrop-filter: blur(8px);
  background: rgba(131, 197, 190, 0.2);
}
.hawrc-masthead.single-resource-masthead .tags .hawrc-tag.coral, .hawrc-masthead.single-resource-masthead .hawrc-resource-card .tags .hawrc-tag:nth-of-type(2n), .hawrc-resource-card .hawrc-masthead.single-resource-masthead .tags .hawrc-tag:nth-of-type(2n) {
  background: rgba(224, 122, 95, 0.2);
  border-color: rgba(224, 122, 95, 0.35);
}
.hawrc-masthead.single-resource-masthead .tags .hawrc-tag.og-green, .hawrc-masthead.single-resource-masthead .tags .hawrc-block.hawrc-buttons .hawrc-tag.hawrc-btn:nth-of-type(2n), .hawrc-block.hawrc-buttons .hawrc-masthead.single-resource-masthead .tags .hawrc-tag.hawrc-btn:nth-of-type(2n), .hawrc-masthead.single-resource-masthead .tags .hawrc-tag:nth-of-type(2) {
  background: var(--og_green_light);
  border-color: var(--og_green);
  color: var(--og_green);
}
.hawrc-masthead.single-resource-masthead .tags .hawrc-tag.navy, .hawrc-masthead.single-resource-masthead .tags .hawrc-tag:nth-of-type(3) {
  background: rgba(26, 41, 66, 0.1);
  border-color: rgba(26, 41, 66, 0.35);
  color: rgba(255, 255, 255, 0.6);
}
.hawrc-masthead.single-resource-masthead .tags .masthead-dot {
  display: block;
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 1023px) {
  .hawrc-masthead.single-resource-masthead h1 {
    font-size: 36px;
    max-width: 500px;
  }
  .hawrc-masthead.single-resource-masthead p {
    max-width: 500px;
  }
}
.hawrc-masthead.single-resource-masthead .lower-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .hawrc-masthead.single-resource-masthead .lower-row {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.hawrc-masthead.single-resource-masthead .lower-row .share {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .hawrc-masthead.single-resource-masthead .lower-row .share {
    flex-direction: column;
    align-items: start;
    margin-left: 0;
    gap: 10px;
  }
}
.hawrc-masthead.single-resource-masthead .lower-row .share h5 {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 !important;
}
.hawrc-masthead.single-resource-masthead .lower-row .share .social-share {
  display: flex;
  flex-direction: row;
  justify-content: none;
  align-items: none;
  gap: 8px;
}
.hawrc-masthead.single-resource-masthead .lower-row .share .social-share .social-share-link:hover {
  border-color: #FFF;
  background: rgba(255, 255, 255, 0.22);
  color: white;
}
.hawrc-masthead.single-resource-masthead .lower-row .share .social-share svg path {
  fill: rgba(255, 255, 255, 0.75);
}
.hawrc-masthead.single-resource-masthead .lower-row .share .social-share span:not(.hawrc-tooltip) {
  display: none;
}
.hawrc-masthead.single-resource-masthead .lower-row .share .social-share .hawrc-tooltip {
  bottom: calc(100% + 12px);
  right: 0;
  left: auto;
  top: auto;
  color: #FFF;
  font-size: 12px;
}

.hawrc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(131, 197, 190, 0.15);
  border: 1px solid rgba(131, 197, 190, 0.3);
  color: var(--teal_light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  backdrop-filter: blur(3px);
}
.hawrc-tag:before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal_light);
  border-radius: 50%;
}
.hawrc-tag.navy, .hawrc-tag:nth-of-type(3) {
  background: var(--navy_mid);
  border-color: var(--navy);
  color: #FFF;
}
.hawrc-tag.coral, .hawrc-resource-card .tags .hawrc-tag:nth-of-type(2n) {
  background: var(--coral_light);
  border-color: var(--coral);
  color: var(--coral);
}
.hawrc-tag.og-green, .hawrc-block.hawrc-buttons .hawrc-tag.hawrc-btn:nth-of-type(2n), .hawrc-tag:nth-of-type(2) {
  background: var(--og_green_light);
  border-color: var(--og_green);
  color: var(--og_green);
}
.hawrc-tag {
  text-transform: none;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.2;
  padding: 5px 10px;
  letter-spacing: 0;
  border-color: transparent;
}
.hawrc-tag:before {
  display: none;
}
.cards {
  display: block;
  background: var(--glass_bg);
  backdrop-filter: var(--glass_blur);
  -webkit-backdrop-filter: var(--glass_blur);
  border: 1px solid var(--glass_border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--glass_shadow);
}
.cards h5 {
  margin-bottom: 12px !important;
}
@media screen and (max-width: 1023px) {
  .cards {
    padding: 12px;
  }
}

.hawrc-sidebar {
  grid-column: 1/-1;
}
@media screen and (min-width: 768px) {
  .hawrc-sidebar {
    grid-column: span 3;
  }
}
@media screen and (min-width: 1280px) and (min-height: 850px) {
  .hawrc-sidebar {
    position: sticky;
    top: 180px;
  }
}
.hawrc-sidebar .cards {
  margin-bottom: 12px;
}
.hawrc-sidebar .cards:last-child {
  margin-bottom: 0;
}
.hawrc-sidebar .hawrc-taxonomy-pills {
  display: flex;
  flex-direction: row;
  justify-content: none;
  align-items: none;
  gap: 6px 8px;
  flex-wrap: wrap;
}
.hawrc-sidebar h3 {
  display: none;
}
.hawrc-sidebar .close {
  display: none;
}
@media screen and (max-width: 1023px) {
  .hawrc-sidebar:not(.filter-sidebar) {
    order: 3;
    grid-column: 1/-1;
    display: contents;
  }
  .hawrc-sidebar:not(.filter-sidebar) .cards {
    grid-column: 1/-1;
    margin: 0;
  }
  .hawrc-sidebar.filter-sidebar {
    transition: all 0.25s ease-in-out;
    background-color: var(--light_grey);
    position: fixed;
    top: 60px;
    left: 0;
    padding: 20px;
    pointer-events: none;
    opacity: 0;
    z-index: 5;
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100dvh - 60px);
    width: 100%;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .hawrc-sidebar.filter-sidebar {
    max-width: 450px;
    opacity: 1;
    transform: translateX(-100%);
  }
  .hawrc-sidebar.filter-sidebar.active {
    transform: translate(0);
  }
}
@media screen and (max-width: 1023px) {
  .hawrc-sidebar.filter-sidebar .close {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 20px;
    right: 20px;
    height: 30px;
    width: 30px;
    z-index: 5;
    transform: rotate(45deg);
    cursor: pinter;
  }
  .hawrc-sidebar.filter-sidebar .close:before, .hawrc-sidebar.filter-sidebar .close:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--teal);
  }
  .hawrc-sidebar.filter-sidebar .close:after {
    transform: rotate(90deg);
  }
  .hawrc-sidebar.filter-sidebar h3 {
    display: block;
    margin-bottom: 25px;
  }
  .hawrc-sidebar.filter-sidebar.active {
    opacity: 1;
    pointer-events: auto;
  }
}

.hawrc-resource-card {
  transition: all 0.25s ease-in-out;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-column: span 4;
  border: 1px solid var(--cream);
  background-color: #FFF;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow_md);
}
@media screen and (max-width: 767px) {
  .hawrc-resource-card {
    grid-column: 1/-1;
  }
}
.hawrc-resource-card .hawrc-featured-image, .hawrc-resource-card .hawrc-card-content {
  grid-column: 1/-1;
}
.hawrc-resource-card .hawrc-featured-image {
  position: relative;
  background-color: var(--og_green);
  width: 100%;
  aspect-ratio: 2/1;
}
.hawrc-resource-card .hawrc-featured-image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hawrc-resource-card .hawrc-featured-image .hawrc-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow_lg);
  color: #FFF;
  border: 1px solid #FFF;
  text-transform: none;
  border-radius: 0.5rem;
  font-weight: 600;
  letter-spacing: 0;
}
.hawrc-resource-card .hawrc-featured-image .hawrc-tag.featured {
  font-size: 14px;
  background-color: rgba(224, 123, 95, 0.7450980392);
  border: 1px solid var(--og_green);
}
.hawrc-resource-card .hawrc-featured-image .hawrc-tag:before {
  display: none;
}
.hawrc-resource-card .hawrc-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: none;
  align-items: none;
  grid-row: span 3;
}
.hawrc-resource-card .hawrc-inner-content {
  margin-bottom: auto;
}
.hawrc-resource-card .tags {
  margin-bottom: 24px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .hawrc-resource-card .tags {
    flex-wrap: wrap;
    gap: 12px 8px;
  }
}
.hawrc-resource-card .tags .hawrc-tag {
  text-transform: none;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.2;
  padding: 5px 10px;
  letter-spacing: 0;
  border: none;
}
.hawrc-resource-card .tags .hawrc-tag:before {
  display: none;
}
.hawrc-resource-card h3 {
  margin-bottom: 24px;
}
.hawrc-resource-card h3:last-child {
  margin-bottom: 0;
}
.hawrc-resource-card p {
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .hawrc-resource-card:not(.hawrc-resource-card:first-of-type) h3 {
    font-size: 20px;
  }
  .hawrc-resource-card:not(.hawrc-resource-card:first-of-type) p {
    font-size: 14px;
  }
  .hawrc-resource-card:not(.hawrc-resource-card:first-of-type) .author-roundel {
    display: none;
  }
  .hawrc-resource-card:not(.hawrc-resource-card:first-of-type) .lower-strip {
    padding-top: 12px;
  }
}
.hawrc-resource-card .date, .hawrc-resource-card .read-time {
  line-height: 1;
  font-size: 12px;
  color: var(--text-muted);
}
.hawrc-resource-card .lower-strip {
  margin-top: 24px;
  border-top: 1px solid var(--light_grey);
  padding-top: 24px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
}
.hawrc-resource-card .left {
  display: grid;
  gap: 0 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}
.hawrc-resource-card .left .author-roundel {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--teal);
  border-radius: 50%;
  grid-column: 1;
  grid-row: span 2;
  aspect-ratio: 1/1;
  max-width: 50px;
}
@media screen and (max-width: 1279px) {
  .hawrc-resource-card .left .author-roundel {
    display: none;
  }
}
.hawrc-resource-card .left p {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column: span 3;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .hawrc-resource-card .left p {
    grid-column: 1/-1;
  }
}
.hawrc-resource-card .left p span {
  margin-top: 2px;
  display: block;
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background-color: var(--text_muted);
  opacity: 0.5;
}
.hawrc-resource-card .left .date {
  font-size: 11px;
  grid-column: span 3;
}
.hawrc-resource-card .read-now {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in-out;
  gap: 10px;
  cursor: pointer;
  font-weight: 700;
  color: var(--teal);
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .hawrc-resource-card:first-of-type {
    grid-column: 1/-1;
    min-height: 350px;
  }
  .hawrc-resource-card:first-of-type .hawrc-featured-image {
    grid-row: span 3;
    grid-column: span 6;
    aspect-ratio: auto;
  }
  .hawrc-resource-card:first-of-type .hawrc-featured-image .hawrc-tag {
    top: auto;
    right: auto;
    left: 24px;
    bottom: 24px;
  }
  .hawrc-resource-card:first-of-type .hawrc-card-content {
    padding: 24px 32px;
    grid-column: span 6;
  }
}
.hawrc-resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow_lg);
}
.hawrc-resource-card:hover .read-now {
  letter-spacing: 0.25px;
}

.hawrc-pill {
  transition: all 0.25s ease-in-out;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1.5px solid rgba(228, 236, 240, 0.8);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}
.hawrc-pill.filter-pill {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  background: rgba(237, 246, 249, 0.8);
  color: var(--teal);
  border: 1px solid rgba(0, 109, 119, 0.2);
  font-size: 12px;
  backdrop-filter: blur(4px);
}
.hawrc-pill.filter-pill:after {
  display: block;
  content: "x";
  font-weight: 700;
}
.hawrc-pill.filter-pill:hover {
  opacity: 0.6;
}
.hawrc-pill.teal.active, .hawrc-pill.teal:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}
.hawrc-pill.navy.active, .hawrc-pill.active.hawrc-tag:nth-of-type(3), .hawrc-pill.navy:hover, .hawrc-pill.hawrc-tag:hover:nth-of-type(3) {
  background: var(--navy_mid);
  border-color: var(--navy_mid);
  color: white;
}
.hawrc-pill.og-green.active, .hawrc-block.hawrc-buttons .hawrc-pill.active.hawrc-btn:nth-of-type(2n), .hawrc-pill.active.hawrc-tag:nth-of-type(2), .hawrc-pill.og-green:hover, .hawrc-block.hawrc-buttons .hawrc-pill.hawrc-btn:hover:nth-of-type(2n), .hawrc-pill.hawrc-tag:hover:nth-of-type(2) {
  background: var(--og_green);
  border-color: var(--og_green);
  color: white;
}
.hawrc-pill.coral.active, .hawrc-resource-card .tags .hawrc-pill.active.hawrc-tag:nth-of-type(2n), .hawrc-pill.coral:hover, .hawrc-resource-card .tags .hawrc-pill.hawrc-tag:hover:nth-of-type(2n) {
  background: var(--coral);
  border-color: var(--coral);
  color: white;
}

.hawrc-newsletter-signup {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, var(--navy) 0%, #1e4d5c 100%);
  border-radius: 18px;
  padding: 48px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  max-width: 1320px;
  width: calc(100vw - 40px);
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .hawrc-newsletter-signup {
    padding: 24px;
  }
}
@media screen and (max-width: 767px) {
  .hawrc-newsletter-signup {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.hawrc-newsletter-signup:before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(131, 197, 190, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hawrc-newsletter-signup h3 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.hawrc-newsletter-signup p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.hawrc-newsletter-signup .wpcf7 form {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 500px;
  width: 100%;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .hawrc-newsletter-signup .wpcf7 form {
    flex-direction: column;
    gap: 10px;
  }
}
.hawrc-newsletter-signup .wpcf7 form .wpcf7-form-control-wrap {
  position: relative;
  margin: 0;
  width: 100%;
}
.hawrc-newsletter-signup .wpcf7 form label.error {
  position: absolute;
  top: calc(100% + 5px);
}
.hawrc-newsletter-signup .wpcf7 form input {
  margin: 0;
}
.hawrc-newsletter-signup .wpcf7 form input[type=submit] {
  max-width: 125px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .hawrc-newsletter-signup .wpcf7 form input[type=submit] {
    width: 100%;
    max-width: none;
  }
}
.hawrc-newsletter-signup .wpcf7 form .wpcf7-spinner {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  margin: 0;
}
.hawrc-newsletter-signup .wpcf7 form[data-status=sent] .wpcf7-response-output {
  display: block !important;
  -webkit-appearance: none;
  outline: 0;
  border: 0;
  width: 100%;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 6px 6px 6px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  gap: 8px;
  align-items: center;
  transition: border-color 0.2s;
  color: #FFF;
  font-size: 13px;
  margin: 0;
  position: absolute;
  top: calc(100% + 5px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hawrc-newsletter-signup .wpcf7 form[data-status=sent] .wpcf7-response-output {
    position: static;
    font-size: 13px;
    padding: 5px;
  }
}

.author {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 10px 24px 10px 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: var(--glass_blur);
  border: 1px solid var(--glass_border);
}
.author .author-roundel {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--teal);
  border-radius: 50%;
  min-width: 40px;
  aspect-ratio: 1/1;
}
.author p {
  color: #FFF;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
}
.author p span {
  font-weight: 400;
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.hawrc-block {
  width: 100%;
  margin-top: 64px;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .hawrc-block {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
.hawrc-block:first-child {
  margin-top: 0;
}
.hawrc-block:last-child {
  margin-bottom: 0;
}
.hawrc-block.top-large {
  margin-top: 88px;
}
.hawrc-block.top-small {
  margin-top: 32px;
}
.hawrc-block.top-none {
  margin-top: 0;
}
.hawrc-block.bottom-large {
  margin-bottom: 88px;
}
.hawrc-block.bottom-small {
  margin-bottom: 32px;
}
.hawrc-block.bottom-none {
  margin-bottom: 0;
}
.hawrc-block.hawrc-callout-content {
  background: rgba(237, 246, 249, 0.7);
  border: 1px solid rgba(0, 109, 119, 0.14);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 24px 28px;
}
@media screen and (max-width: 767px) {
  .hawrc-block.hawrc-callout-content {
    padding: 24px 18px;
  }
}
.hawrc-block.hawrc-callout-content.body-style strong, .hawrc-block.hawrc-callout-content.body-style h5 {
  color: var(--teal);
  margin-bottom: 15px;
}
.hawrc-block.hawrc-callout-content.body-style ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hawrc-block.hawrc-callout-content.body-style ul li {
  display: flex;
  gap: 20px;
}
.hawrc-block.hawrc-callout-content.body-style ul li:before {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  line-height: 0.5;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 5px;
  content: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23FFF' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.hawrc-block.hawrc-buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .hawrc-block.hawrc-buttons {
    flex-wrap: wrap;
  }
}
.hawrc-block.hawrc-call-to-action {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background: linear-gradient(135deg, rgba(26, 41, 66, 0.92) 0%, rgba(30, 77, 92, 0.92) 100%);
  border: 1px solid rgba(131, 197, 190, 0.2);
  border-radius: var(--radius);
  padding: 32px 24px;
  gap: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass_shadow);
  color: #FFF;
  border: none;
}
@media screen and (max-width: 767px) {
  .hawrc-block.hawrc-call-to-action {
    flex-direction: column;
  }
}
.hawrc-block.hawrc-call-to-action .left {
  max-width: 60%;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .hawrc-block.hawrc-call-to-action .left {
    margin: 0;
    max-width: none;
  }
}
.hawrc-block.hawrc-call-to-action h2, .hawrc-block.hawrc-call-to-action h3, .hawrc-block.hawrc-call-to-action h4 {
  color: #FFF;
  margin-bottom: 20px !important;
}
.hawrc-block.hawrc-call-to-action p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}
@media screen and (max-width: 767px) {
  .hawrc-block.hawrc-call-to-action .hawrc-btn {
    margin-right: auto;
  }
}
.hawrc-block.hawrc-call-to-action:before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(131, 197, 190, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .hawrc-block.hawrc-content-cards {
    display: grid;
    gap: 12px;
  }
}
.hawrc-block.hawrc-content-cards .cards {
  padding: 14px 18px;
}
.hawrc-block.hawrc-content-cards .cards p {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .hawrc-block.hawrc-content-cards.rows {
    display: grid;
    gap: 12px;
  }
  .hawrc-block.hawrc-content-cards.grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.hawrc-block.hawrc-content-cards.ticks .cards {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
}
.hawrc-block.hawrc-content-cards.ticks .cards:before {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  line-height: 1;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal_pale);
  flex-shrink: 0;
  margin-top: 1px;
  content: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23006D77' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.hawrc-block.hawrc-divider {
  background-color: rgba(0, 0, 0, 0.15);
  height: 1px;
  width: 100%;
  border: 0;
  margin: 0;
}
.hawrc-block.hawrc-image video, .hawrc-block.hawrc-image img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
}
.hawrc-block.hawrc-callout-quote {
  border-left: 4px solid var(--teal_light);
  padding: 8px 24px;
}
.hawrc-block.hawrc-callout-quote p:not(.quote-source) {
  font-size: 24px;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .hawrc-block.hawrc-callout-quote p:not(.quote-source) {
    font-size: 22px;
  }
}
.hawrc-block.hawrc-callout-quote .quote-source {
  color: var(--text_muted);
  font-size: 13px;
}
.hawrc-block.hawrc-statistics {
  display: grid;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .hawrc-block.hawrc-statistics {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.hawrc-block.hawrc-statistics .cards {
  padding: 24px 18px;
  text-align: center;
}
.hawrc-block.hawrc-statistics .cards .statistic-number {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--teal);
}
.hawrc-block.hawrc-statistics .cards p {
  font-size: 13px;
  line-height: 1.4;
  color: var(--text_muted);
}
.hawrc-block.hawrc-video {
  position: relative;
  cursor: pointer;
}
.hawrc-block.hawrc-video.video-playing:before, .hawrc-block.hawrc-video.video-playing:after {
  opacity: 0;
}
.hawrc-block.hawrc-video:before, .hawrc-block.hawrc-video:after {
  transition: all 0.25s ease-in-out;
  pointer-events: none;
}
.hawrc-block.hawrc-video:before {
  content: "";
  display: block;
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--teal);
  height: 100px;
  aspect-ratio: 1;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .hawrc-block.hawrc-video:before {
    height: 80px;
  }
}
.hawrc-block.hawrc-video:after {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  margin-top: 3px;
  margin-left: 5px;
  transform: translate(-50%, -50%);
  content: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 24 24' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='5 3 19 12 5 21'/%3E%3C/svg%3E");
}
.hawrc-block.hawrc-video video {
  outline: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .hawrc-block.hawrc-video video {
    aspect-ratio: 1;
  }
}

.gateway-popup {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  background: var(--glass_bg);
  backdrop-filter: var(--glass_blur);
  -webkit-backdrop-filter: var(--glass_blur);
  z-index: 99999999;
  pointer-events: none;
}
.gateway-popup.active {
  animation: fadeIn 0.25s ease-in-out forwards;
  backface-visibility: hidden;
  pointer-events: auto;
}
.gateway-popup.active .modal {
  animation: fadeIn 0.5s 0.25s forwards;
  backface-visibility: hidden;
}
.gateway-popup .modal {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  max-width: 500px;
  max-height: calc(100vh - 40px);
  opacity: 0;
  background: var(--glass_bg);
  backdrop-filter: var(--glass_blur);
  -webkit-backdrop-filter: var(--glass_blur);
  border: 1px solid var(--glass_border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--glass_shadow);
  transition: all 0.25s ease-in-out;
  z-index: 999;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gateway-popup .modal::-webkit-scrollbar {
  display: none;
}
.gateway-popup .modal .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(228, 236, 240, 0.7);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text_muted);
  transition: all 0.15s;
}
.gateway-popup .modal .modal-close:hover {
  transition: all 0.25s ease-in-out;
  filter: brightness(0.9);
}
.gateway-popup .modal .hawrc-pill {
  pointer-events: none;
}
.gateway-popup .modal .wpcf7 {
  margin-top: 20px;
}
.gateway-popup .modal .wpcf7, .gateway-popup .modal form {
  position: relative;
  width: 100%;
}
.gateway-popup .modal .wpcf7 .wpcf7-form-control-wrap, .gateway-popup .modal form .wpcf7-form-control-wrap {
  width: 100%;
}
.gateway-popup .modal .wpcf7 .row, .gateway-popup .modal form .row {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 1023px) {
  .gateway-popup .modal .wpcf7 .row, .gateway-popup .modal form .row {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
.gateway-popup .modal .wpcf7 label, .gateway-popup .modal form label {
  display: block;
  font-size: 0;
}
.gateway-popup .modal .wpcf7 span, .gateway-popup .modal form span {
  width: 100%;
  margin: 0;
}
.gateway-popup .modal .wpcf7 input, .gateway-popup .modal form input {
  padding: 24px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text) !important;
  background: var(--glass_bg);
  backdrop-filter: blur(8px);
  cursor: pointer;
  outline: none;
  font-family: "DM Sans", sans-serif;
  width: 100%;
}
.gateway-popup .modal .wpcf7 input.wpcf7-submit, .gateway-popup .modal form input.wpcf7-submit {
  font-family: "DM Sans", sans-serif;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.25s ease-in-out;
  height: 50px;
  padding: 10px 20px;
  border-radius: var(--radius);
  color: #FFF !important;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--teal);
  background-color: var(--teal);
  color: #FFF;
  cursor: pointer;
  white-space: nowrap;
  margin: 20px 0 0 0;
  grid-column: 1/-1;
  text-transform: none;
}
.gateway-popup .modal .wpcf7 input.wpcf7-submit:hover, .gateway-popup .modal form input.wpcf7-submit:hover {
  filter: brightness(0.9);
}
.gateway-popup .modal .wpcf7 .wpcf7-spinner, .gateway-popup .modal form .wpcf7-spinner {
  position: absolute;
  left: auto;
  top: auto;
  bottom: 12px;
  right: 10px;
  background-color: var(--teal);
  filter: brightness(0.5);
  width: 25px;
  height: 25px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Pages Payload
================================================ */
.hawrc-resources-overview {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-column: 1/-1;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .hawrc-resources-overview {
    grid-column: span 8;
  }
}
@media screen and (min-width: 1280px) {
  .hawrc-resources-overview {
    grid-column: span 9;
  }
}
.hawrc-resources-overview .grid-head {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  grid-column: 1/-1;
}
@media screen and (max-width: 1023px) {
  .hawrc-resources-overview .grid-head {
    gap: 12px;
    max-width: 425px;
    margin: 0 auto;
  }
}
.hawrc-resources-overview #sort-results {
  margin-left: auto;
}
.hawrc-resources-overview .filters {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column: span 2;
  gap: 10px;
}
.hawrc-resources-overview .filters:has(.selected-filter) .filter-title, .hawrc-resources-overview .filters:has(.selected-filter) .clear {
  display: block;
}
@media screen and (max-width: 1023px) {
  .hawrc-resources-overview .filters {
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
}
.hawrc-resources-overview .filter-title {
  display: none;
}
.hawrc-resources-overview .mobile-filter-trigger {
  display: none;
}
@media screen and (max-width: 1023px) {
  .hawrc-resources-overview .resource-count {
    display: none;
  }
  .hawrc-resources-overview .mobile-filter-trigger {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 8px 12px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    background: var(--glass_bg);
    backdrop-filter: blur(8px);
    cursor: pointer;
    outline: none;
    font-family: "DM Sans", sans-serif;
  }
  .hawrc-resources-overview .mobile-filter-trigger svg {
    width: 15px;
    height: auto;
  }
}
.hawrc-resources-overview .selected-filters {
  display: flex;
  flex-direction: row;
  justify-content: none;
  align-items: none;
  gap: 20px;
}
@media screen and (max-width: 1023px) {
  .hawrc-resources-overview .selected-filters {
    flex-wrap: wrap;
    gap: 10px 5px;
  }
}
.hawrc-resources-overview .clear {
  display: none;
  font-size: 12px;
  color: var(--og_green);
  cursor: pointer;
  font-weight: bold;
}
.hawrc-resources-overview .clear:hover {
  text-decoration: underline;
}
.hawrc-resources-overview select {
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: var(--glass_bg);
  backdrop-filter: blur(8px);
  cursor: pointer;
  outline: none;
  font-family: "DM Sans", sans-serif;
}
@media screen and (max-width: 1023px) {
  .hawrc-resources-overview select {
    width: 100%;
  }
}
.hawrc-resources-overview .ajax-listings {
  grid-column: 1/-1;
}
.hawrc-resources-overview .inner-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.hawrc-resource-centre-single .progress-bar-container {
  height: 4px;
  transition: 0.25s all ease-in-out;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .hawrc-resource-centre-single .progress-bar-container {
    height: 4px;
  }
}
.hawrc-resource-centre-single .progress-bar-container .wrap {
  max-width: 1090px;
  padding: 0 1rem;
  margin: 0 auto;
}
.hawrc-resource-centre-single .progress-bar-container .progress-bar {
  position: relative;
  width: 100%;
  height: 4px;
  overflow: hidden;
  background: #b2bfb8;
  z-index: 5 !important;
}
@media screen and (max-width: 767px) {
  .hawrc-resource-centre-single .progress-bar-container .progress-bar {
    height: 4px;
  }
}
.hawrc-resource-centre-single .progress-bar-container .progress-bar .progress {
  width: 0%;
  height: 100%;
  background: var(--og_green);
}
.hawrc-resource-centre-single .hawrc-resources-inner-content-column {
  position: relative;
  display: grid;
  gap: 0;
  grid-column: span 6;
}
@media screen and (max-width: 1023px) {
  .hawrc-resource-centre-single .hawrc-resources-inner-content-column {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 1023px) {
  .hawrc-resource-centre-single .hawrc-contents {
    order: 1;
    position: sticky;
    top: 80px;
    order: 0;
    z-index: 5;
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .hawrc-resource-centre-single .hawrc-contents h5 {
    display: none;
  }
}
.hawrc-resource-centre-single .hawrc-contents .resources-contents-item {
  transition: all 0.25s ease-in-out;
  border-left: 2px solid rgba(228, 236, 240, 0.8);
  padding: 5px 0 5px 12px;
  margin-bottom: 2px;
}
.hawrc-resource-centre-single .hawrc-contents .resources-contents-item a {
  font-size: 12px;
  color: var(--text_muted);
  text-decoration: none;
  line-height: 1.4;
  display: block;
}
.hawrc-resource-centre-single .hawrc-contents .resources-contents-item.active, .hawrc-resource-centre-single .hawrc-contents .resources-contents-item:hover {
  border-left-color: var(--teal);
}
.hawrc-resource-centre-single .cards:has(.social-share) .social-share {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .hawrc-resource-centre-single .cards:has(.social-share) .social-share {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 1023px) {
  .hawrc-resource-centre-single .cards:has(.social-share) {
    order: 5;
  }
}
.hawrc-resource-centre-single .social-share-link {
  transition: all 0.25s ease-in-out;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1.5px solid rgba(228, 236, 240, 0.8);
  font-size: 12px;
  font-weight: 500;
  color: var(--text_muted);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
}
.hawrc-resource-centre-single .social-share-link:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(237, 246, 249, 0.8);
}
.hawrc-resource-centre-single .social-share-link svg {
  display: block;
  height: 20px;
  width: 20px;
}
.hawrc-resource-centre-single .social-share-link svg path {
  fill: var(--text_muted);
}
.hawrc-resource-centre-single .social-share-link.copied .hawrc-tooltip {
  opacity: 1;
}
.hawrc-resource-centre-single .social-share-link .hawrc-tooltip {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: absolute;
  color: var(--text_muted);
  font-size: 10px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 5px;
  z-index: 5;
  top: 0;
  height: 100%;
  left: calc(100% + 12px);
  opacity: 0;
  transition: 0.25s all ease-in-out;
}
.hawrc-resource-centre-single .social-share-link .hawrc-tooltip svg {
  line-height: 1;
  width: 22px;
  height: 22px;
  padding: 5px;
  border-radius: 50%;
  background: var(--teal_pale);
  flex-shrink: 0;
  margin-top: 1px;
}
.hawrc-resource-centre-single .back-to {
  transition: all 0.25s ease-in-out;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(0, 109, 119, 0.2);
  color: var(--teal);
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 1023px) {
  .hawrc-resource-centre-single .back-to {
    display: none;
  }
}
.hawrc-resource-centre-single .back-to:hover {
  background: rgba(237, 246, 249, 0.9);
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(0, 109, 119, 0.14);
}
.hawrc-resource-centre-single .back-to .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 109, 119, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.hawrc-resource-centre-single .back-to h5 {
  font-size: 10px;
  line-height: 1.1;
  margin-bottom: 0 !important;
}
.hawrc-resource-centre-single .back-to p {
  margin: 0;
  color: vaar(--teal);
  font-weight: 600;
  font-size: 13px;
}
.hawrc-resource-centre-single .hawrc-related-resource {
  transition: all 0.25s ease-in-out;
  display: grid;
  gap: 8px;
  justify-content: start;
  text-decoration: none;
  border-bottom: 1px solid rgba(228, 236, 240, 0.8);
  padding-bottom: 12px;
  margin-bottom: 12px;
}
@media screen and (max-width: 1023px) {
  .hawrc-resource-centre-single .hawrc-related-resource {
    order: 3;
  }
}
.hawrc-resource-centre-single .hawrc-related-resource:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.hawrc-resource-centre-single .hawrc-related-resource:hover {
  opacity: 0.6;
}
.hawrc-resource-centre-single .hawrc-related-resource .hawrc-tag {
  margin-right: auto;
}
.hawrc-resource-centre-single .hawrc-related-resource h4 {
  font-family: var(--font_body);
  font-size: 14px;
}
.hawrc-resource-centre-single .hawrc-related-resource p {
  display: flex;
  flex-direction: row;
  justify-content: flext-start;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text_muted);
}
@media screen and (min-width: 1024px) {
  .hawrc-resource-centre-single .hawrc-related-resource p {
    flex-wrap: wrap;
  }
}
.hawrc-resource-centre-single .hawrc-related-resource p span {
  margin-top: 2px;
  display: block;
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background-color: var(--text_muted);
  opacity: 0.5;
}
.hawrc-resource-centre-single .written-by {
  display: grid;
}
@media screen and (max-width: 1023px) {
  .hawrc-resource-centre-single .written-by {
    order: 4;
  }
}
.hawrc-resource-centre-single .written-by h4 {
  font-family: var(--font_body);
  font-size: 16px;
}
.hawrc-resource-centre-single .written-by h4 span {
  margin-top: 5px;
  font-size: 12px;
  display: block;
  font-weight: normal;
  color: var(--text_muted);
}
.hawrc-resource-centre-single .written-by p {
  font-size: 14px;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flext-start;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .hawrc-resource-centre-single .written-by p {
    flex-wrap: wrap;
  }
}
.hawrc-resource-centre-single .written-by .social-share-link-linkedin {
  margin-top: 15px;
  gap: 5px;
  margin-right: auto;
}
.hawrc-resource-centre-single .sidebar-cta {
  transition: all 0.25s ease-in-out;
  background: linear-gradient(135deg, var(--navy) 0%, #1e4d5c 100%);
  color: #FFF;
}
@media screen and (max-width: 1023px) {
  .hawrc-resource-centre-single .sidebar-cta {
    order: 5;
  }
}
.hawrc-resource-centre-single .sidebar-cta h2, .hawrc-resource-centre-single .sidebar-cta h3, .hawrc-resource-centre-single .sidebar-cta h4, .hawrc-resource-centre-single .sidebar-cta h5 {
  display: block;
  color: #FFF;
}
.hawrc-resource-centre-single .sidebar-cta p {
  font-size: 14px;
}
.hawrc-resource-centre-single .sidebar-cta .hawrc-btn {
  margin-top: 25px;
}
.hawrc-resource-centre-single .sidebar-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(26, 41, 66, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.hawrc-resource-centre-single .resources-sibling-navigation {
  margin-bottom: 60px;
  margin-top: 20px;
}
@media screen and (max-width: 1023px) {
  .hawrc-resource-centre-single .resources-sibling-navigation {
    margin-top: 0;
  }
}
.hawrc-resource-centre-single .resources-sibling-navigation .hawrc-wrap {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.hawrc-resource-centre-single .resources-sibling-navigation .cards {
  grid-column: span 6;
  transition: all 0.25s ease-in-out;
  padding: 24px;
}
.hawrc-resource-centre-single .resources-sibling-navigation .cards h5 {
  transition: all 0.25s ease-in-out;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px !important;
}
.hawrc-resource-centre-single .resources-sibling-navigation .cards h5 svg {
  display: block;
}
.hawrc-resource-centre-single .resources-sibling-navigation .cards h4 {
  font-size: 16px;
}
.hawrc-resource-centre-single .resources-sibling-navigation .cards:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow_lg);
}
.hawrc-resource-centre-single .resources-sibling-navigation .cards:hover h5 {
  gap: 12px;
}
.hawrc-resource-centre-single .resources-sibling-navigation .cards.next-card:only-child {
  grid-column: 6/-1;
}
.hawrc-resource-centre-single .unlock-access {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: var(--glass_bg);
  backdrop-filter: var(--glass_blur);
  -webkit-backdrop-filter: var(--glass_blur);
  border: 1px solid var(--glass_border);
  border-radius: var(--radius);
  padding: 24px 32px;
  box-shadow: var(--glass_shadow);
  background-color: #FFF;
}
.hawrc-resource-centre-single .unlock-access p {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}
.hawrc-resource-centre-single .unlock-access .gate-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(26, 41, 66, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  padding: 12px;
}
.hawrc-resource-centre-single .unlock-access .gate-icon svg {
  width: 100%;
  height: auto;
}
.hawrc-resource-centre-single:has(.gateway-popup) .hawrc-resources-inner-content-column {
  position: relative;
}
.hawrc-resource-centre-single:has(.gateway-popup) .hawrc-resources-inner-content-column::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  pointer-events: none;
  background: linear-gradient(to top, #F4F7F9 30%, rgba(244, 247, 249, 0) 100%);
  z-index: 2;
}
.hawrc-resource-centre-single:has(.gateway-popup) .resources-contents-item:nth-of-type(n + 2) {
  filter: blur(2px);
  pointer-events: none;
}

/*# sourceMappingURL=style.css.map*/