:root {
  --wf-bg: #f4f0e7;
  --wf-paper: #fffaf0;
  --wf-ink: #071626;
  --wf-muted: #697382;
  --wf-line: rgba(7, 22, 38, .11);
  --wf-navy: #061525;
  --wf-green: #668c4a;
  --wf-green-deep: #416835;
  --wf-pink: #ef8f95;
  --wf-yellow: #f7d64e;
  --wf-lavender: #e9e7ff;
  --wf-blue: #dfe8ff;
  --wf-shadow: 0 24px 70px rgba(7, 22, 38, .14);
  --wf-shadow-soft: 0 12px 34px rgba(7, 22, 38, .09);
  --wf-radius-xl: 34px;
  --wf-radius-lg: 24px;
  --wf-radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(239, 143, 149, .18), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(102, 140, 74, .18), transparent 26%),
    linear-gradient(180deg, #f8f3ea 0%, #f1f4ef 100%);
  color: var(--wf-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  line-height: 1.52;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; letter-spacing: 0; }

.wf-shell {
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
}

.wf-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(6, 21, 37, .96);
  color: #fff;
  box-shadow: 0 12px 36px rgba(6, 21, 37, .18);
  backdrop-filter: blur(18px);
}

.wf-nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 74px;
  align-items: center;
  gap: 28px;
}

.wf-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 27px;
  font-weight: 950;
  white-space: nowrap;
}

.wf-brand-logo,
.wf-brand img,
.custom-logo {
  width: 62px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.wf-brand .custom-logo {
  width: 62px;
  height: 42px;
  object-fit: contain;
}

.wf-menu {
  justify-self: center;
}

.wf-menu-list,
.wf-footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wf-menu-list > li {
  position: relative;
}

.wf-menu a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, .92);
  font-size: 16px;
  font-weight: 900;
}

.wf-menu a:hover,
.wf-menu .current-menu-item > a {
  color: var(--wf-yellow);
}

.wf-menu .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 60;
  display: grid;
  min-width: 178px;
  gap: 4px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(7, 22, 38, .08);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 20px 45px rgba(6, 21, 37, .18);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  visibility: hidden;
}

.wf-menu .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.wf-menu .sub-menu a {
  min-height: 38px;
  justify-content: flex-start;
  padding: 0 12px;
  color: var(--wf-ink);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.wf-menu .sub-menu a:hover {
  background: #eff6dc;
  color: var(--wf-green-deep);
}

.wf-menu-list > li:hover > .sub-menu,
.wf-menu-list > li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.wf-header-search {
  justify-self: end;
  display: block;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,.86);
  border-radius: 999px;
  background: url("../img/icon-search.svg") center / 23px 23px no-repeat;
  filter: invert(1);
  opacity: .96;
}

.wf-menu-toggle,
.wf-menu-close {
  display: none;
  border: 0;
  cursor: pointer;
}

.wf-menu-toggle {
  width: 44px;
  height: 44px;
  align-content: center;
  justify-items: center;
  gap: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
}

.wf-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.wf-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f4f0e7;
  color: var(--wf-ink);
  font-size: 24px;
}

.wf-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(6, 21, 37, .48);
}

.wf-hero-collage {
  overflow: hidden;
  min-height: 560px;
  border-bottom: 1px solid rgba(7, 22, 38, .08);
  border-radius: 0 0 28px 28px;
  background: url("../img/hero-paper-bg.svg") center / cover no-repeat;
}

.wf-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 34px;
  width: min(1540px, calc(100% - 72px));
  min-height: 560px;
  margin: 0 auto;
  align-items: center;
}

.wf-hero-copy {
  position: relative;
  z-index: 3;
  padding: 42px 0 68px;
}

.wf-hand-note {
  position: relative;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
  color: var(--wf-green-deep);
  font-size: 20px;
  font-weight: 900;
  transform: rotate(-4deg);
}

.wf-hand-note::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -8px;
  bottom: -5px;
  height: 10px;
  border-radius: 999px;
  background: rgba(102, 140, 74, .34);
  z-index: -1;
}

.wf-hero-copy h1 {
  margin: 0;
  font-size: clamp(64px, 7.1vw, 104px);
  line-height: .96;
  font-weight: 950;
  letter-spacing: 0;
}

.wf-hero-copy p {
  max-width: 420px;
  margin: 25px 0 24px;
  color: #526070;
  font-size: 19px;
  font-weight: 650;
}

.wf-hero-search {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 6px;
  width: min(560px, 100%);
  min-height: 64px;
  align-items: center;
  padding: 7px;
  border: 1px solid rgba(7, 22, 38, .08);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(7, 22, 38, .14);
}

.wf-search-icon {
  width: 24px;
  height: 24px;
  margin-left: 14px;
}

.wf-hero-search input {
  min-width: 0;
  height: 48px;
  border: 0;
  background: transparent;
  color: var(--wf-ink);
  outline: none;
}

.wf-hero-search button,
.wf-filter-search button {
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--wf-green);
  color: #fff;
  cursor: pointer;
  font-weight: 950;
}

.wf-collage {
  position: relative;
  min-height: 500px;
}

.wf-collage-card {
  position: absolute;
  overflow: hidden;
  border: 10px solid rgba(255,255,255,.95);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--wf-shadow);
}

.wf-collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wf-collage-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  min-height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--wf-ink);
  font-size: 13px;
  font-weight: 950;
}

.wf-collage-1 {
  left: 12%;
  top: 14px;
  z-index: 4;
  width: 54%;
  height: 370px;
  transform: rotate(-3deg);
}

.wf-collage-2 {
  right: 6%;
  top: 2px;
  z-index: 2;
  width: 36%;
  height: 190px;
  transform: rotate(5deg);
}

.wf-collage-3 {
  left: 0;
  bottom: 36px;
  z-index: 5;
  width: 30%;
  height: 190px;
  transform: rotate(2deg);
}

.wf-collage-4 {
  right: 0;
  bottom: 6px;
  z-index: 6;
  width: 29%;
  height: 285px;
  border-radius: 26px;
  transform: rotate(5deg);
}

.wf-find-now {
  position: absolute;
  right: 5px;
  bottom: 18px;
  z-index: 10;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 999px;
  background: var(--wf-yellow);
  color: #172130;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  box-shadow: var(--wf-shadow-soft);
}

.wf-home-tabs {
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
  width: min(960px, calc(100% - 64px));
  margin-top: -34px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .82));
  box-shadow: 0 22px 60px rgba(7, 22, 38, .15);
  backdrop-filter: blur(18px);
}

.wf-home-tabs button {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 66px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 22px;
  background: transparent;
  color: #647084;
  cursor: pointer;
  font-weight: 950;
  text-align: center;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.wf-home-tabs button::before {
  content: "";
  position: absolute;
  inset: 9px auto auto 50%;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: translateX(-50%);
}

.wf-home-tabs button span,
.wf-home-tabs button small {
  position: relative;
  z-index: 1;
}

.wf-home-tabs button span {
  font-size: 17px;
  line-height: 1.15;
}

.wf-home-tabs button small {
  color: #8792a3;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

.wf-home-tabs button:hover {
  transform: translateY(-1px);
  background: rgba(7, 22, 38, .045);
}

.wf-home-tabs button.is-active {
  background:
    radial-gradient(circle at 18% 10%, rgba(247, 214, 78, .22), transparent 32%),
    linear-gradient(135deg, #061525, #10233a);
  color: #fff;
  box-shadow: 0 12px 28px rgba(6, 21, 37, .24);
}

.wf-home-tabs button.is-active::before {
  opacity: .65;
}

.wf-home-tabs button.is-active small {
  color: rgba(255, 255, 255, .72);
}

.wf-event-card.is-filter-hidden {
  display: none;
}

.wf-section {
  margin-top: 48px;
}

.wf-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.wf-section-head h2,
.wf-board-head h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 950;
}

.wf-section-head h2 span {
  margin-left: 10px;
  color: var(--wf-green);
  font-size: 16px;
  font-weight: 900;
  transform: rotate(-4deg);
  display: inline-flex;
}

.wf-rail-controls {
  display: flex;
  gap: 10px;
}

.wf-rail-controls button {
  position: relative;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  box-shadow: var(--wf-shadow-soft);
}

.wf-rail-controls button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/icon-chevron-right.svg") center / 22px 22px no-repeat;
}

.wf-rail-controls [data-rail-prev]::before {
  background-image: url("../img/icon-chevron-left.svg");
}

.wf-event-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 180px;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.wf-event-rail::-webkit-scrollbar { display: none; }

.wf-event-card {
  overflow: hidden;
  border: 1px solid rgba(7, 22, 38, .08);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--wf-shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
  scroll-snap-align: start;
}

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

.wf-card-image {
  display: grid;
  aspect-ratio: 1 / .78;
  margin: 10px 10px 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(7, 22, 38, .07);
  border-radius: 12px;
  background: #f9f8f3;
}

.wf-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.wf-card-image span {
  color: var(--wf-muted);
  font-weight: 950;
}

.wf-card-body {
  padding: 12px 12px 13px;
}

.wf-label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.wf-pill {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: #edf1f5;
  color: #53606e;
  font-size: 11px;
  font-weight: 950;
}

.wf-pill-performance { background: #ffe8ef; color: #e95486; }
.wf-pill-event { background: #e9edff; color: #5269d6; }
.wf-pill-festival { background: #eff6dc; color: #668c4a; }

.wf-card-body h3 {
  min-height: 43px;
  margin: 0;
  font-size: 16px;
  line-height: 1.34;
  font-weight: 950;
}

.wf-card-foot {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(7, 22, 38, .08);
  color: #788291;
  font-size: 12px;
  font-weight: 800;
}

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

.wf-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.wf-board {
  padding: 22px;
  border: 1px solid rgba(7, 22, 38, .08);
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  box-shadow: var(--wf-shadow-soft);
}

.wf-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.wf-board-head a {
  color: #7b8490;
  font-size: 13px;
  font-weight: 900;
}

.wf-mini-list {
  display: grid;
  gap: 12px;
}

.wf-mini-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(246, 247, 245, .95);
}

.wf-mini-image {
  display: grid;
  width: 70px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}

.wf-mini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wf-mini-copy {
  min-width: 0;
}

.wf-mini-copy strong,
.wf-mini-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wf-mini-copy strong {
  font-size: 15px;
  font-weight: 950;
}

.wf-mini-copy small {
  margin-top: 4px;
  color: #7d8794;
  font-size: 12px;
  font-weight: 750;
}

.wf-mini-badge {
  display: inline-flex;
  min-width: 42px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--wf-green);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.wf-rank-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wf-rank {
  min-height: 70px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(246, 247, 245, .95);
}

.wf-rank small {
  color: #5269d6;
  font-weight: 950;
}

.wf-rank b {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.3;
}

.wf-archive,
.wf-page {
  padding: 42px 0 84px;
}

.wf-single {
  padding: 0 0 90px;
}

.wf-single-hero {
  padding: 74px 0 88px;
  border-bottom: 1px solid rgba(7, 22, 38, .08);
  background:
    radial-gradient(circle at 12% 18%, rgba(239, 143, 149, .2), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(102, 140, 74, .2), transparent 28%),
    linear-gradient(135deg, rgba(255,250,240,.96), rgba(246,247,245,.94));
}

.wf-single-hero-inner {
  max-width: 1040px;
}

.wf-single-hero h1 {
  max-width: 980px;
  margin: 10px 0 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.12;
  font-weight: 950;
}

.wf-single-excerpt {
  max-width: 860px;
  margin: 22px 0 0;
  color: #465366;
  font-size: 20px;
  font-weight: 720;
  line-height: 1.75;
}

.wf-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
  margin-top: -42px;
}

.wf-single-main {
  overflow: hidden;
  border: 1px solid rgba(7, 22, 38, .08);
  border-radius: 30px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--wf-shadow-soft);
}

.wf-single-featured {
  margin: 0;
  padding: 18px 18px 0;
}

.wf-single-featured img {
  width: 100%;
  max-height: 540px;
  border-radius: 22px;
  background: #f6f7f5;
  object-fit: contain;
}

.wf-single-content {
  padding: 36px clamp(22px, 5vw, 64px) 64px;
  color: #172234;
  font-size: 18px;
  line-height: 1.88;
  word-break: keep-all;
}

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

.wf-single-content p {
  margin: 18px 0;
}

.wf-single-content h2 {
  margin: 56px 0 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(7, 22, 38, .08);
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.25;
  font-weight: 950;
}

.wf-single-content h3 {
  margin: 34px 0 12px;
  font-size: 23px;
  line-height: 1.35;
  font-weight: 950;
}

.wf-single-content a {
  color: var(--wf-green-deep);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wf-single-content ul,
.wf-single-content ol {
  margin: 18px 0 24px;
  padding-left: 24px;
}

.wf-single-content li {
  margin: 8px 0;
}

.wf-single-content figure {
  margin: 30px 0;
}

.wf-single-content figure img {
  width: 100%;
  max-height: 560px;
  border-radius: 22px;
  background: #f6f7f5;
  object-fit: contain;
}

.wf-single-content figcaption {
  margin-top: 10px;
  color: #6f7b8a;
  font-size: 13px;
  line-height: 1.65;
}

.wf-single-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  margin: 24px 0;
  border-collapse: collapse;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(7, 22, 38, .08);
}

.wf-single-content tbody {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.wf-single-content th,
.wf-single-content td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(7, 22, 38, .08);
  text-align: left;
  vertical-align: top;
}

.wf-single-content th {
  background: #f4f7ee;
  color: #223047;
  font-weight: 950;
}

.wf-place-carousel {
  margin: 24px 0 32px;
}

.wf-place-track {
  display: grid;
  grid-auto-columns: minmax(230px, 280px);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x proximity;
}

.wf-place-card {
  overflow: hidden;
  border: 1px solid rgba(7, 22, 38, .08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 22, 38, .08);
  scroll-snap-align: start;
}

.wf-place-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.wf-place-card-body {
  padding: 15px;
}

.wf-place-card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.wf-place-card-body p {
  margin: 5px 0;
  color: #657181;
  font-size: 14px;
  line-height: 1.5;
}

.wf-archive-hero,
.wf-search-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: center;
  min-height: 330px;
  padding: 34px;
  border-radius: var(--wf-radius-xl);
  background:
    linear-gradient(110deg, rgba(255,250,240,.94) 0 47%, rgba(102,140,74,.86) 47% 100%);
  box-shadow: var(--wf-shadow-soft);
}

.wf-search-hero {
  display: block;
  min-height: 0;
}

.wf-archive-copy h1,
.wf-search-hero h1 {
  margin: 0;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1;
  font-weight: 950;
}

.wf-archive-copy p {
  max-width: 480px;
  margin: 20px 0 0;
  color: #596575;
  font-size: 18px;
  font-weight: 700;
}

.wf-archive-feature {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--wf-shadow);
}

.wf-archive-image {
  display: grid;
  aspect-ratio: 1 / .78;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
}

.wf-archive-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wf-archive-feature-copy small,
.wf-archive-feature-copy strong,
.wf-archive-feature-copy em {
  display: block;
}

.wf-archive-feature-copy small {
  color: #e95486;
  font-weight: 950;
}

.wf-archive-feature-copy strong {
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 950;
}

.wf-archive-feature-copy em {
  margin-top: 9px;
  color: #66717f;
  font-style: normal;
}

.wf-filter-bar {
  position: sticky;
  top: 90px;
  z-index: 18;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  margin: 22px 0;
  padding: 10px;
  border: 1px solid rgba(7, 22, 38, .08);
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--wf-shadow-soft);
  backdrop-filter: blur(14px);
}

.wf-filter-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: #f6f7f5;
}

.wf-filter-search input {
  min-width: 0;
  min-height: 44px;
  padding: 0 15px;
  border: 0;
  background: transparent;
  outline: none;
}

.wf-filter-select {
  min-height: 52px;
  padding: 0 42px 0 16px;
  border: 1px solid var(--wf-line);
  border-radius: 999px;
  background: #fff;
  color: #394657;
  font-weight: 900;
}

.wf-quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 26px;
}

.wf-quick-filters a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(7, 22, 38, .08);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  color: #4f5b69;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(7, 22, 38, .04);
}

.wf-quick-filters a.is-active {
  background: var(--wf-navy);
  color: #fff;
}

.wf-archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
}

.wf-post-archive-hero {
  margin-bottom: 28px;
}

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

.wf-post-card {
  overflow: hidden;
  border: 1px solid rgba(7, 22, 38, .08);
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--wf-shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}

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

.wf-post-card-image {
  display: grid;
  aspect-ratio: 1.65 / 1;
  margin: 14px 14px 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(7, 22, 38, .07);
  border-radius: 18px;
  background: #f9f8f3;
}

.wf-post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wf-post-card-image span {
  color: var(--wf-muted);
  font-weight: 950;
}

.wf-post-card-body {
  padding: 18px 18px 20px;
}

.wf-post-card-body h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.32;
  font-weight: 950;
}

.wf-post-card-body p {
  margin: 12px 0 0;
  color: #5f6b7a;
  line-height: 1.68;
  font-weight: 650;
}

.wf-post-card-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--wf-navy);
  color: #fff;
  font-size: 14px;
  font-weight: 950;
}

.wf-pagination {
  margin-top: 28px;
}

.wf-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.wf-pagination .page-numbers {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: #52606f;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(7, 22, 38, .04);
}

.wf-pagination .page-numbers.current {
  background: var(--wf-navy);
  color: #fff;
}

.wf-side {
  position: sticky;
  top: 174px;
  display: grid;
  gap: 18px;
  height: fit-content;
}

.wf-side-list,
.wf-region-list {
  display: grid;
  gap: 9px;
}

.wf-side-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 14px;
  background: #f6f7f5;
  font-size: 14px;
  font-weight: 850;
}

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

.wf-region-list a {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 999px;
  background: #f6f7f5;
  color: #566170;
  font-weight: 900;
}

.wf-region-list a.is-active {
  background: var(--wf-green);
  color: #fff;
}

.wf-empty {
  padding: 42px;
  border: 1px solid rgba(7, 22, 38, .08);
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--wf-shadow-soft);
}

.wf-empty h2 {
  margin: 0 0 8px;
}

.wf-empty p {
  margin: 0;
  color: var(--wf-muted);
}

.wf-search-hero .wf-filter-search {
  max-width: 680px;
  margin-top: 24px;
  background: rgba(255,255,255,.84);
}

.wf-static-page {
  padding: 56px 0 0;
}

.wf-static-hero {
  padding: 56px 0 28px;
}

.wf-static-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--wf-ink);
  font-size: clamp(44px, 6vw, 86px);
  line-height: .96;
  letter-spacing: 0;
}

.wf-static-hero p:not(.wf-kicker) {
  max-width: 640px;
  margin: 18px 0 0;
  color: #59677a;
  font-size: 18px;
  line-height: 1.7;
}

.wf-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.wf-sitemap-card {
  padding: 26px;
  border: 1px solid rgba(7, 22, 38, .08);
  border-radius: 24px;
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--wf-shadow-soft);
}

.wf-sitemap-card h2 {
  margin: 0 0 18px;
  color: var(--wf-ink);
  font-size: 22px;
}

.wf-sitemap-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wf-listing-page {
  padding-bottom: 72px;
}

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

.wf-listing-card {
  min-width: 0;
}

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

.wf-region-chip {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 22px;
  border: 1px solid rgba(7, 22, 38, .08);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--wf-shadow-soft);
}

.wf-region-chip strong {
  color: var(--wf-ink);
  font-size: 22px;
}

.wf-region-chip span {
  color: var(--wf-muted);
  font-size: 14px;
}

.wf-sitemap-card a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(7, 22, 38, .04);
  color: #40516a;
  font-weight: 850;
}

.wf-site-footer {
  margin-top: 64px;
  padding: 42px 0 30px;
  border-top: 1px solid rgba(7, 22, 38, .08);
  background: rgba(255, 255, 255, .72);
  color: #637083;
  font-size: 14px;
}

.wf-footer-inner {
  display: grid;
  grid-template-columns: 1.15fr .95fr 1fr;
  gap: 22px;
}

.wf-footer-brand,
.wf-footer-info,
.wf-footer-side {
  min-width: 0;
}

.wf-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wf-ink);
  font-size: 22px;
  font-weight: 950;
}

.wf-footer-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--wf-ink);
  color: #f7d977;
  font-size: 18px;
  font-weight: 950;
}

.wf-footer-brand p {
  max-width: 420px;
  margin: 14px 0 0;
  line-height: 1.7;
}

.wf-footer-source {
  color: #8491a3;
  font-size: 13px;
}

.wf-footer-info,
.wf-footer-side {
  padding: 18px;
  border: 1px solid rgba(7, 22, 38, .07);
  border-radius: 20px;
  background: rgba(255, 255, 255, .64);
}

.wf-footer-info h2,
.wf-footer-side h2 {
  margin: 0 0 14px;
  color: var(--wf-ink);
  font-size: 16px;
}

.wf-footer-info dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.wf-footer-info dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
}

.wf-footer-info dt {
  color: #8995a6;
  font-weight: 850;
}

.wf-footer-info dd {
  margin: 0;
  color: #3d4857;
  font-weight: 750;
}

.wf-footer-info a,
.wf-footer-links a,
.wf-footer-menu-list a {
  color: #40516a;
  font-weight: 850;
}

.wf-footer-menu-list {
  gap: 10px 14px;
}

.wf-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(7, 22, 38, .08);
  color: #8a96a7;
  font-size: 13px;
}

@media (max-width: 1180px) {
  .wf-shell,
  .wf-hero-inner {
    width: min(100% - 36px, 1380px);
  }

  .wf-hero-inner,
  .wf-archive-hero,
  .wf-archive-layout {
    grid-template-columns: 1fr;
  }

  .wf-collage {
    min-height: 420px;
  }

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

  .wf-sitemap-grid {
    grid-template-columns: 1fr;
  }

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

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

  .wf-side {
    position: static;
  }

  .wf-footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .wf-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .wf-nav {
    grid-template-columns: auto auto;
  }

  .wf-header-search {
    display: none;
  }

  .wf-menu-toggle,
  .wf-menu-close {
    display: grid;
    place-items: center;
  }

  .wf-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 50;
    display: grid;
    align-content: start;
    width: min(340px, 86vw);
    height: 100vh;
    padding: 84px 22px 22px;
    border-radius: 26px 0 0 26px;
    background: #fff;
    color: var(--wf-ink);
    transform: translateX(105%);
    transition: transform .18s ease;
    box-shadow: var(--wf-shadow);
  }

  .wf-menu-list {
    display: grid;
    gap: 8px;
  }

  .wf-menu a {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    color: var(--wf-ink);
    font-size: 18px;
  }

  .wf-menu .sub-menu {
    position: static;
    min-width: 0;
    margin: -2px 0 6px 14px;
    padding: 6px;
    border-radius: 16px;
    background: #f4f0e7;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .wf-menu .sub-menu::before {
    display: none;
  }

  .wf-menu .sub-menu a {
    min-height: 42px;
    font-size: 15px;
  }

  body.wf-menu-open .wf-menu {
    transform: translateX(0);
  }

  body.wf-menu-open .wf-menu-overlay {
    display: block;
  }

  .wf-footer-inner {
    grid-template-columns: 1fr;
  }

  .wf-footer-info dl div {
    grid-template-columns: 74px 1fr;
  }

  .wf-home-tabs {
    width: min(100% - 36px, 720px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 24px;
  }

  .wf-filter-bar {
    position: static;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .wf-shell,
  .wf-hero-inner {
    width: min(100% - 22px, 1380px);
  }

  .wf-hero-collage {
    min-height: 0;
    border-radius: 0 0 22px 22px;
  }

  .wf-hero-inner {
    min-height: 0;
    gap: 8px;
  }

  .wf-hero-copy {
    padding: 34px 0 20px;
  }

  .wf-hero-copy h1 {
    font-size: 54px;
  }

  .wf-post-grid {
    grid-template-columns: 1fr;
  }

  .wf-post-card-body h2 {
    font-size: 20px;
  }

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

  .wf-hero-search,
  .wf-filter-search {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .wf-search-icon {
    display: none;
  }

  .wf-hero-search button,
  .wf-filter-search button {
    width: 100%;
  }

  .wf-collage {
    min-height: 360px;
  }

  .wf-collage-card {
    border-width: 6px;
    border-radius: 20px;
  }

  .wf-collage-1 {
    left: 4%;
    top: 18px;
    width: 70%;
    height: 230px;
  }

  .wf-collage-2 {
    right: 0;
    top: 0;
    width: 38%;
    height: 126px;
  }

  .wf-collage-3 {
    left: 0;
    bottom: 42px;
    width: 42%;
    height: 130px;
  }

  .wf-collage-4 {
    right: 0;
    bottom: 18px;
    width: 38%;
    height: 170px;
  }

  .wf-find-now {
    width: 68px;
    height: 68px;
    font-size: 13px;
  }

  .wf-home-tabs,
  .wf-board-grid,
  .wf-event-grid,
  .wf-category-grid,
  .wf-archive-feature,
  .wf-mini-item {
    grid-template-columns: 1fr;
  }

  .wf-home-tabs {
    width: min(100% - 22px, 420px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
    padding: 8px;
  }

  .wf-home-tabs button {
    min-height: 58px;
    border-radius: 18px;
  }

  .wf-home-tabs button span {
    font-size: 16px;
  }

  .wf-home-tabs button small {
    font-size: 11px;
  }

  .wf-event-rail {
    grid-auto-columns: 74vw;
  }

  .wf-board,
  .wf-archive-hero,
  .wf-search-hero {
    padding: 20px;
    border-radius: 22px;
  }

  .wf-archive-copy h1,
  .wf-search-hero h1 {
    font-size: 46px;
  }
}
