:root {
  --hwa-cyan: #00c9fb;
  --hwa-cyan-dark: #0090d7;
  --hwa-ink: #3c3c3b;
  --hwa-copy: #4c4c4b;
  --hwa-soft: #f4f4f4;
  --hwa-line: #dedede;
  --hwa-white: #ffffff;
}

.hw-news-overview,
.hw-jobs-overview,
.hw-news-single {
  color: var(--hwa-copy);
  font-family: "Montserrat", sans-serif;
}

.hw-news-overview *,
.hw-jobs-overview *,
.hw-news-single * {
  box-sizing: border-box;
}

.hw-news-overview__intro {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.hw-news-overview__eyebrow,
.hw-news-contact__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--hwa-cyan-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hw-news-overview__intro h2 {
  margin: 0 0 16px;
  color: var(--hwa-ink);
  font-family: "Bitter", serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
}

.hw-news-overview__intro p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
}

.hw-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  text-align: left;
}

.hw-news-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border: 1px solid #cecece;
  border-top: 5px solid var(--hwa-cyan);
  background: var(--hwa-white);
  transition: border-color 180ms ease;
}

.hw-news-card:hover,
.hw-news-card:focus-within {
  border-color: var(--hwa-cyan);
}

.hw-news-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--hwa-ink);
}

.hw-news-card__image {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.hw-news-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, transparent 0 43%, rgba(255, 255, 255, 0.12) 43% 57%, transparent 57%),
    var(--hwa-ink);
}

.hw-news-card__placeholder::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  content: "";
}

.hw-news-card__placeholder span {
  color: var(--hwa-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hw-news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 26px 28px;
}

.hw-news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
  color: #747473;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hw-news-card__title {
  margin: 0 0 14px;
  color: var(--hwa-ink);
  font-family: "Bitter", serif;
  font-size: 23px;
  line-height: 1.28;
  text-transform: none;
}

.hw-news-card__title a {
  color: inherit;
  text-decoration: none;
}

.hw-news-card__title a:hover,
.hw-news-card__title a:focus-visible {
  color: var(--hwa-cyan-dark);
}

.hw-news-card__excerpt {
  margin: 0 0 22px;
  color: var(--hwa-copy);
  font-size: 14px;
  line-height: 1.7;
}

.hw-news-card__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  color: var(--hwa-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.hw-news-card__link span {
  color: var(--hwa-cyan-dark);
  font-size: 18px;
  transition: transform 180ms ease;
}

.hw-news-card__link:hover span,
.hw-news-card__link:focus-visible span {
  transform: translateX(4px);
}

.hw-news-overview__empty {
  padding: 36px;
  background: var(--hwa-soft);
  text-align: center;
}

.hw-news-overview--compact .hw-news-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.hw-news-overview--compact .hw-news-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  min-height: 104px;
  border: 1px solid #cecece;
  border-top-width: 1px;
}

.hw-news-overview--compact .hw-news-card:hover,
.hw-news-overview--compact .hw-news-card:focus-within {
  border-color: var(--hwa-cyan);
}

.hw-news-card__date-badge {
  display: flex;
  min-height: 102px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--hwa-cyan);
  color: var(--hwa-ink);
  line-height: 1;
}

.hw-news-card__date-badge strong {
  font-family: "Bitter", serif;
  font-size: 34px;
  font-weight: 700;
}

.hw-news-card__date-badge span {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hw-news-overview--compact .hw-news-card__body {
  justify-content: center;
  padding: 17px 18px;
}

.hw-news-overview--compact .hw-news-card__meta {
  margin-bottom: 7px;
  font-size: 9px;
}

.hw-news-overview--compact .hw-news-card__title {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

body.home .x-section.nieuws .x-text.cs-ta-center {
  display: block !important;
}

.hw-jobs-grid {
  display: grid;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.hw-job-card {
  margin: 0;
  border: 1px solid #cecece;
  border-left: 6px solid var(--hwa-cyan);
  background: var(--hwa-white);
  transition: border-color 180ms ease;
}

.hw-job-card:hover,
.hw-job-card:focus-within {
  border-color: var(--hwa-cyan);
}

.hw-job-card__link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px;
  min-height: 150px;
  color: inherit;
  text-decoration: none;
}

.hw-job-card__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
}

.hw-job-card__eyebrow,
.hw-jobs-empty__eyebrow {
  margin-bottom: 8px;
  color: var(--hwa-cyan-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hw-job-card h2 {
  margin: 0;
  color: var(--hwa-ink);
  font-family: "Bitter", serif;
  font-size: 26px;
  line-height: 1.25;
  text-transform: none;
}

.hw-job-card__excerpt {
  margin-top: 11px;
  color: var(--hwa-copy);
  font-size: 14px;
  line-height: 1.65;
}

.hw-job-card__arrow {
  display: grid;
  place-items: center;
  background: var(--hwa-cyan);
  color: var(--hwa-ink);
  font-size: 28px;
  transition: background 180ms ease, color 180ms ease;
}

.hw-job-card__link:hover .hw-job-card__arrow,
.hw-job-card__link:focus-visible .hw-job-card__arrow {
  background: var(--hwa-ink);
  color: var(--hwa-white);
}

.hw-jobs-empty {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(38px, 7vw, 68px);
  border-top: 7px solid var(--hwa-cyan);
  background: var(--hwa-soft);
  text-align: center;
}

.hw-jobs-empty h2 {
  margin: 0 0 16px;
  color: var(--hwa-ink);
  font-family: "Bitter", serif;
  font-size: clamp(27px, 4vw, 38px);
  line-height: 1.2;
  text-transform: none;
}

.hw-jobs-empty p {
  max-width: 590px;
  margin: 0 auto 25px;
  font-size: 15px;
  line-height: 1.7;
}

.hw-jobs-empty__button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 14px 20px;
  background: var(--hwa-ink);
  color: var(--hwa-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.hw-jobs-empty__button:hover,
.hw-jobs-empty__button:focus-visible {
  background: var(--hwa-cyan-dark);
  color: var(--hwa-white);
}

.hw-news-single__hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 100px;
  background: var(--hwa-cyan);
}

.hw-news-single__hero::after {
  position: absolute;
  right: -2%;
  bottom: -1px;
  left: -2%;
  height: 34px;
  background: var(--hwa-white);
  clip-path: polygon(0 82%, 68% 30%, 100% 62%, 100% 100%, 0 100%);
  content: "";
}

.hw-news-single__hero-inner,
.hw-news-single__layout,
.hw-news-adjacent__inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.hw-news-single__back {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 30px;
  color: var(--hwa-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hw-news-single__back span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.hw-news-single__back:hover,
.hw-news-single__back:focus-visible {
  color: var(--hwa-white);
}

.hw-news-single__back:hover span,
.hw-news-single__back:focus-visible span {
  transform: translateX(-4px);
}

.hw-news-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--hwa-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hw-news-single__hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--hwa-white);
  font-family: "Bitter", serif;
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  text-transform: none;
}

.hw-news-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 64px;
  align-items: start;
  padding: 70px 0 82px;
}

.hw-news-article {
  min-width: 0;
}

.hw-news-article__featured {
  margin: 0 0 40px;
  overflow: hidden;
  border-bottom: 6px solid var(--hwa-cyan);
  background: var(--hwa-soft);
}

.hw-news-article__featured img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  margin: 0;
  object-fit: cover;
}

.hw-news-article__content {
  color: var(--hwa-copy);
  font-size: 16px;
  line-height: 1.85;
}

.hw-news-article__content > :first-child {
  margin-top: 0;
}

.hw-news-article__content > :last-child {
  margin-bottom: 0;
}

.hw-news-article__content p,
.hw-news-article__content ul,
.hw-news-article__content ol,
.hw-news-article__content blockquote {
  margin: 0 0 1.35em;
}

.hw-news-article__content h2,
.hw-news-article__content h3,
.hw-news-article__content h4 {
  margin: 1.7em 0 0.65em;
  color: var(--hwa-ink);
  font-family: "Bitter", serif;
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
}

.hw-news-article__content h2 {
  font-size: 30px;
}

.hw-news-article__content h3 {
  font-size: 24px;
}

.hw-news-article__content h4 {
  font-size: 19px;
}

.hw-news-article__content ul,
.hw-news-article__content ol {
  padding-left: 1.3em;
}

.hw-news-article__content li {
  margin-bottom: 0.55em;
}

.hw-news-article__content a {
  color: var(--hwa-cyan-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.hw-news-article__content blockquote {
  padding: 24px 28px;
  border-left: 5px solid var(--hwa-cyan);
  background: var(--hwa-soft);
  color: var(--hwa-ink);
  font-family: "Bitter", serif;
  font-size: 19px;
}

.hw-news-article__share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--hwa-line);
}

.hw-news-article__share > span {
  margin-right: 5px;
  color: var(--hwa-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hw-news-article__share a {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid var(--hwa-line);
  color: var(--hwa-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.hw-news-article__share a:hover,
.hw-news-article__share a:focus-visible {
  border-color: var(--hwa-cyan);
  background: var(--hwa-cyan);
}

.hw-news-contact {
  position: sticky;
  top: 28px;
  padding: 30px;
  border-top: 6px solid var(--hwa-cyan);
  background: var(--hwa-soft);
}

.hw-news-contact h2 {
  margin: 0 0 14px;
  color: var(--hwa-ink);
  font-family: "Bitter", serif;
  font-size: 28px;
  line-height: 1.2;
  text-transform: none;
}

.hw-news-contact p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.7;
}

.hw-news-contact__button {
  display: block;
  padding: 14px 18px;
  background: var(--hwa-ink);
  color: var(--hwa-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.hw-news-contact__button:hover,
.hw-news-contact__button:focus-visible {
  background: var(--hwa-cyan-dark);
  color: var(--hwa-white);
}

.hw-news-contact__phone {
  display: block;
  margin-top: 15px;
  color: var(--hwa-ink);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.hw-news-adjacent {
  padding: 44px 0;
  background: var(--hwa-ink);
}

.hw-news-adjacent__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.hw-news-adjacent__item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--hwa-white);
  text-decoration: none;
}

.hw-news-adjacent__item--next {
  grid-column: 2;
  text-align: right;
}

.hw-news-adjacent__item span {
  color: var(--hwa-cyan);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hw-news-adjacent__item strong {
  overflow: hidden;
  font-family: "Bitter", serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.hw-news-adjacent__item:hover,
.hw-news-adjacent__item:focus-visible {
  border-color: var(--hwa-cyan);
  background: rgba(255, 255, 255, 0.06);
  color: var(--hwa-white);
}

@media (max-width: 900px) {
  .hw-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hw-news-single__layout {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .hw-news-grid {
    grid-template-columns: 1fr;
  }

  .hw-news-overview__intro {
    margin-bottom: 34px;
  }

  .hw-news-single__hero {
    padding: 46px 0 76px;
  }

  .hw-news-single__layout {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 46px 0 56px;
  }

  .hw-news-contact {
    position: static;
  }
}

@media (max-width: 500px) {
  .hw-news-card__body {
    padding: 22px;
  }

  .hw-news-card__title {
    font-size: 21px;
  }

  .hw-news-overview--compact .hw-news-card {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .hw-news-card__date-badge {
    min-height: 102px;
  }

  .hw-news-card__date-badge strong {
    font-size: 29px;
  }

  .hw-news-overview--compact .hw-news-card__body {
    padding: 14px;
  }

  .hw-news-overview--compact .hw-news-card__meta span:not(:first-child) {
    display: none;
  }

  .hw-news-overview--compact .hw-news-card__title {
    font-size: 14px;
  }

  .hw-job-card__link {
    grid-template-columns: minmax(0, 1fr) 54px;
  }

  .hw-job-card__content {
    padding: 23px 20px;
  }

  .hw-job-card h2 {
    font-size: 21px;
  }

  .hw-job-card__arrow {
    font-size: 23px;
  }

  .hw-news-single__hero h1 {
    font-size: 35px;
  }

  .hw-news-single__meta {
    font-size: 10px;
  }

  .hw-news-article__featured {
    margin-bottom: 30px;
  }

  .hw-news-article__content {
    font-size: 15px;
    line-height: 1.75;
  }

  .hw-news-article__content h2 {
    font-size: 26px;
  }

  .hw-news-adjacent__inner {
    grid-template-columns: 1fr;
  }

  .hw-news-adjacent__item--next {
    grid-column: 1;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hw-news-card,
  .hw-news-card__link span,
  .hw-news-single__back span,
  .hw-job-card,
  .hw-job-card__arrow {
    transition: none;
  }
}
