:root {
  --fdw-navy: #0b1e3a;
  --fdw-navy-2: #102b4e;
  --fdw-ink: #1f2933;
  --fdw-muted: #596674;
  --fdw-cream: #f8f4ec;
  --fdw-paper: #fffdf8;
  --fdw-paper-2: #fbf7ef;
  --fdw-gold: #b99a4b;
  --fdw-gold-2: #d8c07b;
  --fdw-gold-soft: #efe2b8;
  --fdw-oxblood: #7a2e2e;
  --fdw-line: #ded4c4;
  --fdw-line-dark: rgba(255, 255, 255, 0.18);
  --fdw-shadow: 0 18px 50px rgba(11, 30, 58, 0.12);
  --fdw-shadow-soft: 0 10px 30px rgba(11, 30, 58, 0.08);
  --fdw-radius: 18px;
  --fdw-radius-small: 10px;
  --fdw-container: 1180px;
  --fdw-content: 820px;
  --fdw-wide: 1040px;
  --fdw-serif: Georgia, "Times New Roman", Times, serif;
  --fdw-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--fdw-cream);
  color: var(--fdw-ink);
  font-family: var(--fdw-sans);
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

img,
svg,
video,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--fdw-oxblood);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus {
  color: #521c1c;
}

p {
  margin: 0 0 1.15rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  color: var(--fdw-navy);
  font-family: var(--fdw-serif);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

h4 {
  font-size: 1.2rem;
}

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

li + li {
  margin-top: 0.35rem;
}

blockquote {
  margin: 2rem 0;
  padding: 1.4rem 1.5rem;
  border-left: 5px solid var(--fdw-gold);
  background: rgba(255, 253, 248, 0.82);
  color: var(--fdw-ink);
  font-family: var(--fdw-serif);
  font-size: 1.15rem;
  box-shadow: var(--fdw-shadow-soft);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--fdw-paper);
}

th,
td {
  padding: 0.8rem 1rem;
  border: 1px solid var(--fdw-line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #f1e8d9;
  color: var(--fdw-navy);
}

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

input,
textarea,
select {
  width: 100%;
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--fdw-line);
  border-radius: var(--fdw-radius-small);
  background: var(--fdw-paper);
  color: var(--fdw-ink);
}

input:focus,
textarea:focus,
select:focus,
button:focus,
a:focus {
  outline: 3px solid rgba(185, 154, 75, 0.45);
  outline-offset: 3px;
}

button,
input[type="submit"],
.search-submit {
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.2rem;
  background: var(--fdw-navy);
  color: #fff;
  font-weight: 800;
}

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

.skip-link:focus {
  position: fixed !important;
  z-index: 100000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  clip: auto;
  background: var(--fdw-gold);
  color: var(--fdw-navy);
  border-radius: 8px;
}

.site-header {
  position: sticky;
  z-index: 999;
  top: 0;
  background: linear-gradient(135deg, var(--fdw-navy), var(--fdw-navy-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(11, 30, 58, 0.22);
}

.site-header__inner {
  max-width: var(--fdw-container);
  margin: 0 auto;
  padding: 0.8rem clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 220px;
}

.site-logo img {
  max-height: 56px;
  width: auto;
  display: block;
}

.site-title {
  margin: 0;
  font-family: var(--fdw-serif);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-title a {
  color: #fff;
  text-decoration: none;
}

.site-description {
  margin: 0.22rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--fdw-line-dark);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.primary-menu,
.primary-menu ul,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
}

.primary-menu li {
  position: relative;
  margin: 0;
}

.primary-menu a {
  display: block;
  padding: 0.75rem 0.78rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  border-radius: 10px;
}

.primary-menu a:hover,
.primary-menu a:focus,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.primary-menu .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  margin-left: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.15em) rotate(45deg);
}

.primary-menu ul {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  background: var(--fdw-paper);
  border: 1px solid var(--fdw-line);
  border-radius: 14px;
  box-shadow: var(--fdw-shadow);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  overflow: hidden;
}

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

.primary-menu ul a {
  color: var(--fdw-navy);
  border-radius: 0;
  padding: 0.78rem 1rem;
}

.primary-menu ul a:hover,
.primary-menu ul a:focus {
  color: var(--fdw-oxblood);
  background: #f5edde;
}

.site-main {
  min-height: 62vh;
}

.fdw-container {
  width: min(var(--fdw-container), calc(100% - 2rem));
  margin-inline: auto;
}

.fdw-page-layout {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.fdw-archive-layout {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.fdw-entry-content,
.entry-header,
.comments-area,
.post-navigation,
.posts-navigation,
.page-header {
  width: min(var(--fdw-content), 100%);
  margin-inline: auto;
}

.fdw-entry-content--front,
.fdw-entry-content--wide,
.fdw-full-width-page .fdw-entry-content,
.fdw-front-content .fdw-entry-content {
  width: 100%;
  margin: 0;
}

.fdw-article,
.fdw-page {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(222, 212, 196, 0.7);
  border-radius: var(--fdw-radius);
  padding: clamp(1.25rem, 4vw, 3rem);
  box-shadow: var(--fdw-shadow-soft);
}

.fdw-article .entry-header,
.fdw-page .entry-header,
.fdw-article .fdw-entry-content,
.fdw-page .fdw-entry-content {
  width: min(var(--fdw-content), 100%);
}

.entry-title {
  margin-bottom: 1.2rem;
}

.entry-meta,
.entry-meta a {
  color: var(--fdw-muted);
  font-size: 0.92rem;
}

.updated:not(.published) {
  display: none;
}

.fdw-post-list {
  display: grid;
  gap: 1.25rem;
  width: min(var(--fdw-wide), 100%);
  margin: 0 auto;
}

.post-thumbnail img {
  display: block;
  width: 100%;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.fdw-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(185, 154, 75, 0.26), transparent 25rem),
    linear-gradient(135deg, var(--fdw-navy) 0%, #0f294b 54%, #173c64 100%);
  color: #fff;
}

.fdw-hero::after {
  content: "";
  position: absolute;
  inset: auto -12rem -18rem auto;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.fdw-hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--fdw-container), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.fdw-hero__copy {
  width: min(850px, 100%);
}

.fdw-hero h1,
.fdw-hero h2,
.fdw-hero h3 {
  color: #fff;
}

.fdw-hero h1 {
  margin-bottom: 1.1rem;
}

.fdw-lede,
.fdw-hero .fdw-lede,
.fdw-hero__copy > p:not(.fdw-kicker) {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.62;
}

.fdw-kicker {
  margin: 0 0 0.75rem;
  color: var(--fdw-gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fdw-actions,
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.5rem;
}

.fdw-button,
.wp-block-button__link,
.wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 46px;
  padding: 0.82rem 1.15rem;
  border-radius: 999px;
  font-family: var(--fdw-sans);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.fdw-button:hover,
.fdw-button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
.wp-element-button:hover,
.wp-element-button:focus {
  transform: translateY(-1px);
  text-decoration: none;
}

.fdw-button--primary,
.wp-block-button__link,
.wp-element-button {
  background: var(--fdw-navy);
  color: #fff;
  box-shadow: 0 10px 22px rgba(11, 30, 58, 0.2);
}

.fdw-button--primary:hover,
.fdw-button--primary:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
.wp-element-button:hover,
.wp-element-button:focus {
  background: #07162a;
  color: #fff;
}

.fdw-button--gold {
  background: var(--fdw-gold);
  color: var(--fdw-navy);
  box-shadow: 0 10px 22px rgba(185, 154, 75, 0.26);
}

.fdw-button--gold:hover,
.fdw-button--gold:focus {
  background: var(--fdw-gold-2);
  color: var(--fdw-navy);
}

.fdw-button--secondary {
  background: var(--fdw-paper);
  color: var(--fdw-navy);
  border: 1px solid var(--fdw-line);
}

.fdw-button--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.fdw-button--ghost:hover,
.fdw-button--ghost:focus {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.fdw-section {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.fdw-section--paper {
  background: var(--fdw-paper);
}

.fdw-section--cream {
  background: var(--fdw-cream);
}

.fdw-section--navy {
  background: var(--fdw-navy);
  color: #fff;
}

.fdw-section--navy h1,
.fdw-section--navy h2,
.fdw-section--navy h3 {
  color: #fff;
}

.fdw-section__intro {
  width: min(850px, 100%);
  margin-bottom: 2rem;
}

.fdw-section__intro > p {
  color: var(--fdw-muted);
  font-size: 1.12rem;
}

.fdw-section--navy .fdw-section__intro > p {
  color: rgba(255, 255, 255, 0.78);
}

.fdw-card-grid,
.wp-block-columns.fdw-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
  margin: 2rem 0;
}

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

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

.fdw-card,
.wp-block-group.fdw-card,
.wp-block-column.fdw-card {
  position: relative;
  padding: clamp(1.15rem, 2.5vw, 1.6rem);
  border: 1px solid var(--fdw-line);
  border-top: 4px solid var(--fdw-gold);
  border-radius: var(--fdw-radius);
  background: var(--fdw-paper);
  box-shadow: var(--fdw-shadow-soft);
}

.fdw-card--urgent {
  border-top-color: var(--fdw-oxblood);
}

.fdw-card--navy {
  background: var(--fdw-navy);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.fdw-card--navy h3,
.fdw-card--navy h2 {
  color: #fff;
}

.fdw-card h3,
.fdw-card h2 {
  margin-bottom: 0.75rem;
}

.fdw-card p:last-child {
  margin-bottom: 0;
}

.fdw-card__body p:last-child {
  margin-bottom: 0;
}

.fdw-card__link {
  margin-top: 1rem;
  font-weight: 850;
}

.fdw-card__link a::after {
  content: " →";
}

.fdw-cta {
  width: min(var(--fdw-container), calc(100% - 2rem));
  margin: clamp(2rem, 4vw, 4rem) auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  border-radius: var(--fdw-radius);
  box-shadow: var(--fdw-shadow);
}

.fdw-cta--navy {
  background: linear-gradient(135deg, var(--fdw-navy), var(--fdw-navy-2));
  color: #fff;
}

.fdw-cta--paper {
  background: var(--fdw-paper);
  border: 1px solid var(--fdw-line);
}

.fdw-cta--urgent {
  background: linear-gradient(135deg, var(--fdw-oxblood), #521c1c);
  color: #fff;
}

.fdw-cta--navy h2,
.fdw-cta--urgent h2 {
  color: #fff;
}

.fdw-cta p:last-child {
  margin-bottom: 0;
}

.fdw-evidence,
.fdw-callout,
.wp-block-group.fdw-callout {
  margin: 2rem 0;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid var(--fdw-line);
  border-left: 6px solid var(--fdw-gold);
  border-radius: var(--fdw-radius);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: var(--fdw-shadow-soft);
}

.fdw-evidence h3,
.fdw-callout h3 {
  margin-bottom: 0.75rem;
}

.fdw-alert {
  border-left-color: var(--fdw-oxblood);
}

.fdw-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.fdw-pill-list li,
.fdw-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--fdw-line);
  border-radius: 999px;
  background: #f3ead9;
  color: var(--fdw-navy);
  font-size: 0.85rem;
  font-weight: 800;
}

.fdw-list-check {
  list-style: none;
  padding-left: 0;
}

.fdw-list-check li {
  position: relative;
  padding-left: 1.65rem;
}

.fdw-list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--fdw-gold);
  font-weight: 900;
}

.fdw-step-list {
  counter-reset: fdw-step;
  list-style: none;
  padding: 0;
}

.fdw-step-list li {
  counter-increment: fdw-step;
  position: relative;
  margin: 0 0 0.85rem;
  padding: 1rem 1rem 1rem 3.7rem;
  background: var(--fdw-paper);
  border: 1px solid var(--fdw-line);
  border-radius: 14px;
}

.fdw-step-list li::before {
  content: counter(fdw-step);
  position: absolute;
  left: 1rem;
  top: 0.9rem;
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: var(--fdw-navy);
  color: #fff;
  font-weight: 900;
  font-size: 0.85rem;
}

.fdw-widget-frame {
  margin: 2rem 0;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--fdw-line);
  border-radius: var(--fdw-radius);
  background: var(--fdw-paper);
  box-shadow: var(--fdw-shadow-soft);
}

.wp-block-group.alignfull,
.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

.alignwide {
  max-width: var(--fdw-wide);
}

.fdw-entry-content > .alignwide,
.fdw-entry-content > .alignfull > * {
  margin-inline: auto;
}

.wp-block-cover,
.wp-block-group,
.wp-block-media-text {
  border-radius: var(--fdw-radius);
}

.wp-block-separator {
  border: none;
  border-top: 1px solid var(--fdw-line);
  margin: 2.5rem auto;
}

.wp-block-quote {
  border-left-color: var(--fdw-gold);
}

.wp-block-pullquote {
  border-top: 4px solid var(--fdw-gold);
  border-bottom: 4px solid var(--fdw-gold);
  color: var(--fdw-navy);
}

.wp-block-code,
pre {
  padding: 1rem;
  overflow-x: auto;
  border-radius: 12px;
  background: #101d2d;
  color: #f8f4ec;
}

.wp-block-table table {
  margin: 0;
}

.search-form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 1rem 0;
}

.search-form label {
  flex: 1;
}

.site-footer {
  background: #07162a;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__inner {
  width: min(var(--fdw-container), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 4rem) 0;
  display: grid;
  gap: 1.4rem;
}

.site-footer h2 {
  color: #fff;
  font-size: 1.8rem;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
}

.footer-menu a,
.site-footer a {
  color: #fff;
}

.footer-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.comments-area {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--fdw-line);
}

.comment-list {
  padding-left: 0;
  list-style: none;
}

.comment-body {
  margin: 1rem 0;
  padding: 1rem;
  background: var(--fdw-paper);
  border: 1px solid var(--fdw-line);
  border-radius: 12px;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-previous,
.nav-next {
  flex: 1;
}

.nav-next {
  text-align: right;
}

@media (max-width: 1040px) {
  .fdw-card-grid,
  .fdw-card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header__inner {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-navigation {
    flex-direction: column;
    align-items: flex-end;
    flex: 1;
  }

  .primary-menu {
    display: none;
    width: min(420px, calc(100vw - 2rem));
    margin-top: 0.75rem;
    padding: 0.55rem;
    flex-direction: column;
    align-items: stretch;
    background: rgba(7, 22, 42, 0.96);
    border: 1px solid var(--fdw-line-dark);
    border-radius: 16px;
  }

  .main-navigation.is-open .primary-menu {
    display: flex;
  }

  .primary-menu a {
    padding: 0.82rem 0.9rem;
  }

  .primary-menu ul {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: block;
    margin: 0.1rem 0 0.45rem 0.8rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--fdw-line-dark);
    box-shadow: none;
  }

  .primary-menu ul a {
    color: #fff;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-header__inner {
    padding-inline: 1rem;
  }

  .site-description {
    display: none;
  }

  .fdw-hero__inner {
    padding: 3.3rem 0;
  }

  .fdw-card-grid,
  .fdw-card-grid--2,
  .fdw-card-grid--4 {
    grid-template-columns: 1fr;
  }

  .fdw-cta {
    grid-template-columns: 1fr;
  }

  .fdw-cta__action {
    justify-self: start;
  }

  .search-form {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    flex-direction: column;
  }

  .nav-next {
    text-align: left;
  }
}

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

/* Keep ordinary blocks readable on full-width editor canvases while allowing custom full-width sections. */
.fdw-front-content .fdw-entry-content > :not(.alignfull):not(.alignwide):not(.fdw-hero):not(.fdw-section):not(.fdw-cta),
.fdw-full-width-page .fdw-entry-content > :not(.alignfull):not(.alignwide):not(.fdw-hero):not(.fdw-section):not(.fdw-cta) {
  width: min(var(--fdw-content), calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.fdw-front-content .fdw-entry-content > .alignwide,
.fdw-full-width-page .fdw-entry-content > .alignwide {
  width: min(var(--fdw-wide), calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.fdw-front-content .fdw-entry-content > .fdw-section,
.fdw-full-width-page .fdw-entry-content > .fdw-section,
.fdw-front-content .fdw-entry-content > .fdw-hero,
.fdw-full-width-page .fdw-entry-content > .fdw-hero {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
