/*
Theme Name: LegacyFC 2026
Requires Plugins: legacyfc-core
Theme URI: https://lfcwv.net/
Author: Legacy FC
Description: A minimal, responsive WordPress theme for Legacy FC.
Version: 1.0.10
Requires at least: 6.5
Requires PHP: 8.1
Text Domain: legacyfc-2026
*/

:root {
  --lfc-red: #c61f2f;
  --lfc-black: #121214;
  --lfc-gray-900: #28282c;
  --lfc-gray-600: #68686f;
  --lfc-gray-200: #dedee3;
  --lfc-gray-100: #f4f4f6;
  --lfc-white: #fff;
  --lfc-menu-background: whitesmoke;
  --lfc-content: 1280px;
  --lfc-reading: 1280px;
  --lfc-radius: 18px;
  --lfc-shadow: 0 16px 45px rgba(18, 18, 20, 0.07);
}

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

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  min-height: 100vh;
  margin: 0;
  color: var(--lfc-black);
  background: #171719;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Keep the WordPress block-editor canvas separate from the public footer surface. */
.editor-styles-wrapper {
  color: var(--lfc-black);
  background: var(--lfc-white);
}

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

a {
  color: var(--lfc-red);
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: var(--lfc-black);
}

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

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

p {
  margin-top: 0;
}

main {
  flex: 0 0 auto;
  background: var(--lfc-white);
}

.site-container {
  width: min(calc(100% - 48px), var(--lfc-content));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--lfc-white);
  background: var(--lfc-black);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 100;
  background: var(--lfc-white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home .site-header {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.single-post .site-header,
.single-lfc_event .site-header {
  background: var(--lfc-white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-branding {
  display: flex;
  position: relative;
  flex: 0 0 98px;
  min-width: 0;
  align-self: stretch;
  align-items: center;
}

.custom-logo-link {
  display: flex;
  position: absolute;
  top: 8px;
  left: 0;
  z-index: 2;
}

.custom-logo {
  width: 98px;
  height: 98px;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

@media (min-width: 761px) {
  .custom-logo-link {
    top: 20px;
  }
}

.site-title {
  color: var(--lfc-black);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.primary-navigation {
  margin-left: auto;
}

.primary-menu,
.footer-menu {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
  list-style: none;
}

.primary-menu a {
  display: block;
  padding: 9px 0;
  color: var(--lfc-gray-900);
  font-size: 0.92rem;
  font-weight: 550;
  text-decoration: none;
}

.primary-menu a:hover,
.primary-menu a:focus-visible,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
  color: var(--lfc-red);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  color: var(--lfc-black);
  background: transparent;
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.home-intro,
.page-intro {
  padding: clamp(72px, 10vw, 132px) 0;
  background: var(--lfc-white);
}

.home-intro__content,
.page-intro__content {
  width: min(100%, 900px);
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--lfc-red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-intro h1,
.page-intro h1 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  font-weight: 650;
}

.home-intro__description,
.page-intro__description {
  width: min(100%, 720px);
  margin: 0 auto;
  color: var(--lfc-gray-600);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.page-intro {
  padding: clamp(44px, 4.5vw, 58px) 0 clamp(76px, 9vw, 112px);
  background: var(--lfc-white);
}

.single-article-header {
  padding-bottom: clamp(48px, 6vw, 74px);
  background: var(--lfc-white);
}

.page-intro__content {
  width: min(100%, 860px);
}

.page-intro h1 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 4rem);
}

.page-intro__description {
  width: min(100%, 760px);
  margin-top: 22px;
  color: var(--lfc-gray-900);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.5;
}

/*
 * Homepage hero
 *
 * Mirrors the clean, typography-led hero used on build.lfcwv.net while
 * keeping the remaining page and archive header styles independent.
 */
.home-hero {
  width: min(calc(100% - 48px), var(--lfc-content));
  margin-inline: auto;
  padding: clamp(44px, 4.5vw, 58px) 0 28px;
  background: #fff;
}

.home-hero .page-intro__content {
  width: min(100%, 930px);
}

.home-hero .eyebrow {
  margin-bottom: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.home-hero h1 {
  margin-bottom: 0;
  font-size: clamp(3.5rem, 7vw, 5.6rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.home-hero .page-intro__description {
  width: min(100%, 780px);
  margin-top: 28px;
  color: #424245;
  font-size: clamp(1.08rem, 1.8vw, 1.44rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.45;
}

.home-news {
  padding: 16px 0 32px;
  background: var(--lfc-white);
}

.home-news__slider {
  background: transparent;
}

.home-news__viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.home-news__track {
  display: flex;
  gap: 14px;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.home-news__track.is-underfilled {
  justify-content: center;
}

.home-news__card {
  display: flex;
  min-width: 0;
  flex: 0 0 calc((100% - 42px) / 4);
}

.home-news__card-link {
  display: flex;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 20px;
  color: var(--lfc-black);
  background: #f5f5f7;
  flex-direction: column;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.home-news__card-link:hover,
.home-news__card-link:focus-visible {
  color: var(--lfc-black);
  border-color: rgba(198, 31, 47, 0.3);
  background: #f0f0f2;
}

.home-news__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--lfc-gray-100);
}

.home-news__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-news__content {
  display: flex;
  min-height: 96px;
  padding: 18px 16px 20px;
  align-items: center;
  justify-content: center;
  flex: 1;
  flex-direction: column;
  text-align: center;
}

.home-news__content time {
  display: block;
  color: var(--lfc-red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-news__content h3 {
  margin: 0;
  font-size: clamp(1.18rem, 1.35vw, 1.42rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.home-events {
  padding: 0;
  background: var(--lfc-white);
}

.home-events__slider {
  background: transparent;
}

.home-events__viewport {
  overflow: hidden;
  touch-action: pan-y;
  transition: height 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-events__track {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 20px;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.home-events__card {
  display: flex;
  min-width: 0;
  flex: 0 0 calc((100% - 80px) / 6);
}

@media (min-width: 901px) {
  .home-events__track {
    width: calc(83.333333% - 2.666667px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .home-events__card {
    flex: none;
    grid-column-end: span 2;
  }
}

.home-events__card-link {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 174px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 16px;
  color: var(--lfc-black);
  background: #f5f5f7;
  flex-direction: column;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.home-events__card-link:hover,
.home-events__card-link:focus-visible {
  color: var(--lfc-black);
  border-color: rgba(198, 31, 47, 0.3);
  background: #f0f0f2;
}

.home-events__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--lfc-gray-100);
}

.home-events__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-events__content {
  display: flex;
  min-height: 68px;
  padding: 12px 10px 14px;
  color: var(--lfc-black);
  background: var(--lfc-gray-100);
  align-items: center;
  justify-content: center;
  flex: 1;
  flex-direction: column;
  text-align: center;
  transition: background-color 180ms ease;
}

.home-events__card-link:hover .home-events__content,
.home-events__card-link:focus-visible .home-events__content {
  background: #ececef;
}

.home-events__content h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.home-section-link {
  display: none;
}

.home-affiliations {
  padding: clamp(48px, 4.5vw, 56px) 0;
  background: var(--lfc-white);
}

.home-affiliations__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6vw, 84px);
}

.home-affiliations__group {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
}

.home-affiliations__title {
  margin: 0;
  color: var(--lfc-gray-600);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.home-affiliations__logos {
  display: flex;
  align-items: center;
  gap: clamp(30px, 4vw, 54px);
}

.home-affiliations__logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.home-affiliations__logos a:hover,
.home-affiliations__logos a:focus-visible {
  opacity: 0.78;
  transform: translateY(-2px);
}

.home-affiliations__logo {
  height: clamp(46px, 5vw, 68px);
  max-width: clamp(120px, 12vw, 190px);
  width: auto;
  display: block;
  object-fit: contain;
}

.home-affiliations__logo--wvsa {
  height: clamp(58px, 5.5vw, 76px);
}

.home-affiliations__logo--usys {
  height: clamp(42px, 4.2vw, 56px);
}

.home-affiliations__logo--ymca {
  height: clamp(38px, 3.8vw, 50px);
}

.content-section,
.posts-section {
  padding: clamp(52px, 7vw, 92px) 0;
}

.posts-section {
  background: var(--lfc-white);
}

body:not(.home) .content-section,
body:not(.home) .posts-section {
  background: var(--lfc-gray-100);
}

.entry-content {
  width: min(100%, var(--lfc-reading));
  margin-inline: auto;
}

.about-page__content {
  width: min(calc(100% - 48px), 760px);
  color: var(--lfc-gray-900);
  font-size: clamp(1.04rem, 1.25vw, 1.16rem);
  line-height: 1.75;
  text-align: left;
}

.about-page__content h2 {
  margin: 2.15em 0 0.65em;
  color: var(--lfc-black);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.12;
}

.about-page__content > h2:first-child {
  margin-top: 0;
}

.about-page__content h3 {
  margin-bottom: 0.6em;
  color: var(--lfc-black);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
}

.about-page__content p,
.about-page__content ul,
.about-page__content ol {
  margin-bottom: 1.5em;
}

.about-page__content ul,
.about-page__content ol {
  padding-left: 0;
  list-style-position: inside;
}

.about-page__content li + li {
  margin-top: 0.55em;
}

.about-page__content blockquote {
  margin: 2em 0;
  padding: 0 0 0 22px;
  border-left: 3px solid var(--lfc-red);
  color: var(--lfc-gray-600);
}

.about-page__feature {
  margin: clamp(36px, 5vw, 56px) 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--lfc-black);
}

.about-page__feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  object-position: center 46%;
}

.single-news-content__inner .entry-content {
  width: 100%;
}

.single-news-content {
  padding-bottom: clamp(40px, 5vw, 64px);
  background: var(--lfc-gray-100);
}

.single-news-content__inner.has-featured-image {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(260px, 400px);
  align-items: start;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 72px);
}

.single-news-content__article {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  min-width: 0;
}

.single-news-content__image {
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 16 / 10;
  margin: 0;
  justify-self: end;
  border-radius: 20px;
  background: var(--lfc-gray-100);
}

.single-news-content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-breadcrumbs {
  margin: 0 0 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--lfc-gray-200);
  color: var(--lfc-gray-600);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.4;
}

.article-breadcrumbs ol {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.article-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.article-breadcrumbs li + li::before {
  color: #aeaeb2;
  content: "/";
  font-weight: 400;
}

.article-breadcrumbs a {
  color: var(--lfc-gray-600);
  text-decoration: none;
}

.article-breadcrumbs a:hover,
.article-breadcrumbs a:focus-visible {
  color: var(--lfc-red);
}

.article-breadcrumbs [aria-current="page"] {
  color: var(--lfc-black);
}

.article-meta-row {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 28px auto 0;
  padding: 10px 14px;
  border-top: 1px solid var(--lfc-gray-200);
  border-bottom: 1px solid var(--lfc-gray-200);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.article-meta-row--header .article-sharing {
  justify-content: center;
}

.page-intro .article-meta-row,
.page-intro .page-header-meta {
  padding-top: 16px;
  border-top: 1px solid var(--lfc-gray-200);
  border-bottom: 0;
}

.page-header-meta {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 28px auto 0;
  padding: 10px 16px;
  border-top: 1px solid var(--lfc-gray-200);
  border-bottom: 1px solid var(--lfc-gray-200);
  color: var(--lfc-gray-600);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.4;
}

.page-header-meta__separator {
  color: var(--lfc-red);
}

.page-header-meta a {
  color: var(--lfc-black);
  text-decoration-color: rgba(198, 31, 47, 0.35);
  text-underline-offset: 3px;
}

.page-header-meta a:hover,
.page-header-meta a:focus-visible {
  color: var(--lfc-red);
}

.article-meta-row--after-breadcrumb {
  width: 100%;
  margin: 0 0 clamp(34px, 4vw, 48px);
}

.event-post-details {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  margin: 0 0 clamp(34px, 4vw, 48px);
  color: var(--lfc-black);
  gap: 8px 10px;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.event-post-details__item {
  display: contents;
}

.event-post-details__label {
  color: var(--lfc-red);
  text-align: right;
}

.event-post-details__item > :not(.event-post-details__label) {
  text-align: left;
}

.event-post-details a {
  color: var(--lfc-black);
  text-decoration-color: rgba(198, 31, 47, 0.35);
  text-underline-offset: 3px;
}

.event-post-details a:hover,
.event-post-details a:focus-visible {
  color: var(--lfc-red);
}

.article-published {
  display: flex;
  color: var(--lfc-gray-600);
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-published time {
  color: var(--lfc-gray-600);
}

.article-published__label {
  color: var(--lfc-red);
}

.article-published--after-share {
  margin-bottom: clamp(28px, 3vw, 38px);
}

.article-sharing {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.article-sharing__label {
  margin-right: 2px;
  color: var(--lfc-red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-sharing__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.article-sharing__actions a,
.article-sharing__actions button {
  display: inline-flex;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--lfc-gray-200);
  border-radius: 999px;
  color: var(--lfc-black);
  background: var(--lfc-white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.article-sharing__actions a:hover,
.article-sharing__actions a:focus-visible,
.article-sharing__actions button:hover,
.article-sharing__actions button:focus-visible {
  border-color: rgba(198, 31, 47, 0.45);
  color: var(--lfc-red);
  background: var(--lfc-menu-background);
}

.article-related {
  --article-related-padding: clamp(52px, 6vw, 78px);
  --article-related-gap: clamp(44px, 5.8vw, 76px);
  --article-related-half-gap: clamp(22px, 2.9vw, 38px);
  overflow: hidden;
  position: relative;
  padding: var(--article-related-padding) 0;
  background: var(--lfc-gray-100);
}

.article-related::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 48px), var(--lfc-content));
  height: 1px;
  background: var(--lfc-gray-200);
  content: "";
  transform: translateX(-50%);
}

.article-related__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  align-items: stretch;
  gap: var(--article-related-gap);
}

.article-related__grid--event .article-related__events {
  order: 1;
}

.article-related__grid--event .article-related__news {
  order: 2;
}

.article-related__section {
  position: relative;
}

.article-related__section::before {
  display: none;
}

.article-related__events h2 {
  color: var(--lfc-black);
}

.article-related__section h2 {
  margin-bottom: 24px;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.article-related__news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article-related__grid--event .article-related__news-grid {
  grid-template-columns: 1fr;
}

.article-related__grid--event .article-related__news-grid .post-card__link {
  display: grid;
  min-height: 112px;
  grid-template-columns: 112px minmax(0, 1fr);
}

.article-related__grid--event .article-related__news-grid .post-card__image {
  height: 100%;
  aspect-ratio: auto;
}

.article-related__grid--event .article-related__news-grid .post-card__content {
  min-height: 112px;
  padding: 16px;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.article-related__news-grid .post-card__link {
  min-height: 250px;
  background: var(--lfc-white);
}

.article-related__news-grid .post-card__content {
  min-height: 108px;
  padding: 18px 14px 20px;
}

.article-related__news-grid .post-card h2 {
  margin-top: 10px;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.article-related__event-list {
  display: grid;
  gap: 14px;
}

.article-related__grid--event .article-related__event-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 761px) {
  .article-related__grid:not(.article-related__grid--event) .article-related__news-grid > :nth-child(n + 4),
  .article-related__grid--event .article-related__event-list > :nth-child(n + 4) {
    display: none;
  }
}

.article-related__empty {
  min-height: 112px;
  padding: 24px;
  border-radius: 18px;
  margin: 0;
  color: var(--lfc-gray-600);
  background: var(--lfc-white);
  font-size: 0.9rem;
  line-height: 1.5;
}

.article-related__grid--event .article-related__empty {
  display: flex;
  min-height: 250px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 1.8em;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
  margin-bottom: 1.35em;
}

.entry-content .alignwide {
  width: min(100vw - 48px, var(--lfc-content));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.entry-content .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.featured-image {
  overflow: hidden;
  width: min(calc(100% - 48px), var(--lfc-content));
  margin: 0 auto clamp(48px, 6vw, 78px);
  border-radius: var(--lfc-radius);
  box-shadow: var(--lfc-shadow);
}

.featured-image img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.posts-heading {
  margin-bottom: 32px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

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

.post-card {
  display: flex;
  min-width: 0;
}

.post-card__link {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 292px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 20px;
  color: var(--lfc-black);
  background: var(--lfc-menu-background);
  flex-direction: column;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.post-card__link:hover,
.post-card__link:focus-visible {
  color: var(--lfc-black);
  border-color: rgba(198, 31, 47, 0.3);
  background: #f0f0f2;
}

.post-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--lfc-gray-100);
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__image--fallback {
  display: grid;
  padding: 24px;
  background: linear-gradient(145deg, #ececef, #f7f7f8);
  place-items: center;
}

.post-card__image--fallback img {
  width: auto;
  height: 72%;
  object-fit: contain;
}

.post-card__content {
  display: flex;
  min-height: 128px;
  padding: 22px 20px 24px;
  align-items: center;
  flex: 1;
  flex-direction: column;
  text-align: center;
}

.post-card time {
  display: block;
  color: var(--lfc-red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.post-card h2 {
  margin: 15px 0 0;
  font-size: clamp(1.18rem, 1.35vw, 1.42rem);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.post-card--news h2 {
  margin-top: 0;
}

.post-card--news .post-card__link {
  min-height: 0;
}

.post-card--news .post-card__content {
  min-height: 96px;
  padding: 18px 16px 20px;
  justify-content: center;
}

.entry-meta {
  display: block;
  margin-bottom: 10px;
  color: var(--lfc-gray-600);
  font-size: 0.8rem;
}

.archive-hero {
  padding: clamp(44px, 4.5vw, 58px) 0 clamp(76px, 9vw, 112px);
  background: var(--lfc-white);
}

.archive-hero__content {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.archive-hero h1 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 650;
}

.archive-hero__description {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--lfc-gray-900);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.5;
}

.archive-hero__description > *:last-child {
  margin-bottom: 0;
}

.archive-content {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--lfc-gray-100);
}

body.category-news .archive-hero {
  padding-bottom: clamp(64px, 7vw, 88px);
}

body.category-news .archive-content {
  padding-top: clamp(44px, 5vw, 64px);
}

body.post-type-archive-lfc_event .archive-hero {
  padding-bottom: clamp(64px, 7vw, 88px);
}

body.post-type-archive-lfc_event .archive-content {
  padding-top: clamp(44px, 5vw, 64px);
}

body.post-type-archive-lfc_venue .archive-hero {
  padding-bottom: clamp(64px, 7vw, 88px);
}

body.post-type-archive-lfc_venue .archive-content {
  padding-top: clamp(44px, 5vw, 64px);
}

.archive-content .archive-card__link,
.archive-content .post-card__link,
.venue-content .archive-card__link,
body:not(.home) .posts-section .post-card__link {
  background: var(--lfc-white);
}

.archive-content .pagination .page-numbers,
.venue-content .pagination .page-numbers,
body:not(.home) .posts-section .pagination .page-numbers {
  background: var(--lfc-white);
}

.archive-content .pagination .current,
.archive-content .pagination a:hover,
.venue-content .pagination .current,
.venue-content .pagination a:hover,
body:not(.home) .posts-section .pagination .current,
body:not(.home) .posts-section .pagination a:hover {
  color: var(--lfc-white);
  background: var(--lfc-red);
}

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

@media (min-width: 901px) {
  .archive-grid.archive-grid--post-list {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .archive-grid.archive-grid--lfc_event {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .archive-grid.archive-grid--lfc_venue {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .archive-grid--post-list .post-card {
    grid-column: span 2;
  }

  .archive-grid--lfc_event .archive-card {
    grid-column: span 2;
  }

  .archive-grid--lfc_venue .archive-card {
    grid-column: span 2;
  }

  .archive-grid--post-list .post-card:nth-child(4n + 1):last-child {
    grid-column: 4 / span 2;
  }

  .archive-grid--post-list .post-card:nth-child(4n + 1):nth-last-child(2) {
    grid-column: 3 / span 2;
  }

  .archive-grid--post-list .post-card:nth-child(4n + 1):nth-last-child(3) {
    grid-column: 2 / span 2;
  }

  .archive-grid--lfc_event .archive-card:nth-child(4n + 1):last-child {
    grid-column: 4 / span 2;
  }

  .archive-grid--lfc_event .archive-card:nth-child(4n + 1):nth-last-child(2) {
    grid-column: 3 / span 2;
  }

  .archive-grid--lfc_event .archive-card:nth-child(4n + 1):nth-last-child(3) {
    grid-column: 2 / span 2;
  }

  .archive-grid--lfc_venue .archive-card:nth-child(4n + 1):last-child {
    grid-column: 4 / span 2;
  }

  .archive-grid--lfc_venue .archive-card:nth-child(4n + 1):nth-last-child(2) {
    grid-column: 3 / span 2;
  }

  .archive-grid--lfc_venue .archive-card:nth-child(4n + 1):nth-last-child(3) {
    grid-column: 2 / span 2;
  }
}

.archive-grid--post-list .post-card h2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.archive-grid--lfc_event .archive-card h2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.archive-card {
  display: flex;
  min-width: 0;
}

.archive-card__link {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 292px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 20px;
  color: var(--lfc-black);
  background: var(--lfc-menu-background);
  flex-direction: column;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.archive-card__link:hover,
.archive-card__link:focus-visible {
  color: var(--lfc-black);
  border-color: rgba(198, 31, 47, 0.3);
  background: #f0f0f2;
}

.archive-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--lfc-gray-100);
}

.archive-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-card__image--fallback {
  display: grid;
  padding: 24px;
  background: linear-gradient(145deg, #ececef, #f7f7f8);
  place-items: center;
}

.archive-card__image--fallback img {
  width: auto;
  height: 72%;
  object-fit: contain;
}

.archive-card__content {
  display: flex;
  min-height: 128px;
  padding: 22px 20px 24px;
  align-items: center;
  flex: 1;
  flex-direction: column;
  text-align: center;
}

.archive-card--no-image .archive-card__content {
  justify-content: center;
}

.archive-card__meta {
  display: flex;
  min-height: 1rem;
  color: var(--lfc-red);
  align-items: center;
  flex-direction: column;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-transform: uppercase;
}

.archive-card__meta span + span,
.archive-card__meta time + span {
  margin-top: 3px;
  color: var(--lfc-gray-600);
  font-weight: 550;
  letter-spacing: 0;
  text-transform: none;
}

.archive-card h2 {
  margin: 15px 0 0;
  font-size: clamp(1.18rem, 1.35vw, 1.42rem);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.archive-card--news h2 {
  margin-top: 0;
}

.archive-card--news .archive-card__link {
  min-height: 0;
}

.archive-card--news .archive-card__content {
  min-height: 96px;
  padding: 18px 16px 20px;
  justify-content: center;
}

.archive-card--lfc_event .archive-card__link {
  min-height: 0;
}

.archive-card--lfc_event .archive-card__content {
  min-height: 96px;
  padding: 18px 16px 20px;
  justify-content: center;
  background: var(--lfc-white);
  transition: background-color 180ms ease;
}

.archive-card--lfc_event h2 {
  margin-top: 0;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.archive-grid--lfc_venue .archive-card__link {
  min-height: 0;
}

.archive-grid--lfc_venue .archive-card__content {
  min-height: 96px;
  padding: 18px 16px 20px;
  justify-content: center;
}

.archive-card--lfc_event .archive-card__link:hover .archive-card__content,
.archive-card--lfc_event .archive-card__link:focus-visible .archive-card__content {
  background: #f7f7f8;
}

body.single-post .article-related__event-list .archive-card:not(.archive-card--no-image) .archive-card__link {
  display: grid;
  min-height: 112px;
  grid-template-columns: 112px minmax(0, 1fr);
  grid-template-rows: 1fr;
}

body.single-post .article-related__event-list .archive-card:not(.archive-card--no-image) .archive-card__image {
  width: 112px;
  height: 100%;
  aspect-ratio: auto;
  grid-column: 1;
  grid-row: 1;
}

body.single-post .article-related__event-list .archive-card:not(.archive-card--no-image) .archive-card__content {
  min-height: 70px;
  padding: 16px;
  align-items: flex-start;
  grid-column: 2;
  grid-row: 1;
  text-align: left;
}

body.single-post .article-related__event-list .archive-card h2 {
  font-size: clamp(1rem, 1.15vw, 1.16rem);
}

.archive-content .empty-state h2 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.archive-content .empty-state p {
  margin-bottom: 0;
  color: var(--lfc-gray-600);
}

.venue-content__description + .venue-places,
.venue-content__description + .venue-schedule {
  margin-top: clamp(48px, 6vw, 72px);
}

.venue-section-label {
  margin: 0 0 22px;
  color: var(--lfc-gray-600);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 901px) {
  .venue-places__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .venue-places__grid .archive-card {
    grid-column: span 2;
  }

  .venue-places__grid .archive-card:nth-child(6n + 1):last-child {
    grid-column: 6 / span 2;
  }

  .venue-places__grid .archive-card:nth-child(6n + 1):nth-last-child(2) {
    grid-column: 5 / span 2;
  }

  .venue-places__grid .archive-card:nth-child(6n + 1):nth-last-child(3) {
    grid-column: 4 / span 2;
  }

  .venue-places__grid .archive-card:nth-child(6n + 1):nth-last-child(4) {
    grid-column: 3 / span 2;
  }

  .venue-places__grid .archive-card:nth-child(6n + 1):nth-last-child(5) {
    grid-column: 2 / span 2;
  }
}

.venue-places__grid .archive-card__link {
  min-height: 0;
}

.venue-places__grid .archive-card__content {
  min-height: 76px;
  padding: 14px;
  justify-content: center;
  text-align: center;
}

.venue-places__grid .archive-card h2 {
  width: 100%;
  margin-top: 0;
  text-align: center;
}

.venue-places + .venue-schedule {
  margin-top: clamp(40px, 5vw, 60px);
}

.venue-schedule .empty-state p {
  margin-bottom: 0;
  color: var(--lfc-gray-600);
}

.pagination {
  margin-top: 48px;
}

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

.pagination .page-numbers {
  display: grid;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  place-items: center;
  border-radius: 50%;
  color: var(--lfc-black);
  background: var(--lfc-gray-100);
  text-decoration: none;
}

.pagination .current,
.pagination a:hover {
  color: var(--lfc-white);
  background: var(--lfc-red);
}

.site-footer {
  flex: 1 0 auto;
  color: rgba(255, 255, 255, 0.7);
  background: #171719;
}

.site-footer__inner {
  padding: 82px 0 28px;
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.site-footer__brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 20px;
}

.site-footer__logo {
  flex: 0 0 auto;
}

.site-footer__logo img {
  width: 66px;
  max-height: 76px;
  object-fit: contain;
}

.site-footer__name {
  margin: 0 0 4px;
  color: var(--lfc-white);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer__address {
  margin: 0;
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.6;
}

.site-footer__statement {
  margin: 0;
  color: var(--lfc-white);
  font-size: clamp(2.3rem, 4.3vw, 3.45rem);
  font-weight: 650;
  text-align: right;
}

.site-footer__navigation {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 56px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__menu-nav {
  min-width: 0;
  flex: 1;
}

.footer-menu {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 18px 32px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
  color: #ff6c79;
}

.site-footer__social {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__social-link {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--lfc-white);
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.site-footer__social-link .dashicons {
  width: auto;
  height: auto;
  font-size: 23px;
  line-height: 1;
}

.site-footer__x-mark {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  border-color: var(--lfc-red);
  color: var(--lfc-white);
  background: var(--lfc-red);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.empty-state {
  padding: 56px;
  border-radius: var(--lfc-radius);
  text-align: center;
  background: var(--lfc-gray-100);
}

@media (max-width: 900px) {
  .home-news__card {
    flex-basis: calc((100% - 14px) / 2);
  }

  .home-events__card {
    flex-basis: calc((100% - 32px) / 3);
  }

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

  .archive-grid.archive-grid--post-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .archive-grid--post-list .post-card {
    grid-column: span 2;
  }

  .archive-grid--lfc_event .archive-card {
    grid-column: span 2;
  }

  .archive-grid--lfc_venue .archive-card {
    grid-column: span 2;
  }

  .archive-grid--post-list .post-card:last-child:nth-child(odd) {
    grid-column: 2 / span 2;
  }

  .archive-grid--lfc_event .archive-card:last-child:nth-child(odd) {
    grid-column: 2 / span 2;
  }

  .archive-grid--lfc_venue .archive-card:last-child:nth-child(odd) {
    grid-column: 2 / span 2;
  }

  .venue-places__grid .archive-card:last-child:nth-child(odd) {
    width: calc((100% - 12px) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .article-related__grid {
    grid-template-columns: 1fr;
  }

  .article-related__news::before {
    right: -100vw;
    bottom: calc(0px - var(--article-related-half-gap));
  }

  .article-related__events::before {
    top: calc(0px - var(--article-related-half-gap));
    left: -100vw;
  }

  .article-related__grid--event .article-related__event-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .site-container {
    width: min(calc(100% - 32px), var(--lfc-content));
  }

  .article-related::before {
    width: min(calc(100% - 32px), var(--lfc-content));
  }

  .site-header__inner {
    min-height: 68px;
  }

  .custom-logo {
    width: 78px;
    height: 78px;
  }

  .site-branding {
    flex-basis: 78px;
  }

  .custom-logo-link {
    top: 13px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .primary-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 10px 16px 20px;
    border-bottom: 1px solid var(--lfc-gray-200);
    background: var(--lfc-white);
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-menu {
    display: block;
  }

  .primary-menu a {
    padding: 12px 8px;
    border-bottom: 1px solid var(--lfc-gray-100);
    font-size: 1rem;
  }

  .home-intro {
    padding-block: 64px;
  }

  .page-intro,
  .archive-hero {
    padding-top: 44px;
    padding-bottom: 64px;
  }

  .single-article-header {
    padding-bottom: 48px;
  }

  .home-hero {
    width: min(calc(100% - 48px), var(--lfc-content));
    padding-top: 44px;
    padding-bottom: 24px;
  }

  .home-hero h1 {
    font-size: clamp(3.4rem, 14vw, 4.6rem);
  }

  .home-hero .page-intro__description {
    margin-top: 22px;
  }

  .home-news {
    padding: 16px 0 56px;
  }

  .home-news__track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    transform: none !important;
  }

  .home-news__card {
    min-width: 0;
  }

  .home-news__card:nth-child(n + 5) {
    display: none;
  }

  .home-news__card:last-child:nth-child(odd) {
    width: calc((100% - 12px) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .home-news__card-link {
    min-height: 0;
  }

  .home-news__content {
    min-height: 60px;
    padding: 10px 8px 12px;
  }

  .home-news__content time {
    font-size: 0.62rem;
  }

  .home-news__content h3 {
    margin-top: 0;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.2;
  }

  .home-section-link {
    display: block;
    margin-top: 20px;
    margin-bottom: 0;
    text-align: center;
  }

  .home-section-link a {
    color: var(--lfc-red);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .home-section-link a:hover,
  .home-section-link a:focus-visible {
    color: var(--lfc-black);
    text-decoration: underline;
    text-underline-offset: 0.24em;
  }

  .home-events {
    padding: 56px 0;
    background: var(--lfc-gray-100);
  }

  .home-events__viewport {
    height: auto !important;
    overflow: visible;
  }

  .home-events__track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    transform: none !important;
  }

  .home-events__card {
    min-width: 0;
  }

  .home-events__card:nth-child(n + 5) {
    display: none;
  }

  .home-events__card:last-child:nth-child(odd) {
    width: calc((100% - 12px) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .home-events__card-link {
    min-height: 0;
    background: var(--lfc-white);
  }

  .home-events__content {
    min-height: 64px;
    padding: 11px 8px 13px;
    background: var(--lfc-white);
  }

  .home-events__card-link:hover .home-events__content,
  .home-events__card-link:focus-visible .home-events__content {
    background: var(--lfc-white);
  }

  .home-events__content h3 {
    margin-top: 0;
    font-size: 0.84rem;
  }

  .home-intro h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .single-news-content__inner.has-featured-image {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .single-news-content__article {
    grid-row: 2;
  }

  .single-news-content__image {
    grid-row: 1;
    aspect-ratio: 16 / 9;
    justify-self: center;
  }

  .article-published--after-share {
    justify-content: center;
    text-align: center;
  }

  .home-affiliations {
    padding: 52px 0;
  }

  .home-affiliations__inner {
    flex-direction: column;
    gap: 30px;
  }

  .home-affiliations__group {
    flex-direction: column;
    gap: 16px;
  }

  .home-affiliations__logos {
    gap: 34px;
  }

  .home-affiliations__logo--wvsa {
    height: 62px;
  }

  .home-affiliations__logo--usys {
    height: 46px;
  }

  .home-affiliations__logo--ymca {
    height: 42px;
  }

  .article-breadcrumbs {
    text-align: center;
  }

  .article-breadcrumbs ol {
    justify-content: center;
  }

  .event-post-details {
    width: fit-content;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    row-gap: 12px;
  }

  .page-header-meta {
    flex-direction: column;
    gap: 9px;
  }

  .page-header-meta__separator {
    display: none;
  }

  .post-grid,
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .article-related__news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .article-related__section h2 {
    text-align: center;
  }

  .article-related__news-grid .post-card__link {
    min-height: 0;
  }

  .article-related__news-grid .post-card {
    width: 100%;
  }

  .article-related__event-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article-related__grid--event .article-related__event-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-card__link,
  .archive-card__link {
    min-height: 0;
  }

  .post-card__content,
  .archive-card__content {
    min-height: 116px;
    padding: 18px 12px 20px;
  }

  .post-card time,
  .archive-card__meta {
    font-size: 0.64rem;
  }

  .post-card h2,
  .archive-card h2 {
    margin-top: 10px;
    font-size: clamp(0.95rem, 4vw, 1.08rem);
    line-height: 1.15;
  }

  .post-card--news h2,
  .archive-card--news h2 {
    margin-top: 0;
  }

  .post-card--news .post-card__content,
  .archive-card--news .archive-card__content {
    min-height: 72px;
    padding: 12px 10px 14px;
  }

  .archive-card--lfc_event .archive-card__content {
    min-height: 64px;
    padding: 11px 8px 13px;
    background: var(--lfc-white);
  }

  .archive-card--lfc_event .archive-card__link:hover .archive-card__content,
  .archive-card--lfc_event .archive-card__link:focus-visible .archive-card__content {
    background: var(--lfc-white);
  }

  .site-footer__inner {
    padding: 56px 0 28px;
  }

  .site-footer__top {
    align-items: center;
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .site-footer__brand {
    justify-content: center;
    text-align: left;
  }

  .site-footer__statement {
    font-size: clamp(2.1rem, 11vw, 3rem);
    text-align: center;
  }

  .site-footer__navigation {
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
    padding: 22px 0;
  }

  .site-footer__menu-nav {
    width: 100%;
  }

  .footer-menu {
    justify-content: center;
    gap: 16px 24px;
  }

  .site-footer__bottom {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.home-programs {
  padding: clamp(72px, 8vw, 112px) 24px;
  background: var(--lfc-gray-100);
}

.home-programs__intro {
  width: min(100%, 780px);
  margin: 0 auto clamp(42px, 5vw, 64px);
  text-align: center;
}

.home-programs__intro .eyebrow {
  margin-bottom: 14px;
}

.home-programs__intro h2 {
  margin: 0;
  color: var(--lfc-black);
  font-size: clamp(2.5rem, 4.8vw, 4.6rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.home-programs__intro > p:last-child {
  margin: 24px auto 0;
  color: #515154;
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  letter-spacing: -0.01em;
  line-height: 1.55;
}

.home-programs__grid {
  width: min(100%, var(--lfc-content));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-programs__card {
  min-width: 0;
  padding: clamp(32px, 3.2vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 26px;
  text-align: center;
  background: #f1f1f3;
}

.home-programs__card--club {
  color: #fff;
  background: #c41230;
}

.home-programs__card--travel {
  color: #111;
  background: #dedee3;
}

.home-programs__card--select {
  color: #fff;
  background: #2c2c2e;
}

.home-programs__heading p {
  margin: 0 0 16px;
  color: var(--lfc-red);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.home-programs__card--club .home-programs__heading p {
  color: #f1c6cd;
}

.home-programs__card--select .home-programs__heading p {
  color: #ff3b5c;
}

.home-programs__heading h2,
.home-programs__heading h3 {
  margin: 0;
  color: currentColor;
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1;
}

.home-programs__heading a {
  color: inherit;
  text-decoration: none;
}

.home-programs__heading a:hover,
.home-programs__heading a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 0.05em;
  text-underline-offset: 0.12em;
}

.home-programs--archive {
  min-height: 40vh;
}

.archive-hero--lfc_program {
  padding-bottom: clamp(60px, 7vw, 88px);
}

.programs-page__programs {
  width: min(calc(100% - 48px), var(--lfc-content));
  margin: clamp(42px, 5vw, 64px) auto 0;
}

.programs-page__programs .home-programs__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.programs-page__programs .home-programs__card {
  width: calc((100% - 36px) / 3);
  flex: 0 1 calc((100% - 36px) / 3);
  overflow: hidden;
  align-items: stretch;
  padding: 0 0 clamp(28px, 3vw, 38px);
}

.programs-page__programs .home-programs__photo {
  aspect-ratio: 16 / 9;
  margin: 0;
  border-radius: 0;
}

.programs-page__programs .home-programs__heading {
  width: 100%;
  padding: clamp(26px, 3vw, 36px) clamp(24px, 3vw, 36px) 0;
  text-align: center;
}

.programs-page__programs .home-programs__summary {
  width: 100%;
  min-height: 0;
  margin: 17px auto 0;
  padding: 0 clamp(24px, 3vw, 36px);
  text-align: center;
}

.programs-age-groups {
  padding: clamp(72px, 8vw, 112px) 0;
  background: var(--lfc-gray-100);
}

.programs-age-groups__layout {
  display: block;
}

.programs-age-groups__intro {
  max-width: 780px;
  margin: 0 auto clamp(42px, 5vw, 64px);
  text-align: center;
}

.programs-age-groups__intro .eyebrow {
  margin-bottom: 15px;
}

.programs-age-groups__intro h2 {
  max-width: 620px;
  margin: 0 auto;
  color: var(--lfc-black);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.programs-age-groups__intro > p:last-child {
  max-width: 590px;
  margin: 24px auto 0;
  color: var(--lfc-gray-900);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.6;
}

.programs-age-groups__chart {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid #c7c7cc;
  border-left: 1px solid #c7c7cc;
}

.programs-age-groups__chart li {
  min-height: 138px;
  padding: 20px 14px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  border-right: 1px solid #c7c7cc;
  border-bottom: 1px solid #c7c7cc;
  background: var(--lfc-white);
  text-align: center;
}

.programs-age-groups__chart strong {
  color: var(--lfc-black);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1;
}

.programs-age-groups__chart .birthdate-ranges {
  display: grid;
  gap: 4px;
  color: var(--lfc-gray-900);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.programs-age-groups__chart .birthdate-ranges span {
  display: block;
}

.home-programs__summary {
  max-width: 30rem;
  min-height: 5.1em;
  margin: 22px auto 0;
  color: #515154;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.home-programs__card--club .home-programs__summary {
  color: #f8e3e7;
}

.home-programs__card--select .home-programs__summary {
  color: #d2d2d7;
}

.home-programs__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-top: 26px;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
}

.home-programs__card--club .home-programs__photo {
  object-position: center 48%;
}

.home-programs__card--select .home-programs__photo {
  object-position: 52% center;
}

.home-programs__caption {
  min-height: 4.3em;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #6e6e73;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.4;
}

.home-programs__card--club .home-programs__caption,
.home-programs__card--select .home-programs__caption {
  color: rgba(255, 255, 255, 0.76);
}

.home-programs__caption strong {
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.home-programs__action {
  margin: clamp(36px, 4vw, 52px) 0 0;
  text-align: center;
}

.home-programs__action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42em;
  min-height: 44px;
  padding: 11px 19px;
  border: 1px solid var(--lfc-red);
  border-radius: 999px;
  color: var(--lfc-white);
  background: var(--lfc-red);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.home-programs__action a:hover,
.home-programs__action a:focus-visible {
  border-color: #a80d21;
  background: #a80d21;
}

.home-programs--compact {
  padding-top: clamp(56px, 6vw, 72px);
  padding-bottom: clamp(56px, 6vw, 72px);
}

.home-programs__compact-inner {
  width: min(100%, 780px);
  margin-inline: auto;
  text-align: center;
}

.home-programs--compact .home-programs__intro {
  width: 100%;
  margin: 0;
  text-align: center;
}

.home-programs--compact .home-programs__intro h2,
.home-contact--compact .home-contact__copy h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.home-programs--compact .home-programs__intro > p:last-child {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.home-programs--compact .home-programs__action {
  margin: 30px 0 0;
}

.home-contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(500px, 55vw, 680px);
  display: flex;
  align-items: center;
  padding: clamp(82px, 10vw, 140px) 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #151516;
}

.home-contact::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: var(--contact-background-image, url("assets/images/legacy-way-field.jpg")) center 52% / cover no-repeat;
  content: "";
}

.home-contact::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 11, 0.9) 0%, rgba(13, 13, 14, 0.76) 42%, rgba(13, 13, 14, 0.42) 72%, rgba(13, 13, 14, 0.3) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
  content: "";
}

.home-contact__row {
  width: min(100%, var(--lfc-content));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: clamp(54px, 7vw, 104px);
  align-items: center;
}

.home-contact__copy {
  max-width: 760px;
  color: var(--lfc-white);
}

.home-contact__copy h2 {
  max-width: 660px;
  margin: 0;
  color: var(--lfc-white);
  font-size: clamp(3rem, 4.8vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.home-contact__copy p {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.6;
}

.home-contact__form {
  display: grid;
  gap: 20px;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 26px;
  color: var(--lfc-black);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.home-contact__form-heading h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.home-contact__form-heading p {
  margin: 10px 0 0;
  color: #626266;
  font-size: 0.98rem;
  line-height: 1.5;
}

.home-contact__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-contact__form label {
  display: grid;
  gap: 8px;
  color: #3a3a3c;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.home-contact__form input,
.home-contact__form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #c7c7cc;
  border-radius: 10px;
  color: var(--lfc-black);
  background: var(--lfc-white);
  font: 400 1rem/1.35 -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  text-transform: none;
}

.home-contact__form textarea {
  min-height: 96px;
  resize: vertical;
}

.legacyfc-contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.home-contact__form .home-contact__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #626266;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.home-contact__form .home-contact__consent input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  padding: 0;
  flex: 0 0 18px;
}

.home-contact__form .cf-turnstile {
  min-height: 65px;
}

.home-contact__form input:focus,
.home-contact__form textarea:focus {
  border-color: var(--lfc-red);
  outline: 2px solid var(--lfc-red);
  outline-offset: 1px;
}

.home-contact__form button {
  min-height: 50px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  color: var(--lfc-white);
  background: var(--lfc-red);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.home-contact__form button:hover,
.home-contact__form button:focus-visible {
  background: #a80d21;
}

.home-contact__form button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.home-contact__note,
.home-contact__status {
  min-height: 0;
  margin: 0;
  color: #77777c;
  font-size: 0.74rem;
  line-height: 1.45;
}

.home-contact__status {
  min-height: 1.1em;
  color: #8f0a1b;
  font-weight: 600;
}

.home-contact__status--success {
  color: #2f6337;
}

.home-contact__status--error {
  color: #8f0a1b;
}

.contact-page-form {
  min-height: 0;
  padding: clamp(72px, 8vw, 104px) 24px;
  border-top: 0;
  background: var(--lfc-gray-100);
}

.contact-page-form::before,
.contact-page-form::after {
  display: none;
}

.contact-page-form .home-contact__row {
  width: min(100%, 760px);
  display: block;
}

.contact-page-form .home-contact__form {
  padding: clamp(30px, 4vw, 46px);
  border-color: #d2d2d7;
  background: var(--lfc-white);
  box-shadow: none;
  backdrop-filter: none;
}

.contact-page-form .home-contact__form-heading {
  margin-bottom: 10px;
  text-align: center;
}

.contact-page-form .home-contact__form-heading h2 {
  margin: 0;
  color: var(--lfc-black);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.contact-page-form .home-contact__form-heading p {
  max-width: 560px;
  margin: 12px auto 0;
}

.home-contact--compact {
  min-height: 0;
  padding: clamp(56px, 6vw, 72px) 24px;
}

.home-contact__compact-inner {
  width: min(100%, 780px);
  margin-inline: auto;
}

.home-contact--compact .home-contact__copy {
  max-width: none;
  text-align: center;
}

.home-contact--compact .home-contact__copy > p:not(.home-contact__action) {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.55;
}

.home-contact__copy .home-contact__action {
  margin: 30px auto 0;
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: -0.005em;
  line-height: 1.4;
}

.home-contact__action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42em;
  min-height: 44px;
  padding: 11px 19px;
  border: 1px solid var(--lfc-red);
  border-radius: 999px;
  color: var(--lfc-white);
  background: var(--lfc-red);
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.home-contact__action a:hover,
.home-contact__action a:focus-visible {
  border-color: #a80d21;
  background: #a80d21;
}

.text-link__arrow {
  display: inline-block;
  transition: transform 180ms ease;
}

.home-section-link a:hover .text-link__arrow,
.home-section-link a:focus-visible .text-link__arrow,
.home-contact__action a:hover .text-link__arrow,
.home-contact__action a:focus-visible .text-link__arrow {
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .programs-age-groups__chart {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .about-page__content {
    width: min(calc(100% - 32px), 760px);
    font-size: 1rem;
  }

  .home-programs {
    padding: 64px 16px;
  }

  .home-programs--compact {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .programs-page__programs {
    width: min(calc(100% - 32px), var(--lfc-content));
    margin-top: 36px;
  }

  .programs-page__programs .home-programs__card {
    width: 100%;
    flex-basis: 100%;
  }

  .programs-age-groups {
    padding: 64px 0;
  }

  .programs-age-groups__chart {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .programs-age-groups__chart li {
    min-height: 132px;
    padding: 18px 10px;
  }

  .home-programs__intro {
    margin-bottom: 36px;
  }

  .home-programs__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-programs__card {
    padding: 28px 24px;
  }

  .home-programs__summary {
    min-height: 0;
  }

  .home-programs__photo {
    max-height: 300px;
  }

  .home-programs--compact .home-programs__intro {
    margin: 0;
    text-align: center;
  }

  .home-programs--compact .home-programs__intro > p:last-child {
    margin-right: auto;
    margin-left: auto;
  }

  .home-programs--compact .home-programs__action {
    text-align: center;
  }

  .home-contact {
    min-height: 520px;
    padding: 76px 24px;
  }

  .home-contact--compact {
    min-height: 0;
    padding: 56px 24px;
  }

  .home-contact::before {
    background-position: 58% center;
  }

  .home-contact::after {
    background: rgba(10, 10, 11, 0.76);
  }

  .home-contact__row {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .home-contact__copy {
    max-width: 100%;
    text-align: center;
  }

  .home-contact__copy h2,
  .home-contact__copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .home-contact__form {
    padding: 28px 24px;
    border-radius: 22px;
  }

  .home-contact__form-grid {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

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

.screen-reader-text:focus {
  z-index: 100000;
  top: 5px;
  left: 5px;
  display: block;
  width: auto;
  height: auto;
  padding: 15px 23px 14px;
  clip: auto;
  color: var(--lfc-black);
  background: var(--lfc-white);
  font-weight: 700;
}

body.lfc-homepage-editor-canvas {
  min-height: 100vh;
}
