:root {
  --green-900: #173f2a;
  --green-800: #245c36;
  --green-700: #2f7d4a;
  --green-100: #e8f4eb;
  --green-50: #f3faf5;

  --yellow-500: #f2c94c;
  --yellow-100: #fff5cf;

  --cream-50: #fbf8f0;
  --cream-100: #f5efe1;

  --blue-700: #245f86;
  --blue-50: #eef7fb;

  --text-main: #1f2a24;
  --text-soft: #58665d;
  --text-light: #ffffff;
  --white: #ffffff;

  --border-soft: #dbe6dc;
  --shadow-soft: 0 14px 36px rgba(23, 63, 42, 0.08);
  --shadow-hover: 0 20px 44px rgba(23, 63, 42, 0.14);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --max-width: 1120px;
  --content-width: 920px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(242, 201, 76, 0.22), transparent 34rem),
    linear-gradient(180deg, var(--cream-50) 0%, #f7f9f3 52%, var(--cream-100) 100%);
  color: var(--text-main);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.72;
}

img,
iframe,
object,
embed {
  max-width: 100%;
}

img {
  height: auto;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0 0 1.25rem 1.4rem;
  padding: 0;
}

li {
  margin-bottom: 0.45rem;
}

hr {
  border: 0;
  border-top: 1px solid var(--border-soft);
  margin: 2rem 0;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--green-900);
  color: var(--text-light);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

main {
  padding: 3rem 0 4rem;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.18;
}

h1 {
  max-width: var(--content-width);
  margin: 0 auto 1.35rem;
  font-size: clamp(2.15rem, 4.8vw, 4rem);
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
}

h3 {
  margin: 1.6rem 0 0.55rem;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
}

h4 {
  margin: 1.25rem 0 0.45rem;
  font-size: 1.1rem;
}

p,
li {
  color: var(--text-main);
}

a {
  color: var(--blue-700);
  font-weight: 700;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus {
  color: var(--green-800);
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 240, 0.96);
  border-bottom: 1px solid rgba(36, 92, 54, 0.16);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.site-logo img {
  display: block;
  width: clamp(130px, 15vw, 190px);
  height: auto;
}

.site-logo:hover,
.site-logo:focus {
  transform: translateY(-1px);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list li {
  margin: 0;
}

.nav-list a {
  display: inline-block;
  padding: 0.58rem 0.85rem;
  border-radius: 999px;
  color: var(--green-900);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus {
  background: var(--green-100);
  color: var(--green-800);
  transform: translateY(-1px);
}

.nav-list a[aria-current="page"] {
  background: var(--green-800);
  color: var(--text-light);
}

.hero {
  max-width: var(--content-width);
  margin: 0 auto 2rem;
  padding: clamp(2rem, 5vw, 3.4rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(243, 250, 245, 0.96)),
    linear-gradient(135deg, var(--green-100), var(--yellow-100));
  border: 1px solid rgba(36, 92, 54, 0.16);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -5rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: rgba(242, 201, 76, 0.25);
}

.hero h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
}

.hero p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.network-logos {
  max-width: var(--content-width);
  margin: -0.5rem auto 2rem;
  padding: 1.3rem 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(36, 92, 54, 0.12);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.network-logos h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.logo-strip img {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 105px;
  object-fit: contain;
}

.logo-strip img:nth-child(2) {
  max-width: 280px;
  max-height: 120px;
}

.button,
.primary-button,
.secondary-button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.primary-button,
.button-link {
  background: var(--green-800);
  color: var(--text-light);
  box-shadow: 0 8px 20px rgba(36, 92, 54, 0.18);
}

.primary-button:hover,
.primary-button:focus,
.button-link:hover,
.button-link:focus {
  background: var(--green-900);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(36, 92, 54, 0.24);
}

.secondary-button {
  background: var(--white);
  color: var(--green-900);
  border: 1px solid rgba(36, 92, 54, 0.24);
}

.secondary-button:hover,
.secondary-button:focus {
  background: var(--green-100);
  color: var(--green-900);
  transform: translateY(-2px);
}

.well,
.wp-content-well,
.wp-fp-well,
.content-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(36, 92, 54, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.wp-content-well,
.content-card {
  max-width: var(--content-width);
  margin: 0 auto 2rem;
  padding: clamp(1.65rem, 4vw, 2.6rem);
}

.page-intro {
  max-width: var(--content-width);
  margin: 0 auto 1.5rem;
  padding: 1.3rem 1.55rem;
  border-radius: var(--radius-md);
  background: var(--green-50);
  border: 1px solid rgba(36, 92, 54, 0.14);
}

.page-intro p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.content-section {
  margin-bottom: 2rem;
  padding-bottom: 1.7rem;
  border-bottom: 1px solid var(--border-soft);
}

.content-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.content-section h2,
.content-section h3 {
  margin-top: 0;
}

.content-section p:last-child,
.info-card p:last-child {
  margin-bottom: 0;
}

.help-panel,
.highlight-panel {
  max-width: var(--content-width);
  margin: 0 auto 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.help-panel {
  background: var(--green-900);
  color: var(--text-light);
}

.help-panel h2,
.help-panel p {
  color: var(--text-light);
}

.help-panel p {
  max-width: 720px;
}

.help-panel a {
  color: #ffffff;
}

.highlight-panel {
  background: var(--yellow-100);
  border: 1px solid rgba(180, 142, 20, 0.18);
}

.card-grid {
  max-width: var(--content-width);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.info-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(36, 92, 54, 0.14);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.info-card h2,
.info-card h3 {
  margin-bottom: 0.65rem;
}

.info-card p {
  color: var(--text-soft);
}

.info-card .button-link,
.info-card .secondary-button {
  margin-top: auto;
}

.info-card.urgent {
  background:
    linear-gradient(180deg, rgba(232, 244, 235, 0.8), rgba(255, 255, 255, 0.96));
  border-top: 6px solid var(--green-700);
}

.info-card.contact {
  background:
    linear-gradient(180deg, rgba(255, 245, 207, 0.78), rgba(255, 255, 255, 0.96));
  border-top: 6px solid var(--yellow-500);
}

.resource-card {
  max-width: var(--content-width);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(36, 92, 54, 0.14);
  box-shadow: var(--shadow-soft);
}

.resource-text p {
  color: var(--text-soft);
}

.resource-image-link {
  display: block;
}

.resource-image-link img {
  display: block;
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 26px rgba(23, 63, 42, 0.1);
}

.diagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.diagram-grid article {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: var(--green-50);
  border: 1px solid var(--border-soft);
}

.diagram-grid h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.diagram-grid p {
  margin-bottom: 0;
  color: var(--text-soft);
}


.wp-content-well img,
.content-card img {
  border-radius: var(--radius-md);
}

.has-text-align-center {
  text-align: center;
}

.has-text-align-left {
  text-align: left;
}

.aligncenter,
img.aligncenter {
  display: block;
  clear: both;
  margin-left: auto;
  margin-right: auto;
}

.pull-left,
.wp-pages-img-left {
  float: left;
  width: auto;
  max-width: 280px;
  margin: 0.35rem 1.4rem 1rem 0;
}

.img-polaroid {
  padding: 0.4rem;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 24px rgba(23, 63, 42, 0.08);
}

.wp-block-file {
  margin: 1.5rem 0;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--green-50);
  border: 1px solid var(--border-soft);
}

.wp-block-file object {
  display: block;
  width: 100%;
  height: 420px;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background: #ffffff;
}

.wp-block-file a {
  display: inline-flex;
  margin: 0.25rem 0.75rem 0.25rem 0;
}

.wp-block-file__button {
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  background: var(--green-800);
  color: var(--text-light) !important;
  text-decoration: none;
}

.wp-block-file__button:hover,
.wp-block-file__button:focus {
  background: var(--green-900);
}

.site-footer {
  margin-top: 1rem;
  padding: 2.2rem 0;
  background:
    linear-gradient(135deg, var(--green-900), var(--green-800));
  color: var(--text-light);
  text-align: center;
}

.site-footer p {
  margin-bottom: 0.45rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.site-footer a {
  color: #ffffff;
}

.cookieConsentContainer {
  z-index: 999;
  width: min(92%, 520px);
  min-height: 20px;
  box-sizing: border-box;
  padding: 1.4rem;
  background: var(--green-900);
  overflow: hidden;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}

.cookieConsentContainer .cookieTitle a,
.cookieConsentContainer .cookieDesc p,
.cookieConsentContainer .cookieDesc a {
  color: #ffffff;
}

.cookieConsentContainer .cookieButton a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--yellow-500);
  color: var(--text-main);
  font-weight: 800;
  text-decoration: none;
}

.row,
.row-fluid {
  width: 100%;
}

.row::after,
.row-fluid::after {
  content: "";
  display: table;
  clear: both;
}

[class*="span"] {
  min-height: 1px;
}

.span2,
.span4,
.span5,
.span6,
.span7 {
  float: left;
}

.span2 {
  width: 16.666%;
}

.span4 {
  width: 33.333%;
}

.span5 {
  width: 41.666%;
}

.span6 {
  width: 50%;
}

.span7 {
  width: 58.333%;
}

.offset3 {
  margin-left: 25%;
}

.offset4 {
  margin-left: 33.333%;
}

.hidden-desktop {
  display: none;
}

@media screen and (max-width: 920px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .nav-list {
    justify-content: center;
  }

  main {
    padding-top: 2rem;
  }

  .card-grid,
  .fp-btn-row {
    grid-template-columns: 1fr;
  }

  .fp-btn-row .offset3 {
    grid-column: auto;
    width: 100%;
  }

  .pull-left,
  .wp-pages-img-left {
    float: none;
    display: block;
    max-width: 100%;
    margin: 0 auto 1rem;
  }

  .span2,
  .span4,
  .span5,
  .span6,
  .span7 {
    float: none;
    width: 100%;
  }

  .offset3,
  .offset4 {
    margin-left: 0;
  }

  .hidden-phone,
  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: block !important;
  }
}

@media screen and (max-width: 620px) {
  body {
    line-height: 1.65;
  }

  .container {
    width: 91%;
  }

  main {
    padding: 1.35rem 0 2.5rem;
  }

  .site-header {
    position: static;
  }

  .site-logo {
    text-align: center;
  }

  .nav-list {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.35rem;
  }

  .nav-list a {
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.62);
  }

  .hero,
  .wp-content-well,
  .content-card,
  .wp-fp-well,
  .page-intro,
  .help-panel,
  .highlight-panel,
  .info-card {
    border-radius: var(--radius-md);
  }

  .hero-actions {
    display: block;
  }

  .button,
  .primary-button,
  .secondary-button,
  .button-link {
    width: 100%;
    margin: 0.35rem 0;
    text-align: center;
  }

  .info-card {
    min-height: auto;
  }

  .wp-block-file object {
    height: 280px;
  }

  .cookieConsentContainer {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

.network-logos {
  margin-top: -0.25rem;
  padding: 1rem;
}

.logo-strip {
  gap: 1rem;
}

.logo-strip img {
  max-width: 150px;
  max-height: 90px;
}

.logo-strip img:nth-child(2) {
  max-width: 220px;
}
}