.due-page,
.due-page button,
.due-page input,
.due-page select,
.due-page textarea {
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.due-page {
  color: var(--due-text);
  background: #fff;
}

.due-page-hero {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 66px 0 54px;
  background:
    radial-gradient(720px 280px at 72% 18%, rgba(0, 100, 173, 0.34), transparent 62%),
    linear-gradient(135deg, #082338 0%, #113b5d 58%, #0b2a44 100%);
  border-bottom: 1px solid var(--due-line);
}

.due-page-hero::after {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - var(--due-max)) / 2));
  bottom: -62px;
  width: min(360px, 34vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.due-page-hero > .due-home__container {
  position: relative;
  z-index: 1;
}

.due-page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #d9ecfb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.due-page-hero .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #d9ecfb;
}

.due-page-hero h1 {
  max-width: 740px;
  margin: 0 0 12px;
  color: #fff;
  line-height: 1.08;
}

.due-page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--due-line);
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--due-blue);
  border-color: var(--due-blue);
  color: #fff !important;
}

.storefront-sticky-add-to-cart .storefront-sticky-add-to-cart__content-button.button.alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-left: auto;
  padding: 11px 16px;
  border: 1px solid var(--due-blue);
  border-radius: 8px;
  background: var(--due-blue);
  color: #fff !important;
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
  transition: background-color 0.18s ease-out, border-color 0.18s ease-out, box-shadow 0.18s ease-out;
}

.storefront-sticky-add-to-cart .storefront-sticky-add-to-cart__content-button.button.alt:hover,
.storefront-sticky-add-to-cart .storefront-sticky-add-to-cart__content-button.button.alt:focus {
  border-color: #004f8a;
  background: #004f8a;
  color: #fff !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.storefront-sticky-add-to-cart .storefront-sticky-add-to-cart__content-button.button.alt:focus {
  outline: 2px solid rgba(0, 100, 173, 0.35);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .storefront-sticky-add-to-cart .storefront-sticky-add-to-cart__content {
    gap: 10px;
    justify-content: flex-start;
  }

  .storefront-sticky-add-to-cart .storefront-sticky-add-to-cart__content-product-info {
    min-width: 0;
  }

  .storefront-sticky-add-to-cart .storefront-sticky-add-to-cart__content-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .storefront-sticky-add-to-cart .storefront-sticky-add-to-cart__content-button.button.alt {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 9px 12px;
    font-size: 13px;
  }
}

.btn-secondary {
  background: #fff;
  color: var(--due-text) !important;
}

.link {
  color: var(--due-blue);
  font-weight: 800;
  text-decoration: none;
}

.due-content-layout__body a:not(.btn),
.due-news-detail__body a:not(.btn),
.due-single-article a:not(.btn),
.due-contact-aside a:not(.btn),
.due-form a:not(.btn) {
  color: var(--due-blue);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.due-page > .due-home__container,
.due-news-single > .due-home__container {
  position: relative;
  left: 50%;
  width: min(var(--due-max), calc(100vw - 48px));
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  transform: translateX(-50%);
}

.due-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  padding: 68px 0 84px;
}

.due-content-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
  padding: 68px 0 84px;
}

.due-content-layout--no-media {
  grid-template-columns: minmax(0, 1fr);
}

.due-content-layout__image {
  border: 1px solid var(--due-line);
  border-radius: var(--due-radius);
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}

.due-content-layout__image {
  aspect-ratio: 3 / 2;
}

.due-content-layout__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.due-content-layout__body {
  padding: 0;
}

.due-content-layout__body > :first-child {
  margin-top: 0;
}

.due-content-layout__body > :last-child {
  margin-bottom: 0;
}

.due-legal-page .due-content-layout__body {
  max-width: 880px;
}

.due-legal-page .due-content-layout__body h2,
.due-legal-page .due-content-layout__body h3 {
  margin-top: 1.8em;
}

.due-legal-page .due-content-layout__body ul,
.due-legal-page .due-content-layout__body ol {
  padding-left: 1.25em;
}

.due-legal-page .due-content-layout__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0;
}

.due-legal-page .due-content-layout__body th,
.due-legal-page .due-content-layout__body td {
  border: 1px solid var(--due-line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.due-team-section {
  padding: 0 0 84px;
}

.due-section-head {
  max-width: 720px;
  margin-bottom: 26px;
}

.due-section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--due-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.due-section-head .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--due-blue);
}

.due-section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 42px);
}

.due-section-head p:not(.eyebrow) {
  margin: 0;
  color: var(--due-muted);
  font-size: 17px;
}

.due-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.due-team-card {
  overflow: hidden;
  border: 1px solid var(--due-line);
  border-radius: var(--due-radius);
  background: #fff;
}

.due-team-card__image {
  aspect-ratio: 4 / 3;
  background: var(--due-surface);
}

.due-team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.due-team-card__body {
  position: relative;
  min-height: 118px;
  padding: 22px 58px 22px 22px;
}

.due-team-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.due-team-card p {
  margin: 0;
  color: var(--due-muted);
  font-size: 14px;
  font-weight: 700;
}

.due-team-card__linkedin {
  position: absolute;
  right: 20px;
  top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--due-blue);
  color: #fff !important;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.due-content-contact {
  padding: 0 0 84px;
}

.due-content-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
}

.due-content-contact__details {
  margin: 0;
  border: 1px solid var(--due-line);
  border-radius: var(--due-radius);
  padding: 30px;
  background: #fff;
  color: var(--due-text);
  font-style: normal;
  line-height: 1.75;
}

.due-content-contact__map {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--due-line);
  border-radius: var(--due-radius);
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(0, 100, 173, 0.9), rgba(8, 35, 56, 0.86)),
    repeating-linear-gradient(35deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 54px),
    #0b2a44;
  color: #fff !important;
  text-decoration: none !important;
}

.due-content-contact__map::after {
  content: "";
  position: absolute;
  right: 34px;
  top: 34px;
  width: 76px;
  height: 76px;
  border: 10px solid rgba(255, 255, 255, 0.24);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.due-content-contact__map span {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.due-content-contact__map strong {
  position: relative;
  z-index: 1;
  max-width: 360px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
}

.due-form,
.due-contact-aside,
.due-editorial-card,
.due-faq-item,
.due-single-article {
  border: 1px solid var(--due-line);
  border-radius: var(--due-radius);
  background: #fff;
  box-shadow: none;
}

.due-form {
  padding: 30px;
}

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

.due-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
  color: var(--due-text);
  font-size: 13px;
  font-weight: 800;
}

.due-form input,
.due-form select,
.due-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--due-line);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  color: var(--due-text);
  font-size: 14px;
  font-weight: 500;
}

.due-form textarea {
  min-height: 128px;
  resize: vertical;
}

.due-form-wide {
  grid-column: 1 / -1;
}

.due-form-wide span {
  color: var(--due-muted);
  font-size: 12px;
  font-weight: 600;
}

.due-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
  margin-top: 16px !important;
  font-weight: 700 !important;
}

.due-check input {
  width: auto;
  min-height: 0;
  margin-top: 3px;
}

.due-form .btn {
  margin-top: 20px;
}

.due-form-notice {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 700;
}

.due-form-notice p {
  margin: 0;
}

.due-form-notice--success {
  border: 1px solid rgba(0, 128, 78, 0.25);
  background: rgba(0, 128, 78, 0.08);
  color: #075c3c;
}

.due-form-notice--error {
  border: 1px solid rgba(180, 45, 45, 0.25);
  background: rgba(180, 45, 45, 0.08);
  color: #8a1f1f;
}

.due-contact-aside {
  align-self: start;
  padding: 28px;
}

.due-contact-aside h2 {
  margin-top: 0;
  font-size: 22px;
}

.due-contact-aside p {
  color: var(--due-muted);
}

.due-contact-icon-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.due-contact-icon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--due-text);
  font-weight: 400;
}

.due-contact-icon-list svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--due-blue);
}

.due-contact-map-link {
  width: 100%;
  margin-top: 8px;
}

.due-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 24px;
  padding: 68px 0 84px;
}

.due-download-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: none;
}

.due-download-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(150px, 0.78fr) minmax(0, 1.22fr);
  gap: 0;
  min-height: 300px;
  border: 1px solid var(--due-line);
  border-radius: var(--due-radius);
  background:
    linear-gradient(135deg, rgba(0, 100, 173, 0.08), transparent 38%),
    #fff;
}

.due-download-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 86px;
  height: 86px;
  background: linear-gradient(135deg, transparent 50%, rgba(0, 100, 173, 0.12) 50%);
  pointer-events: none;
}

.due-download-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 28px;
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef3f7 100%);
  border-right: 1px solid var(--due-line);
}

.due-download-card__media img {
  width: 100%;
  max-height: 244px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 22px rgba(17, 36, 52, 0.14));
}

.due-download-card__media span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 136px;
  border: 1px solid rgba(0, 100, 173, 0.18);
  border-radius: 4px;
  background: #fff;
  color: var(--due-blue);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.due-download-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
}

.due-download-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.due-download-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid rgba(0, 100, 173, 0.16);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(0, 100, 173, 0.06);
  color: var(--due-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.due-download-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.18;
}

.due-download-card__body > p:not(.due-download-card__meta) {
  margin: 0 0 24px;
  color: var(--due-muted);
  font-size: 15px;
}

.due-download-card .btn {
  margin-top: auto;
}

.due-editorial-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.due-editorial-card:hover {
  border-color: rgba(0, 100, 173, 0.24);
  transform: translateY(-2px);
}

.due-editorial-card__media {
  display: block;
  min-height: 210px;
  background: var(--due-surface);
  border-bottom: 1px solid var(--due-line);
}

.due-editorial-card__media img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
}

.due-news-overview-card .due-editorial-card__media {
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
}

.due-news-overview-card .due-editorial-card__media img {
  height: 100%;
  min-height: 0;
}

.due-editorial-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
}

.due-card-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--due-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.due-editorial-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.due-editorial-card h2 a {
  color: var(--due-text);
  text-decoration: none;
}

.due-editorial-card p {
  margin: 0 0 16px;
  color: var(--due-muted);
  font-size: 14px;
  line-height: 1.6;
}

.due-editorial-card .link {
  margin-top: auto;
}

.due-archive-pagination {
  grid-column: 1 / -1;
  margin-top: 18px;
}

.due-archive-pagination.is-enhanced {
  display: none;
}

.due-infinite-sentinel {
  grid-column: 1 / -1;
  min-height: 1px;
}

.due-card-grid.is-loading-more::after {
  content: "";
  grid-column: 1 / -1;
  justify-self: center;
  width: 34px;
  height: 34px;
  border: 3px solid var(--due-line);
  border-top-color: var(--due-blue);
  border-radius: 50%;
  animation: due-spin 0.8s linear infinite;
}

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

.due-archive-pagination .navigation {
  margin: 0;
}

.due-archive-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.due-archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--due-line);
  border-radius: 8px;
  background: #fff;
  color: var(--due-text);
  font-weight: 800;
  text-decoration: none;
}

.due-archive-pagination .page-numbers.current,
.due-archive-pagination a.page-numbers:hover {
  border-color: var(--due-blue);
  background: var(--due-blue);
  color: #fff;
}

.due-faq-list {
  display: grid;
  max-width: 920px !important;
  gap: 14px;
  padding: 58px 0 76px;
}

.due-faq-item {
  padding: 0;
  overflow: hidden;
}

.due-faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 22px 64px 22px 24px;
  font-weight: 800;
  color: var(--due-text);
}

.due-faq-item summary::-webkit-details-marker {
  display: none;
}

.due-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(0, 100, 173, 0.08);
  color: var(--due-blue);
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
}

.due-faq-item[open] summary::after {
  content: "-";
}

.due-faq-item div {
  padding: 0 24px 24px;
  color: var(--due-muted);
  font-size: 16px;
  line-height: 1.7;
}

.due-faq-item div > :first-child {
  margin-top: 0;
}

.due-faq-item div > :last-child {
  margin-bottom: 0;
}

.due-single-article {
  margin-top: 46px;
  margin-bottom: 64px;
  padding: 28px;
}

.due-news-detail {
  padding: 52px 0 70px;
}

.due-news-detail__head {
  max-width: 100%;
}

.due-news-detail__image {
  margin: 0;
  overflow: hidden;
}

.due-news-detail__image img {
  width: 100%;
  height: auto;
  display: block;
}

.due-news-detail__intro {
  max-width: none;
}

.due-news-detail__meta {
  margin: 0 0 10px;
  color: var(--due-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.due-news-detail__intro h1 {
  margin: 0 0 14px;
  color: var(--due-text);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.due-news-detail__lead {
  max-width: 720px;
  margin: 0;
  color: var(--due-text);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 600;
}

.due-news-detail__rule {
  margin: 38px 0 34px;
  border: 0;
  border-top: 1px solid var(--due-line);
}

.due-news-detail__content-grid {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(280px, 380px);
  gap: 34px;
  align-items: start;
}

.due-news-detail__body {
  max-width: none;
  padding: 0;
  color: var(--due-text);
  font-size: 17px;
  line-height: 1.72;
}

.due-news-detail__media {
  position: sticky;
  top: 132px;
  justify-self: start;
  width: 100%;
  max-width: 380px;
}

.due-news-detail__body > :first-child {
  margin-top: 0;
}

.due-news-detail__body h2,
.due-news-detail__body h3 {
  margin-top: 1.8em;
  margin-bottom: 0.55em;
  line-height: 1.2;
}

.due-news-detail__body p,
.due-news-detail__body ul,
.due-news-detail__body ol {
  margin-bottom: 1.25em;
}

.due-news-detail__body img {
  border-radius: 0;
}

.due-news-detail__body .alignleft {
  float: left;
  max-width: 42%;
  margin: 6px 24px 18px 0;
}

.due-news-detail__body .alignright {
  float: right;
  max-width: 42%;
  margin: 6px 0 18px 24px;
}

.due-news-detail__body .aligncenter,
.due-news-detail__body .alignnone {
  max-width: 520px;
  margin: 28px 0;
}

.due-news-detail__body .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.due-news-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--due-line);
}

.due-news-meta {
  margin: 0 0 8px;
  color: var(--due-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.due-news-date {
  margin: -8px 0 10px;
  color: var(--due-muted);
  font-size: 13px;
  font-weight: 700;
}

.due-single-article > .eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--due-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.due-single-article .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--due-blue);
}

.due-single-article h1 {
  margin: 8px 0 20px;
}

.due-single-article__image {
  margin-bottom: 24px;
  border-radius: var(--due-radius);
  overflow: hidden;
  background: var(--due-surface);
}

.due-single-article__image img {
  width: 100%;
  display: block;
}

.due-single-article__content {
  max-width: 780px;
}

.duebre-order-inquiry-meta {
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--due-line);
  border-radius: var(--due-radius);
  background: #fff;
}

.duebre-order-inquiry-meta h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.duebre-order-inquiry-meta ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 920px) {
  .due-contact-layout,
  .due-content-layout,
  .due-card-grid {
    grid-template-columns: 1fr;
  }

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

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

  .due-news-detail__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .due-download-card {
    grid-template-columns: minmax(140px, 0.62fr) minmax(0, 1fr);
    min-height: 260px;
  }

  .due-download-card__media {
    min-height: 260px;
  }

  .due-news-detail__content-grid {
    grid-template-columns: 1fr;
  }

  .due-news-detail__media {
    position: static;
    order: -1;
  }

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

  .due-news-detail__body .alignleft,
  .due-news-detail__body .alignright {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 22px;
  }

  .due-news-detail__lead {
    font-size: 18px;
  }

  .due-contact-layout,
  .due-content-layout,
  .due-card-grid {
    padding-top: 44px;
    padding-bottom: 58px;
  }

  .due-team-section {
    padding-bottom: 58px;
  }

  .due-content-contact {
    padding-bottom: 58px;
  }
}

@media (max-width: 560px) {
  .due-page-hero {
    padding: 42px 0 36px;
    background: #0b2a44;
  }

  .due-form,
  .due-contact-aside,
  .due-single-article {
    border-radius: 12px;
    padding: 18px;
  }

  .due-team-grid {
    grid-template-columns: 1fr;
  }

  .due-download-card {
    grid-template-columns: 1fr;
  }

  .due-download-card__media {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--due-line);
  }

  .due-download-card__body {
    padding: 24px;
  }

  .due-content-contact__details,
  .due-content-contact__map {
    padding: 22px;
  }

  .due-content-contact__map {
    min-height: 220px;
  }

  .due-team-card__body {
    min-height: 0;
  }

  .due-news-detail {
    padding: 34px 0 52px;
  }

  .due-news-detail__intro h1 {
    font-size: 34px;
  }
}
