:root {
  --ink: #202621;
  --muted: #667064;
  --paper: #fbfaf5;
  --panel: #ffffff;
  --olive: #536832;
  --olive-dark: #33431f;
  --gold: #b8872e;
  --blue: #263c4a;
  --line: #e5e0d3;
  --shadow: 0 18px 45px rgba(32, 38, 33, 0.12);
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

main,
section,
article,
header,
footer,
.hero,
.hero-content,
.intro-band,
.content-grid,
.archive-preview,
.article-shell,
.archive-page,
.feature-card,
.resource-list,
.contact-layout {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(229, 224, 211, 0.75);
  background: rgba(251, 250, 245, 0.92);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-logo {
  width: 160px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--olive-dark);
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.2;
}

.brand small,
.meta,
.article-meta,
.eyebrow {
  color: var(--muted);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  font-weight: 600;
  color: #40483f;
}

.nav a:hover {
  color: var(--olive);
}

.nav-toggle,
.menu-button {
  display: none;
}

.menu-button {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--olive-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 78px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(36px, 6vw, 76px) clamp(18px, 4vw, 56px) clamp(44px, 6vw, 76px);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 28%;
  content: "";
  background: linear-gradient(0deg, rgba(251, 250, 245, 0.96), rgba(251, 250, 245, 0));
  pointer-events: none;
}

.hero-media {
  position: relative;
  z-index: 1;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img,
.feature-card img,
.article-preview > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  line-height: 1.05;
  max-width: 100%;
  overflow-wrap: anywhere;
}

h1 {
  max-width: min(740px, 100%);
  font-size: clamp(2.55rem, 5.4vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
}

h3 {
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: #465044;
  font-size: 1.15rem;
  overflow-wrap: anywhere;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 18px;
  font-weight: 800;
  text-align: center;
  white-space: normal;
}

.button.primary {
  color: #fff;
  border-color: var(--olive);
  background: var(--olive);
}

.button.secondary {
  color: var(--olive-dark);
  background: #fff;
}

.service-panel {
  position: static;
  grid-column: 1 / -1;
  justify-self: center;
  z-index: 3;
  display: grid;
  width: min(860px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(32, 38, 33, 0.1);
}

.service-panel .map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  width: max-content;
  min-height: 44px;
  margin-top: 8px;
  border: 1px solid rgba(83, 104, 50, 0.25);
  border-radius: 8px;
  padding: 10px 18px;
  background: var(--olive);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(51, 67, 31, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.service-panel .map-link:hover,
.service-panel .map-link:focus-visible {
  background: var(--olive-dark);
  box-shadow: 0 14px 28px rgba(51, 67, 31, 0.2);
  transform: translateY(-1px);
}

.service-panel span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-panel strong {
  grid-row: 2;
  font-size: 0.94rem;
  line-height: 1.25;
}

.intro-band,
.content-grid,
.archive-preview,
.article-preview,
.footer {
  padding-right: clamp(18px, 4vw, 56px);
  padding-left: clamp(18px, 4vw, 56px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(260px, 0.7fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
  color: #fff;
  background: var(--blue);
}

.denom-motto {
  display: grid;
  gap: 8px;
  border-left: 1px solid rgba(255,255,255,.22);
  padding-left: 24px;
}

.denom-motto span {
  color: #d8b15b;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.denom-motto strong {
  color: #fff;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.intro-band .eyebrow {
  color: #d8b15b;
}

.intro-band p:last-child {
  max-width: 740px;
  margin: 0;
  color: #dce4df;
  font-size: 1.05rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 72px;
}

.section-heading {
  grid-column: 1 / -1;
}

.feature-card,
.resource-list article,
.article-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(32, 38, 33, 0.06);
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-self: start;
  overflow: hidden;
}

.feature-card img {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card div {
  padding: clamp(22px, 4vw, 38px);
}

.feature-card p,
.resource-list p,
.article-body {
  color: #526052;
  overflow-wrap: anywhere;
}

.feature-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--olive-dark);
  font-weight: 800;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.resource-list article {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  overflow: hidden;
}

.resource-list .card-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  background: #eef0e6;
  overflow: hidden;
}

.resource-list .card-thumb img,
.resource-list .card-thumb .image-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.resource-list .card-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.resource-list h3 {
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
}

.read-more {
  align-self: end;
  color: var(--olive-dark);
  font-weight: 900;
  font-size: 0.95rem;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.archive-preview {
  padding-top: 10px;
  padding-bottom: 72px;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.category-row a {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  font-weight: 800;
}

.category-row span {
  color: var(--gold);
}

.article-preview {
  max-width: 980px;
  margin: 0 auto 80px;
  overflow: hidden;
}

.article-preview header {
  padding: clamp(24px, 4vw, 44px) clamp(20px, 5vw, 72px) 24px;
}

.article-preview > img {
  max-height: 460px;
}

.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 34px clamp(20px, 5vw, 72px) 48px;
  font-size: 1.08rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  background: var(--olive-dark);
}

.footer p {
  margin: 6px 0 0;
  color: #d7decf;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    padding-bottom: 44px;
  }

  .service-panel {
    position: static;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
  }
}

@media (max-width: 920px) {
  .site-header,
  .footer {
    align-items: center;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    grid-column: 1 / -1;
  }

  .hero,
  .intro-band,
  .content-grid,
  .feature-card {
    grid-template-columns: 1fr;
  }

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

  .category-row {
    grid-template-columns: 1fr;
  }

  .service-panel strong {
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: 1fr 44px;
    gap: 8px;
    padding: 12px 16px;
  }

  .brand {
    grid-column: 1;
    justify-self: center;
    min-width: 0;
  }

  .brand-logo {
    width: min(150px, 42vw);
    max-height: 42px;
  }

  .brand span {
    display: none;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .menu-button {
    grid-column: 2;
    justify-self: end;
    display: inline-flex;
    flex-direction: column;
  }

  .nav {
    grid-column: 1 / -1;
    display: none;
    gap: 0;
    padding-top: 8px;
    text-align: center;
  }

  .nav a {
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
    flex-direction: column;
  }

  .hero {
    gap: 24px;
    padding: 24px 16px 40px;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
  }

  h1 {
    font-size: clamp(1.45rem, 6.2vw, 1.85rem);
    line-height: 1.12;
  }

  h2 {
    font-size: clamp(1.35rem, 6.4vw, 1.8rem);
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero-copy,
  .intro-band p:last-child,
  .article-body,
  .wp-content p,
  .wp-content li {
    font-size: 1rem;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .service-panel {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .service-panel .map-link {
    width: 100%;
  }

  .service-panel strong {
    font-size: 1rem;
  }

  .intro-band,
  .content-grid,
  .archive-preview,
  .article-preview,
  .footer,
  .article-shell,
  .archive-page {
    padding-right: 16px;
    padding-left: 16px;
  }

  .intro-band {
    gap: 16px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .intro-band h2 {
    font-size: clamp(1.35rem, 6.4vw, 1.75rem);
  }

  .content-grid {
    gap: 20px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .resource-list {
    grid-template-columns: 1fr;
  }

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

  .feature-card img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .feature-card div,
  .resource-list article {
    padding: 18px;
  }

  .section-heading h2 {
    font-size: clamp(1.35rem, 6.4vw, 1.75rem);
  }

  .footer {
    align-items: flex-start;
  }

  .footer-actions {
    display: flex;
    justify-content: flex-start;
  }

  .footer-actions .button {
    width: auto;
    min-width: 0;
  }
}


.article-shell,.archive-page{max-width:1080px;margin:0 auto;padding:clamp(32px,6vw,76px) clamp(18px,4vw,56px)}
.article-header{max-width:860px;margin:0 auto 28px}.article-header h1,.archive-page h1{font-size:clamp(2.2rem,5vw,4.6rem)}
.back-link{display:inline-flex;margin-bottom:18px;color:var(--olive-dark);font-weight:800}.article-hero{width:100%;max-height:560px;object-fit:cover;border-radius:8px;box-shadow:var(--shadow)}
.wp-content{color:#3d473d}.wp-content h2,.wp-content h3{margin-top:1.8em;margin-bottom:.55em}.wp-content p,.wp-content li{font-size:1.08rem}.wp-content a{color:var(--olive-dark);font-weight:700;text-decoration:underline}.wp-content img{height:auto;margin:28px auto;border-radius:8px}
.podcast-embed{position:relative;overflow:hidden;margin:30px 0;border:1px solid var(--line);border-radius:8px;background:#fff;box-shadow:0 10px 24px rgba(32,38,33,.06)}
.podcast-embed iframe{display:block;width:100%;height:152px;border:0;background:#fff}
.podcast-fallback{margin:0;padding:12px 16px;border-top:1px solid var(--line);background:#fbfaf5;font-size:.94rem}
.podcast-fallback a{color:var(--olive-dark);font-weight:900;text-decoration:none}
.wp-content iframe[src*="anchor.fm"],.wp-content iframe[src*="creators.spotify.com"]{display:block;width:min(100%,800px);max-width:100%;border:0;margin:30px auto;border-radius:8px;background:#fff;box-shadow:0 14px 34px rgba(32,38,33,.09)}
.podcast-player{width:min(100%,800px);margin:28px auto;border:1px solid var(--line);border-radius:8px;background:#fff;box-shadow:0 14px 34px rgba(32,38,33,.09);overflow:hidden}
.podcast-player iframe{display:block;width:100%;margin:0;border:0;border-radius:0;box-shadow:none;background:#fff}
.podcast-open{display:flex;align-items:center;justify-content:center;min-height:44px;border-top:1px solid var(--line);background:#fbfaf5;color:var(--olive-dark);font-weight:900;text-decoration:none}
.podcast-open:hover,.podcast-open:focus-visible{background:#f2f1e9}
.meetings-page>p:not(.eyebrow){max-width:760px;color:var(--muted)}.meeting-list{display:grid;gap:14px;margin-top:28px}.meeting-card{display:grid;grid-template-columns:160px minmax(0,1fr) auto;gap:22px;align-items:center;background:#fff;border:1px solid var(--line);border-radius:8px;padding:20px;box-shadow:0 10px 24px rgba(32,38,33,.06)}.meeting-date{border-right:1px solid var(--line);padding-right:18px}.meeting-date span,.meeting-info small,.meeting-note{color:var(--muted);font-weight:800}.meeting-date strong{display:block;font-size:1.35rem;color:var(--olive-dark)}.meeting-info h2{margin:4px 0 8px;font-size:clamp(1.55rem,3vw,2.3rem)}.meeting-info p{margin:0 0 6px}.meeting-action{justify-self:end}@media(max-width:760px){.meeting-card{grid-template-columns:1fr;gap:12px}.meeting-date{border-right:0;border-bottom:1px solid var(--line);padding:0 0 12px}.meeting-action{justify-self:stretch}.meeting-action .button{width:100%}}
.contact-page .article-header{margin-bottom:36px}.contact-layout{display:grid;grid-template-columns:minmax(260px,.8fr) minmax(320px,1.2fr);gap:32px;align-items:start;max-width:980px;margin:0 auto}.contact-copy{padding-top:8px}.contact-copy h2{font-size:clamp(2rem,4vw,3rem);margin-bottom:16px}.contact-form{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;border:1px solid rgba(229,224,211,.9);border-radius:8px;padding:clamp(22px,3vw,34px);background:linear-gradient(180deg,#fff,#fbfaf5);box-shadow:0 18px 45px rgba(32,38,33,.09)}.contact-form label{display:grid;gap:8px;color:var(--muted);font-size:.78rem;font-weight:800;letter-spacing:0;text-transform:uppercase}.contact-form input,.contact-form textarea{width:100%;border:1px solid #d9d4c7;border-radius:8px;padding:13px 14px;background:#fff;color:var(--ink);font:inherit;box-shadow:inset 0 1px 0 rgba(255,255,255,.8);transition:border-color .18s,box-shadow .18s}.contact-form input:focus,.contact-form textarea:focus{outline:0;border-color:var(--olive);box-shadow:0 0 0 3px rgba(83,104,50,.14)}.contact-form .full,.contact-form .notice,.turnstile-field{grid-column:1/-1}.contact-form textarea{min-height:190px;resize:vertical}.contact-form .button{justify-self:start;min-width:220px}.turnstile-field{min-height:65px}.captcha-field span{display:inline-flex;align-items:center;justify-content:center;width:max-content;min-width:76px;margin-top:2px;border-radius:999px;background:#eef2e7;color:var(--olive);font-size:1rem;font-weight:900;letter-spacing:0;text-transform:none;padding:6px 12px}.hp-field{position:absolute;left:-9999px;width:1px;height:1px;opacity:0}
.archive-list{display:grid;gap:18px;margin-top:28px}.archive-card{display:grid;grid-template-columns:minmax(180px,260px) 1fr;gap:22px;align-items:center;border-bottom:1px solid var(--line);padding-bottom:18px}.archive-card .thumb{aspect-ratio:16/10;overflow:hidden;border-radius:8px;background:#eef0e8}.archive-card img,.archive-card .image-placeholder{width:100%;height:100%;object-fit:cover}.archive-card h2{font-size:clamp(1.35rem,2.5vw,2rem)}
.tax-links{display:flex;flex-wrap:wrap;gap:10px;max-width:860px;margin:0 auto 40px}.tax-links a{border:1px solid var(--line);border-radius:999px;padding:7px 12px;background:#fff;color:var(--olive-dark);font-weight:800}.related-posts{max-width:860px;margin:0 auto}.image-placeholder{display:block;min-height:220px;background:linear-gradient(135deg,#e9ecdf,#fff)}
.search-form{display:flex;gap:10px;max-width:720px;margin:24px 0}.search-form input{flex:1;border:1px solid var(--line);border-radius:6px;padding:12px;font:inherit}
@media(max-width:680px){.archive-card{grid-template-columns:1fr}.search-form{flex-direction:column}.contact-layout,.contact-form{grid-template-columns:1fr}.podcast-embed iframe{height:152px}}

@media(max-width:760px){
  .site-header{grid-template-columns:1fr 44px;align-items:center;justify-content:space-between}
  .site-header .brand{grid-column:1;justify-self:center;min-width:0}
  .site-header .brand span{display:none}
  .site-header .brand-logo{width:min(150px,42vw);max-height:42px}
  .site-header .menu-button{grid-column:2;justify-self:end}
  .site-header .menu-button{display:flex}
  .site-header .nav{
    position:absolute;
    top:calc(100% + 10px);
    right:16px;
    display:none;
    width:min(280px,calc(100vw - 32px));
    flex:initial;
    gap:4px;
    border:1px solid var(--line);
    border-radius:8px;
    padding:8px;
    background:rgba(255,255,255,.98);
    box-shadow:0 18px 45px rgba(32,38,33,.14);
    text-align:left;
  }
  .site-header .nav a{
    width:100%;
    border:0;
    border-radius:6px;
    padding:12px 14px;
  }
  .site-header .nav a:hover,
  .site-header .nav a:focus-visible{
    background:#f2f1e9;
  }
  .site-header .nav-toggle:checked ~ .nav{display:flex;flex-direction:column}
}

@media(max-width:680px){
  .site-header{position:sticky;grid-template-columns:1fr;justify-items:center;padding-right:16px;padding-left:16px}
  .site-header .brand{grid-column:1;grid-row:1}
  .site-header .menu-button{position:absolute;top:12px;right:max(16px,calc((100vw - 360px) / 2 + 16px));grid-column:auto}
  .site-header .nav{grid-column:auto;grid-row:auto;width:min(280px,calc(100vw - 32px))}
  body{width:100%;max-width:100vw}
  main{width:100%;max-width:100vw;overflow:hidden}
  .hero,.intro-band,.content-grid,.archive-preview,.article-shell,.archive-page,.footer{width:100%;max-width:100vw;overflow:hidden}
  .hero,.intro-band,.content-grid,.feature-card,.contact-layout{display:grid;grid-template-columns:minmax(0,1fr)}
  .hero-media,.hero-content,.service-panel,.section-heading,.feature-card,.resource-list article,.archive-card,.contact-form{width:min(100%,360px);max-width:100%;min-width:0;margin-right:auto;margin-left:auto}
  .resource-list{width:min(100%,360px);max-width:100%;min-width:0;margin-right:auto;margin-left:auto}
  .hero h1,.intro-band h2,.section-heading h2,.feature-card h3,.resource-list h3,.archive-card h2{width:100%;max-width:100%;text-wrap:balance;overflow-wrap:break-word}
  .meta,.article-meta,.feature-card p,.resource-list p,.wp-content p{max-width:100%;overflow-wrap:break-word}
  .intro-band h2,.section-heading h2{font-size:1.35rem}
  .intro-band p:last-child,.hero-copy,.feature-card p,.resource-list p{font-size:.96rem}
}

@media(max-width:420px){
  .hero{padding-right:14px;padding-left:14px}
  .hero-content{max-width:100%}
  h1{font-size:clamp(1.34rem,5.9vw,1.62rem)}
  .article-shell,.archive-page,.intro-band,.content-grid,.archive-preview,.footer{padding-right:14px;padding-left:14px}
  .resource-list article,.feature-card div{padding:16px}
  .feature-card h3,.resource-list h3{font-size:1.16rem}
}

