/* ==========================================================================
   VAPCP design system
   Accent: teal drawn from the navy wordmark. Gold is reserved for Join.
   Two weights only: 400 and 700. Spacing is multiples of 8px.
   ========================================================================== */

:root {
  --navy: #0e1236;
  --navy-deep: #07081c;
  --blue: #3e4a89;
  --teal: #2fb38c;
  --teal-dark: #1e8f70;
  --gold: #2fb38c;
  --gold-deep: #1e8f70;
  --paper: #f4f7f6;
  --white: #ffffff;
  --ink: #0e1236;
  --muted: #5c6570;
  --line: #d5ddd9;
  --danger: #8a2b2b;
  --focus: #2fb38c;
  --shadow: 0 10px 30px rgba(14, 18, 54, 0.08);
  --radius: 12px;
  --wrap: 70rem;
  --gutter: 1.25rem;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Palatino Linotype", Palatino, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-dark);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 100;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  text-decoration: none;
}

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

.wrap {
  width: min(var(--wrap), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section--tight {
  padding: 3rem 0;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 42rem;
}

.muted {
  color: var(--muted);
}

.fineprint {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  background: var(--navy);
  color: var(--white);
}

.btn:hover {
  background: var(--navy-deep);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--gold,
.btn--join {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn--gold:hover,
.btn--join:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--navy);
}

.btn--light:hover {
  background: var(--paper);
  color: var(--navy);
}

.btn--small {
  min-height: 2.25rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.95rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0.4rem;
}

.btn-row--split {
  align-items: flex-start;
  gap: 1.75rem 2.75rem;
}

.btn-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.btn-stack .fineprint {
  margin: 0;
  padding-left: 0.2rem;
}

.register-band {
  background: var(--white);
  border-block: 1px solid var(--line);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  padding-block: 0.6rem;
}

.logo {
  display: flex;
  flex: 0 0 auto;
  text-decoration: none;
}

.logo picture {
  display: block;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: 8px;
  padding: 0.35rem 0.7rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--teal);
  text-decoration: underline;
}

.site-nav .btn--join {
  text-decoration: none;
  margin-left: 0.35rem;
}

.site-nav .btn--join:hover {
  text-decoration: none;
}

/* Hero */

.hero {
  padding: 4.75rem 0 4rem;
  background:
    linear-gradient(180deg, rgba(23, 50, 74, 0.04), transparent 55%),
    var(--paper);
}

.hero h1 {
  max-width: 18ch;
}

.hero .lede {
  max-width: 40rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2.25rem;
  align-items: center;
}

.photo {
  margin: 0;
}

.photo picture {
  display: block;
  width: 100%;
}

.photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.photo figcaption {
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.photo--cover img {
  aspect-ratio: 4 / 3;
}

.photo--wide img {
  aspect-ratio: 16 / 10;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.photo-grid--compact {
  max-width: 46rem;
  gap: 0.65rem;
}

.photo-grid--compact .photo img {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.conference-photos .photo:nth-child(1) img {
  object-position: center 12%;
}

.conference-photos .photo:nth-child(2) img {
  object-position: center 14%;
}

.conference-photos .photo:nth-child(3) img {
  object-position: center 12%;
}

.conference-photos .photo:nth-child(4) img {
  object-position: center 22%;
}

.flyer-link {
  display: block;
  max-width: 380px;
}

.flyer-link picture {
  display: block;
  width: 100%;
}

.flyer-link img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius);
}

.referral-callout {
  margin-top: 1.25rem;
  max-width: 44rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
}

.referral-callout p {
  margin: 0;
}

.register-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.membership-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.photo--dmas img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

.conference-band .photo img {
  border: 1px solid rgba(255, 252, 248, 0.12);
}

/* Legislative session band */

.session-band {
  background: var(--teal);
  color: var(--white);
}

.session-band h2,
.session-band p {
  color: var(--white);
}

.session-band p {
  max-width: 46rem;
}

.session-band .btn {
  background: var(--white);
  color: var(--teal-dark);
}

.session-band .btn:hover {
  background: var(--paper);
  color: var(--teal-dark);
}

.session-band .btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.session-band .btn--secondary:hover {
  background: var(--white);
  color: var(--teal-dark);
}

.session-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.session-inner .btn {
  background: var(--white);
  color: var(--teal-dark);
}

.session-inner .btn:hover {
  background: var(--paper);
}

/* Cards */

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card .icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.card h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lock {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

/* Conference band */

.conference-band {
  background: var(--navy-deep);
  color: var(--white);
}

.conference-band h2,
.conference-band h3,
.conference-band p,
.conference-band dt,
.conference-band dd {
  color: var(--white);
}

.conference-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.conference-panel {
  background: rgba(255, 252, 248, 0.08);
  border: 1px solid rgba(255, 252, 248, 0.18);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
}

.conference-panel dl {
  margin: 0;
}

.conference-panel div + div {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 252, 248, 0.16);
}

.conference-panel dt {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--teal);
}

.conference-panel dd {
  margin: 0;
}

.conference-panel a {
  color: #8eecc9;
}

.tba {
  font-style: italic;
  opacity: 0.92;
}

/* Updates */

.update-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.update-list a,
.update-post {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  text-decoration: none;
  color: inherit;
}

.update-list a:hover {
  border-color: var(--teal);
}

.date {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.3rem;
}

/* Family / find a provider */

.family-band {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.family-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Footer */

.site-footer {
  background: var(--navy-deep);
  color: #d7dee4;
  padding: 3rem 0 1.5rem;
}

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: #8eecc9;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.site-footer address {
  font-style: normal;
}

.footer-facebook {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.75rem 0 0.85rem;
  width: fit-content;
}

.footer-facebook svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin: 0.3rem 0;
}

.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 252, 248, 0.12);
  font-size: 0.9rem;
}

.logo--footer picture {
  display: block;
}

.logo--footer img {
  height: 40px;
  width: auto;
  margin-bottom: 0.85rem;
}

/* Interior pages */

.page-hero {
  padding: 3.25rem 0 2rem;
  border-bottom: 1px solid var(--line);
}

.prose {
  max-width: 44rem;
}

.prose h2 {
  margin-top: 2.25rem;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

/* Join paths */

.equal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.join-apply {
  margin-bottom: 1.15rem;
}

.form-embed {
  width: 100%;
  max-width: 100%;
  margin-top: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.form-embed iframe {
  display: block;
  width: 100%;
  height: 1200px;
  border: 0;
}

.form-embed--alerts iframe {
  height: 700px;
}

/* Regulation search demo */

.search-demo {
  max-width: 46rem;
}

.search-demo-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.65rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.search-demo-box svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--muted);
  flex-shrink: 0;
}

.search-demo-query {
  flex: 1;
  min-height: 1.4em;
  font-size: 1rem;
  color: var(--ink);
}

.search-demo-query:empty::before {
  content: "Search manuals and regulations…";
  color: var(--muted);
}

.search-demo-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.search-demo-questions:empty {
  display: none;
}

.search-demo-question {
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 16rem;
  max-width: 100%;
  margin: 0;
  padding: 0.5rem 0.9rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.search-demo-question:hover,
.search-demo-question[aria-pressed="true"] {
  border-color: var(--teal);
  background: #eef8f4;
}

.search-demo-result {
  margin-top: 1rem;
  min-height: 22rem;
  padding: 1.1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
}

.search-demo--compact .search-demo-result {
  min-height: 0;
}

.search-demo-answer {
  margin: 0 0 0.75rem;
}

.search-demo-source {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
  overflow-wrap: break-word;
}

.search-demo-src,
.search-demo-ref {
  max-width: 100%;
}

.search-demo-join,
.search-demo-more {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.search-demo-more {
  margin-top: 0.55rem;
}

.equal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.equal-card:has(.pay-options) {
  container-type: inline-size;
  container-name: pay-card;
  min-width: 0;
}

.pay-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 0.85rem;
  width: 100%;
}

@container pay-card (min-width: 30rem) {
  .pay-options {
    grid-template-columns: 1fr 1fr;
  }
}

.pay-option {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 0.85rem 1.15rem;
  background: var(--white);
  text-align: center;
  min-width: 0;
}

.pay-option--prorated {
  background: var(--paper);
}

.pay-option-amount {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

.pay-option h4 {
  margin: 0.3rem 0 0.4rem;
  font-size: 1.05rem;
}

.pay-option .fineprint {
  margin: 0 0 0.9rem;
}

.pay-option-button {
  display: flex;
  justify-content: center;
}

.equal-card .btn {
  margin-top: auto;
}

.kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.45rem;
}

.mail-path {
  background: var(--paper);
}

.dues {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
}

.dues dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1.25rem;
  margin: 0;
}

.dues dt {
  font-weight: 700;
  color: var(--navy);
}

.dues dd {
  margin: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

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

th {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
}

tr:last-child td {
  border-bottom: 0;
}

.table-wrap {
  overflow-x: auto;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  margin: 0.65rem 0;
}

summary {
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}

summary + * {
  margin-top: 0.7rem;
}

/* Embeds / placeholders */

.embed-placeholder {
  border: 2px dashed var(--line);
  background: #efebe3;
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--muted);
}

.embed-placeholder strong {
  color: var(--navy);
}

.todo-note {
  font-size: 0.85rem;
  color: var(--teal-dark);
  font-weight: 700;
}

.action-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0 1.75rem;
}

.action-band h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.action-band p {
  margin: 0 0 1rem;
  max-width: 46rem;
}

.action-updates {
  margin: 0 0 1rem;
}

.why-join-photo {
  max-width: 36rem;
  margin: 1.25rem 0 1.75rem;
}

#iframe {
  min-height: 32rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.material-subhead {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
}

.material-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.material-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem 1.15rem;
  margin: 0.65rem 0;
}

.material-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  margin: 0;
}

.material-head a {
  font-weight: 700;
}

.material-date {
  font-size: 0.85rem;
  color: var(--muted);
}

.material-list li > p {
  margin: 0.4rem 0 0;
}

.material-list .material-head {
  margin: 0;
}

.material-note {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Directory */

.filters {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0.85rem;
  margin: 1.5rem 0 1rem;
  max-width: 40rem;
}

label.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

input[type="search"],
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  font: inherit;
  font-weight: 400;
  padding: 0.65rem 0.75rem;
  border: 1px solid #c9c2b6;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  width: 100%;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.result-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 1rem;
}

.agency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.agency-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
}

.agency-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
}

.agency-facts {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.15rem;
}

.agency-detail {
  margin: 0;
  line-height: 1.4;
}

.agency-detail span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.08rem;
}

.agency-mark {
  width: 100%;
  height: 5rem;
  padding: 0.5rem 0.65rem;
  margin: 0 0 0.85rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.agency-mark picture {
  display: block;
  width: 100%;
  height: 100%;
}

.agency-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.agency-mark-fallback {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.25;
  padding: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.55rem 0;
  padding: 0;
  list-style: none;
}

.tag {
  background: #e7eef0;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.sample-banner {
  background: #f4e6c8;
  border: 1px solid #d9b66a;
  color: var(--navy-deep);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin: 1rem 0 0;
}

.empty-state {
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}

.associate {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.25rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.associate-logo {
  display: block;
  text-decoration: none;
}

.associate-logo picture {
  display: block;
  width: 100%;
}

.associate-logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* Board */

.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.board-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem;
}

.board-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.board-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #d7efe6;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.55rem;
  overflow: hidden;
}

.board-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.board-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.board-role {
  margin: 0 0 0.6rem;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.92rem;
}

.bio {
  margin: 0;
  font-size: 0.95rem;
}

.board-card .bio:empty {
  display: none;
}

/* Quotes */

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.quote {
  background: var(--white);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.15rem 1.25rem;
}

.quote p {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.quote footer {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Track record */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-grid--2 {
  grid-template-columns: 1fr 1fr;
}

.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.stat-value {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.2rem 0;
}

.rate-timeline {
  display: flex;
  list-style: none;
  margin: 1.75rem 0 0.65rem;
  padding: 0.25rem 0 0.75rem;
  overflow-x: auto;
  gap: 0;
  -webkit-overflow-scrolling: touch;
}

.rate-timeline li {
  flex: 1 0 6.25rem;
  text-align: center;
  position: relative;
  padding: 0 0.4rem 1.1rem;
}

.rate-timeline li::after {
  content: "";
  position: absolute;
  left: 50%;
  right: -50%;
  bottom: 0.35rem;
  height: 2px;
  background: var(--teal);
}

.rate-timeline li:last-child::after {
  display: none;
}

.rate-when {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.rate-amt {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 0.2rem;
}

.alerts-band {
  background: var(--navy);
  padding: 3rem 0;
}

.alerts-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  max-width: 36rem;
  box-shadow: var(--shadow);
}

.alerts-card h2 {
  margin-top: 0;
}

.alerts-card .embed-placeholder {
  margin-top: 1rem;
}

.alerts-card .fineprint {
  margin-top: 0.85rem;
}

@media (max-width: 700px) {
  .rate-timeline {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 0;
  }

  .rate-timeline li {
    flex: none;
    display: grid;
    grid-template-columns: 8rem 1fr;
    align-items: baseline;
    text-align: left;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
  }

  .rate-timeline li::after {
    display: none;
  }

  .rate-amt {
    font-size: 1.15rem;
  }
}

.screenshot {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.screenshot figcaption {
  padding: 0.7rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.resource-group + .resource-group {
  margin-top: 2.5rem;
}

.resource-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.resource-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem 1.15rem;
  margin: 0.65rem 0;
}

.resource-list a {
  font-weight: 700;
}

.agenda {
  list-style: none;
  margin: 0;
  padding: 0;
}

.agenda li {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.agenda time {
  font-weight: 700;
  color: var(--navy);
}

.sponsor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.hidden {
  display: none !important;
}

.js #directory-static {
  display: none;
}

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

  .card-grid,
  .equal-grid,
  .stat-grid,
  .filters,
  .conference-layout,
  .register-layout,
  .footer-grid,
  .split,
  .quotes,
  .sponsor-grid,
  .agency-grid,
  .associate,
  .form-row,
  .agenda li,
  .hero-grid,
  .photo-grid,
  .photo-grid--3 {
    grid-template-columns: 1fr;
  }

  .photo-grid.photo-grid--stay-2 {
    grid-template-columns: 1fr 1fr;
  }

  .pay-options {
    grid-template-columns: 1fr;
  }

  .search-demo-question {
    flex: 1 1 100%;
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem var(--gutter) 1.1rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav .btn--join {
    margin: 0.4rem 0 0;
    width: fit-content;
  }

  .header-inner {
    position: relative;
  }

  .section {
    padding: 3.25rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .btn-row,
  .sample-banner {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  a {
    color: #000;
  }
}
