/* ================================================
   Worthkeep — Components CSS
   ALL one-off template styles live here.
   No inline `style="..."` or internal <style> tags in PHP files.
   DEPENDS ON: style.css :root design tokens (all --* vars).
   ================================================ */

/* SECTION: Pillar Header (Category Archive) Start
   ---------- PILLAR HEADER (Category Archive) ---------- */
.wk-pillar-header {
  background: var(--color-parchment);
  padding: var(--space-19) 0;
  text-align: center;
  contain: layout style;
}

.wk-pillar-header h1 {
  text-transform: uppercase;
  letter-spacing: var(--ls-sm-2);
}

.wk-pillar-header p {
  color: var(--color-copper);
  font-size: var(--fs-base);
  margin-top: var(--space-5);
  letter-spacing: var(--ls-sm);
}

/* SECTION: Pillar Header (Category Archive) End */

/* SECTION: Pill Badge (Single Post) Start
   ---------- CATEGORY PILL BADGE (Single Post — Figma "GEAR & EDC" pill) ---------- */
.wk-pill {
  display: inline-block;
  padding: 3px 16px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-lg-2);
  text-transform: uppercase;
  background: #EDEAE4;
  color: #1A1A18;
}

.wk-single__pillar {
  display: inline-block;
  margin: 0 auto var(--space-10);
}

/* SECTION: Pill Badge (Single Post) End */

/* SECTION: Single Post Header & Body Start
   ---------- SINGLE POST HEADER + BODY (Template 3, no sidebar, single column) ---------- */
.wk-single__header {
  padding: var(--space-6) 0 var(--space-10);
}

.wk-single__header-inner {
  text-align: center;
}

.wk-single__title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 46px;
  color: #1B1C1C;
  margin: 0 auto 8px;
  /* max-width: 18ch; */
  font-weight: var(--fw-semibold);
  text-align: center;
}

.wk-single__byline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--color-mid-gray);
  letter-spacing: var(--ls-md-2);
  text-transform: uppercase;
  text-align: center;
}

.wk-single__byline-by {
  font-weight: var(--fw-semibold);
  color: #888888;
  font-size: var(--fs-sm);
}

.wk-dot-sep {
  opacity: var(--opacity-60);
  color: var(--color-mid-gray);
}

.wk-single__hero {
  margin: var(--space-10) 0 var(--space-18);
}

.wk-single__hero-image {
  position: relative;
  aspect-ratio: var(--ar-16-9);
  overflow: hidden;
  background: var(--color-light-rule);
  contain: layout paint;
  border-radius: 0;
}

.wk-single__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wk-feature-badge {
  position: absolute;
  top: var(--space-9);
  right: var(--space-9);
  left: auto;
  background: var(--color-copper);
  color: var(--color-parchment);
  padding: var(--space-4) var(--space-12);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-xl);
  text-transform: uppercase;
}

.wk-badge-feature {
  display: none;
}

/* Single layout — full width single column (per user spec, no sidebar) */
.wk-single-layout {
  display: block;
  padding: var(--space-5) 0 var(--space-20);
}

.wk-single__sidebar {
  display: none;
}

/* Gutenberg body — Typography primary design element */
.wk-single .entry-content {
  max-width: 100%;
  margin: 0 auto;
}

.wk-single .entry-content>*+* {
  margin-top: var(--space-11);
}

.wk-single .entry-content p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 32px;
  color: #3D3D3A;
  letter-spacing: 0;
}

.wk-single .entry-content h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: clamp(var(--fs-5xl), 3.2vw, var(--fs-8xl));
  line-height: 1.18;
  color: var(--color-forge);
  margin-top: var(--space-18);
  margin-bottom: var(--space-5);
}

.wk-single .entry-content h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 32px;
  line-height: 38px;
  color: #1A1A18;
  margin-top: 64px;
  margin-bottom: 40px;
}

.wk-single .entry-content h4 {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-lg);
  color: var(--color-forge);
  margin-top: var(--space-14);
}

.wk-single .entry-content a {
  color: var(--color-copper);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity var(--dur-2) var(--ease-default);
}

.wk-single .entry-content a:hover {
  opacity: var(--opacity-80);
}

.wk-single .entry-content .wp-block-image {
  margin: var(--space-15) 0;
}

.wk-single .entry-content .wp-block-gallery.columns-2,
.wk-single .entry-content .wp-block-columns.columns-2,
.wk-single .entry-content .two-up-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  margin: var(--space-15) 0;
}

.wk-single .entry-content .alignwide {
  max-width: var(--content-wide);
  margin-left: auto;
  margin-right: auto;
}

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

.wk-single .entry-content blockquote {
  border-left: 4px solid var(--color-copper);
  padding: var(--space-11) var(--space-14);
  margin: var(--space-18) 0;
  background: var(--color-white);
  max-width: 100%;
}

.wk-single .entry-content blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-5xl);
  line-height: var(--lh-snug);
  color: var(--color-forge);
  margin: 0;
}

/* Product specs table — Figma spec table style: SPECIFICATIONS copper label above, rows no outer border, no zebra */
.wk-single .entry-content table {
  width: 100%;
  border-collapse: collapse;
  /* margin: var(--space-15) 0; */
  border: 0;
  background: var(--color-parchment);
  font-size: 17px;
}

.wk-single .entry-content table th,
.wk-single .entry-content table td {
  padding: var(--space-7) var(--space-10);
  text-align: left;
  border: 0;
  border-bottom: 0;
  vertical-align: middle;
}

.wk-single .entry-content table th {
  padding: 0px;
  font-weight: 400;
}

.wk-single .entry-content table tr+tr th,
.wk-single .entry-content table tr+tr td {
  border-top: 1px solid rgba(var(--rgb-light-rule), var(--opacity-40));
}

.wk-single .entry-content table th {
  width: 50%;
  background: var(--color-parchment);
  color: #3D3D3A;
  font-weight: 400;
  font-family: var(--font-body);
}

.wk-single .entry-content table td {
  background: var(--color-parchment);
  color: #1A1A18;
  font-weight: 400;
  font-family: var(--font-body);
  padding: 10px;
}

.wk-single .entry-content table tbody tr:nth-child(odd),
.wk-single .entry-content table tbody tr:nth-child(even) {
  background: var(--color-parchment);
}

.wk-single .entry-content table caption,
.wk-single .entry-content .specs-label {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-lg-2);
  text-transform: uppercase;
  color: var(--color-copper);
  text-align: left;
  padding: var(--space-8) var(--space-10) var(--space-6);
  background: var(--color-parchment);
  caption-side: top;
}

/* Page-links (nextpage) */
.page-links {
  clear: both;
  margin: var(--space-15) 0;
}

.page-links a,
.page-links>span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--space-15);
  height: var(--space-15);
  padding: 0 var(--space-8);
  font-size: var(--fs-sm-2);
  margin: 0 var(--space-2) var(--space-2) 0;
  border: var(--border-1);
  color: var(--color-forge);
}

.page-links a:hover {
  color: var(--color-copper);
}

.page-links>span.post-page-numbers.current {
  background: var(--color-copper);
  color: var(--color-parchment);
  border-color: var(--color-copper);
  font-weight: var(--fw-semibold);
}

/* SECTION: Single Post Header & Body End */

/* SECTION: Buy CTA (Single Post + Gutenberg Block) Start
   ---------- BUY CTA (Figma "Recommended Selection" block, centered) ---------- */
.wk-buy-cta {
  margin-top: 64px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--color-light-rule);
  background: var(--color-parchment-light);
  contain: layout style;
}

.wk-buy-cta__inner {
  padding: 40px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: #F7F6F4;
  margin-top: 64px;
}

.wk-buy-cta__label {
  display: block;
  font-family: var(--font-body);
  font-size: 14px !important;
  font-weight: var(--fw-bold);
  line-height: 20px;
  text-transform: uppercase;
  color: #A0673A !important;
}

.wk-buy-cta__product {
  font-family: var(--font-display);
  font-size: 24px !important;
  line-height: 30px !important;
  font-weight: var(--fw-regular);
  color: #1A1A18 !important;
  margin: 0 !important;
}

.wk-buy-cta__price {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  color: var(--color-forge);
  margin: 0 0 24px;
  line-height: var(--lh-tight);
}

.wk-buy-cta__actions {
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.wk-buy-cta__buy {
  width: 100%;
  max-width: 190px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  min-height: 48px;
  padding: 14px 24px;
  background: var(--color-copper-dark, var(--color-copper));
  color: var(--color-parchment);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  text-decoration: none;
  line-height: 20px;
  border-radius: 0;
  border: 0;
  transition: background var(--dur-2) var(--ease-default);
}

.wk-buy-cta__buy:hover {
  background: var(--color-copper);
  color: var(--color-parchment);
}

.wk-buy-cta__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0;
  color: var(--color-copper);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--fw-semibold);
  line-height: 24px;
  color: #C99868 !important;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  transition: opacity var(--dur-2) var(--ease-default);
}

.wk-buy-cta__check:hover {
  opacity: var(--opacity-80);
}

/* Gutenberg block Buy CTA — aligns class to existing .wk-buy-cta BEM (rendered with BOTH classes) */
.wp-block-wk-buy-cta.is-editor {
  padding: 0;
}

.wp-block-wk-buy-cta .is-editable {
  outline: 1px dashed rgba(var(--rgb-copper), 0.35);
  outline-offset: 4px;
  padding: 4px 6px;
}

.wp-block-wk-buy-cta .is-placeholder {
  opacity: 1;
}

.wk-block-warn {
  margin: var(--space-6) 0;
}

/* SECTION: Gutenberg Blocks (Pull Quote, Specs Table) Start
   ---------- GUTENBERG BLOCK: PULL QUOTE (copper left bar + large italic Cormorant) ---------- */
.wp-block-wk-pull-quote,
.wk-pull-quote {
  margin: var(--space-18) 0;
  padding: var(--space-11) var(--space-14);
  border-left: 4px solid var(--color-copper);
  background: var(--color-white);
  max-width: 100%;
}

.wp-block-wk-pull-quote p,
.wk-pull-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-5xl);
  line-height: var(--lh-snug);
  color: var(--color-forge);
}

.wp-block-wk-pull-quote.is-editor p {
  outline: 1px dashed rgba(var(--rgb-copper), 0.3);
  outline-offset: 2px;
  padding: 2px 4px;
}

.wk-search-header__bar {
  width: 100%;
  border: 1px solid #A0673A;
}

.search-results .search-form {
  width: 100%;
  justify-content: space-between;
  display: flex;
  padding: 8px 12px;
}

.search-results .search-form input {
  border: 0px;
}

.wk-search-header__bar .search-form input[type="submit"],
.wk-search-header__bar .search-form .search-submit {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat center;
  border: none;
  padding: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
  text-indent: -9999px;
  background-color: transparent;
  font-size: 0;
  /* Alternative to hide text */
  color: transparent;
  /* Alternative to hide text */
}

.wk-search-header__bar .search-form input[type="submit"]:hover,
.wk-search-header__bar .search-form .search-submit:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

/* ---------- GUTENBERG BLOCK: PRODUCT SPECS TABLE ---------- */
.wp-block-wk-product-specs-table,
.wk-specs-table {
  /* margin: var(--space-18) 0; */
  max-width: 100%;
  padding: 24px;
  background: var(--color-parchment-light, var(--color-parchment));
}

.wp-block-wk-product-specs-table table,
.wk-specs-table table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: var(--fs-xl);
  margin: 0;
}

.wk-specs-table__caption,
.wp-block-wk-product-specs-table figcaption,
.wp-block-wk-product-specs-table caption {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--fw-bold);
  line-height: 20px;
  text-transform: uppercase;
  color: var(--color-copper);
  text-align: left;
  padding: 0 0 var(--space-11);
  background: transparent;
  caption-side: top;
  margin: 0;
  display: block;
}

.wp-block-wk-product-specs-table th,
.wk-specs-table th,
.wp-block-wk-product-specs-table td,
.wk-specs-table td {
  padding: var(--space-9) 0;
  text-align: left;
  border: 0;
  vertical-align: middle;
  background: transparent;
}

.wp-block-wk-product-specs-table th,
.wk-specs-table th {
  width: auto;
  color: var(--color-forge);
  font-weight: var(--fw-medium);
  font-size: inherit;
  padding-right: var(--space-8);
}

.wp-block-wk-product-specs-table td,
.wk-specs-table td {
  color: var(--color-forge);
  font-weight: var(--fw-semibold);
  font-size: inherit;
  text-align: right;
  padding-left: var(--space-8);
}

/* No row separators — all rows uniform parchment bg, clean vertical gap via padding */
.wp-block-wk-product-specs-table tr+tr th,
.wk-specs-table tr+tr th,
.wp-block-wk-product-specs-table tr+tr td,
.wk-specs-table tr+tr td {
  border-top: 0;
}

/* Uniform background for ALL rows — no zebra */
.wp-block-wk-product-specs-table tbody tr,
.wk-specs-table tbody tr,
.wp-block-wk-product-specs-table tbody tr:nth-child(odd),
.wk-specs-table tbody tr:nth-child(odd),
.wp-block-wk-product-specs-table tbody tr:nth-child(even),
.wk-specs-table tbody tr:nth-child(even) {
  background: transparent;
}

/* Specs Table editor-only helpers */
.wp-block-wk-product-specs-table.is-editor th,
.wk-specs-table.is-editor th,
.wp-block-wk-product-specs-table.is-editor td,
.wk-specs-table.is-editor td {
  position: relative;
}

.wp-block-wk-product-specs-table.is-editor td>*,
.wk-specs-table.is-editor td>* {
  vertical-align: middle;
}

.wk-specs-remove {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
  margin-left: var(--space-4);
  padding: 0 !important;
  font-size: 18px !important;
  line-height: 1 !important;
}

.wk-specs-table__toolbar {
  padding: var(--space-8) 0 0;
  background: transparent;
  text-align: left;
}

.wp-block-wk-product-specs-table.is-editor [contenteditable="true"],
.wk-specs-table.is-editor [contenteditable="true"] {
  outline: 1px dashed rgba(var(--rgb-copper), 0.35);
  outline-offset: 2px;
  padding: 2px 4px;
}

/* SECTION: Gutenberg Blocks End */

/* SECTION: Featured Hero Card (Archive / Search / 404) Start
   ---------- FEATURED HERO CARD (archive / search / 404) ---------- */
.wk-featured-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  /* margin-bottom: var(--space-15); */
  contain: layout style;
}

.wk-featured-hero__media {
  position: relative;
  aspect-ratio: var(--ar-4-3);
  background: var(--color-light-rule);
  overflow: hidden;
  contain: layout paint;
}

.wk-featured-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.wk-featured-hero__badge {
  position: absolute;
  top: var(--space-7);
  right: var(--space-7);
  background: var(--color-copper);
  color: var(--color-parchment);
  padding: var(--space-3) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xl);
  text-transform: uppercase;
}

.wk-featured-hero__title {
  margin-bottom: 24px;
  font-size: var(--fs-5xl);
  line-height: var(--lh-tight-3);
  font-weight: 600;
}

.wk-featured-hero__title a {
  color: var(--color-forge);
}

.wk-featured-hero__excerpt {
  font-size: var(--fs-lg);
  line-height: var(--lh-loose);
  color: var(--color-forge);
  margin-bottom: var(--space-14);
}

.wk-featured-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.wk-featured-hero__price {
  margin-right: var(--space-10);
}

.wk-section--latest .wk-latest-list {
  display: grid;
  gap: var(--spacing-40);
}

.wk-featured-hero--home {
  grid-template-columns: 1.2fr 1fr;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 12px;
}

.wk-featured-hero--home .wk-featured-hero__media {
  background: var(--border-subtle);
}

.wk-featured-hero--home .wk-featured-hero__content {
  padding: 48px 48px 48px 0px;
}

.wk-featured-hero--home .wk-featured-hero__title a {
  color: var(--text-primary);
}

.wk-featured-hero--home .wk-featured-hero__excerpt {
  color: #3D3D3A;
  font-size: 17px;
  line-height: 30px;
}

.wk-featured-hero__readmore-inline {
  color: var(--text-link);
  text-decoration: none;
  margin-left: var(--space-2);
  white-space: nowrap;
}

.wk-featured-hero__readmore-inline:hover {
  color: var(--text-link-hover);
}

.wk-featured-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--fw-semibold);
line-height: 20px;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.wk-featured-hero__btn--buy {
  background: var(--action-primary);
  color: var(--action-primary-text);
}

.wk-featured-hero__btn--buy:hover {
  background: var(--action-primary-hover);
  color: var(--action-primary-text);
}

.wk-featured-hero__btn--share {
  background: var(--bg-inverse);
  color: var(--text-inverse);
}

.wk-featured-hero__btn--share:hover {
  background: #000000;
  color: var(--text-inverse);
}

.wk-featured-hero__share-panel {
  width: 100%;
}

.wk-featured-hero__share-panel .wk-share-buttons--card {
  margin-top: var(--space-10);
  padding-top: 0;
  border-top: 0;
}

.wk-featured-hero.is-share-open .wk-featured-hero__share-panel {
  display: block;
}

@media (max-width: 768px) {
  .wk-featured-hero {
    grid-template-columns: 1fr;
    gap: var(--space-11);
  }

  .wk-featured-hero--home .wk-featured-hero__content {
    padding: var(--spacing-24);
  }

  .wk-single {
    padding: 32px 16px;
  }

  .wk-single__title {
    text-align: left;
    font-size: 24px;
    line-height: 30px;
  }

  .wk-breadcrumbs ol {
    justify-content: flex-start !important;
  }

  .wk-breadcrumbs li>span {
    line-height: 20px;
  }

  .wk-pill {
    display: flex !important;
    width: fit-content !important;
    margin-left: 0 !important;
    /* Add this */
    margin-right: auto !important;
    /* Add this */
    margin-bottom: 16px !important;
  }

  .wk-single__byline {
    display: flex !important;
    justify-content: flex-start !important;
    text-align: left !important;
    align-items: center !important;
  }

  .wk-affiliate-disclosure--inline {
    padding: 0 !important;
  }

  .wk-affiliate-disclosure--inline hr+p {
    margin: 8px 0px !important;
  }

  .wk-single__header {
    padding-bottom: 16px !important;
  }

  .parent-single-hero {
    padding: 0 !important;
  }

  .wk-single__hero {
    margin-top: 32px !important;
  }

  .wk-single .entry-content .alignwide {
    margin: 16px 0px !important;
  }

  .wk-single .entry-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .wk-single .entry-content h3 {
    margin-top: 32px;
    margin-bottom: 18px;
  }

  .wk-single .entry-content h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .wk-single .entry-content blockquote {
    margin: 16px 0;
  }

  .wk-single .entry-content blockquote {
    padding: 10px 30px !important;
  }

  .wk-single .entry-content blockquote p {
    font-size: 20px;
  }

  .wk-buy-cta__inner {
    margin-top: 32px;
  }

  .wk-related {
    margin-top: 32px !important;
  }

  .wk-related-card__excerpt,
  .wk-related-card__learn {
    display: none !important;
  }

  .wk-related-card__title {
    font-size: 20px !important;
    line-height: 26px !important;
  }

  .wk-single .entry-content table td {
    font-size: 14px !important;
  }


  .wk-about__hero-inner {
    padding: 32px 16px !important;
  }

  .wk-about__eyebrow {
    margin-bottom: 6px !important;
  }

  .wk-about__title {
    font-size: 24px !important;
    line-height: 30px !important;
    margin-bottom: 16px !important;
  }

  .wk-about__body p {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .wk-about__cover,
  .wk-about__standard,
  .wk-about__work {
    padding: 32px 16px !important;
  }

  .wk-about__cover-head {
    margin-bottom: 32px !important;
  }

  .wk-about__cover-title {
    font-size: 24px !important;
    line-height: 30px !important;
  }

  .wk-about__cover-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .wk-about__standard-quote {
    font-size: 24px !important;
    line-height: 30px !important;
  }

  .wk-about__work-copy {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .wk-about__work-rule {
    margin-top: 18px !important;
  }

  .wk-mk__hero,
  .wk-mk__signal,
  .wk-mk__stats,
  .wk-mk__verticals,
  .wk-mk__sponsorship,
  .wk-mk__quote {
    padding: 32px 16px !important;
  }

  .wk-mk__hero-title {
    font-size: 32px !important;
    line-height: 38px !important;
  }

  .wk-mk__hero-copy {
    font-size: 14px !important;
    line-height: 22px !important;
    margin-bottom: 20px !important;
  }

  .wk-mk-btn--copper {
    padding: 12px 24px !important;
  }

  .wk-mk-btn {
    min-height: 40px !important;
  }

  .wk-mk__hero-ctas {
    gap: 12px !important;
  }

  .wk-mk-link--email {
    font-size: 10px !important;
  }

  .wk-mk__signal-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .wk-mk__section-title {
    font-size: 24px !important;
    line-height: 30px !important;
  }

  .wk-mk__para {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .wk-mk__signal-row {
    grid-area: 36px !important;
  }

  .wk-mk__stats-row {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .wk-mk__stat:nth-child(n + 2)::before {
    background: none !important;
  }

  .wk-mk__verticals-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .wk-mk-vertical__label {
    font-size: 17px !important;
  }

  .wk-mk__stat-value {
    font-size: 20px !important;
  }

  .wk-mk__sponsorship-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .wk-mk-card {
    padding: 10px !important;
  }

  .wk-mk-card__title,
  .wk-mk-quote__text {
    font-size: 20px !important;
  }

  .wk-mk-card__copy {
    font-size: 14px !important;
  }

  .wk-mk-card {
    min-height: 150px !important;
  }

  .wk-mk-quote__cite {
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .wk-contact__hero,
  .wk-contact__cards,
  .wk-contact__form {
    padding: 32px 16px !important;
  }

  .wk-contact__eyebrow {
    font-size: 12px !important;
  }

  .wk-contact__hero-title {
    font-size: 32px !important;
    line-height: 38px !important;
    margin-bottom: 15px !important;
  }

  .wk-contact__hero-copy {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .wk-contact-card__icon {
    margin-bottom: 9px !important;
  }

  .wk-contact__form-title {
    font-size: 24px !important;
    line-height: 30px !important;
  }

  .wk-contact__form-title-text {
    padding-bottom: 0px !important;
  }

  #wpforms-form-120 {
    padding: 0px !important;
    margin: 0px !important;
  }

  div.wpforms-container-full button[type=submit] {
    font-size: 14px;
    line-height: 20px;
    line-height: 0px;
  }

  .search-results #primary,
  .search-no-results #primary {
    padding: 32px 16px !important;
  }

  .wk-search-header h1 {
    font-size: 20px !important;
    line-height: 26px !important;
  }

  .wk-search-header__lede {
    line-height: 22px !important;
  }

  .wk-search-header {
    margin-bottom: 24px !important;
  }

  .search-results .wk-featured-hero,
  .wk-search-nothing {
    padding: 0 !important;
  }

  .wk-search-nothing__title {
    font-size: 32px !important;
    line-height: 38px !important;
  }

  .wk-search-header__count {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .wk-search-header h1 {
    margin-bottom: 0px !important;
  }

  .wk-search-nothing__lede {
    line-height: 22px !important;
    margin-bottom: 30px !important;
  }

  .wk-refine-search__submit,
  .wk-refine-search__input {
    min-height: 47px !important;
  }

  .wk-search-browse-cats {
    padding-top: 60px !important;
  }

  .wk-search-browse-cats__title {
    font-size: 24px !important;
    line-height: 30px !important;
  }

  .wk-pillar-card__name {
    font-size: 20px !important;
    margin-bottom: 4px !important;
  }

  .wk-search-browse-cats__grid {
    gap: 40px !important;
  }

  .wk-search-browse-cats {
    padding-bottom: 32px !important;
  }

  .wk-search-quote {
    padding-top: 32px !important;
  }

  .wk-search-quote__text {
    font-size: 32px !important;
    line-height: 38px !important;
  }

  .wk-search-quote__blockquote {
    padding-bottom: 24px !important;
  }

  .wk-search-quote__blockquote {
    padding-top: 0 !important;
  }
 
  .wk-404-hero{
    padding: 16px !important;
  }
 .wk-404-num{
  font-size: 38px !important;
  line-height: 44px !important;
  margin-bottom: 16px !important;
 }
  .wk-404-title{
      font-size: 38px !important;
  line-height: 44px !important;
  }
.wk-404-title{
  margin-bottom: 16px !important;
}
.wk-404-recent, .wk-404-bottom{
  padding: 16px 32px !important;
}
.wk-404-recent__label{
  font-size: 24px !important;
  line-height: 30px !important;
}
.error404 .wk-featured-hero--archive .wk-featured-hero__media>a{
  padding: 0 !important;
}
.error404 .wk-featured-hero--archive{
   padding: 0 !important;
}

.error404  .wk-featured-hero--archive .wk-featured-hero__content{
  padding-top: 16px !important;
}
.wk-404-bottom__search{
  flex-direction: column !important;
  align-items: flex-start !important;
}
.wk-404-bottom__title{
  font-size: 32px !important;
  line-height: 38px !important;
  margin-bottom: 4px !important;
}
.wk-404-bottom__lede{
  font-size: 14px !important;
  line-height: 22px !important;
}
.wk-refine-search--404 .wk-refine-search__row{
  display: flex !important;
}
.wk-refine-search--404 .wk-refine-search__glyph{
   top: 14px !important;
   right:  calc(135px + 0px + 0px) !important;
}
.wk-search-browse-cats__title{
  margin-bottom: 16px !important;
}
.wk-404-bottom__inner{
  padding-bottom: 16px !important;
}

.wk-mk__cta-dark{
  padding: 32px 16px !important;
}
.wk-mk__cta-dark-copy{
  font-size: 16px !important;
  line-height: 24px !important;
}


}


@media (min-width: 769px) and (max-width: 1024px) {

  .search-results #primary {
    padding: 32px;
  }

  .search-no-results #primary {}

  .wk-featured-hero--home {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .wk-single {
    padding-top: 32px;
  }

  .parent-single-hero {
    padding: 0px 150px 32px 150px;
  }

  .wk-featured-hero__title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 16px;
  }

  .wk-featured-hero__excerpt {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 17px;
  }

  .wk-featured-hero--home .wk-featured-hero__content {
    padding: 24px 24px 24px 0;
  }

  .wk-featured-hero__actions {
    margin-top: var(--space-10);
  }

  .wk-featured-hero__btn {
    min-height: 42px;
    padding: var(--space-7) var(--space-14);
    font-size: var(--fs-sm-2);
  }

  .wk-section--latest .wk-latest-list {
    gap: 32px;
  }

  .wk-pillar-strip__label {
    letter-spacing: 0 !important;
  }

  .wk-cat-archive {
    padding: 32px !important;
  }

  .wk-featured-hero--archive {
    gap: 24px !important;
  }

  .wk-featured-hero--archive .wk-featured-hero__excerpt {
    line-height: 22px !important;
    margin-bottom: 17px !important;
  }

  .wk-featured-hero__actions {
    margin-top: 17px !important;
  }

  .wk-featured-hero--archive {
    min-height: 277px !important;
  }

  .wk-featured-hero--archive .wk-featured-hero__title {
    font-size: 20px !important;
    line-height: 26px !important;
  }

  .wk-featured-hero--archive .wk-featured-hero__content {
    padding: 24px 24px 24px 0px !important;
  }

  .wk-featured-hero--archive .wk-featured-hero__btn {
    padding: 14px 34px !important;
  }

  .wk-cat-archive__list {
    gap: 32px !important;
  }

  .wk-about__hero-inner {
    padding: 32px !important;
  }

  .wk-about__cover,
  .wk-about__standard,
  .wk-about__work {
    padding: 32px !important;
  }

  .wk-about__work-rule {
    margin-top: 60px !important;
  }

  .wk-mk__hero,
  .wk-mk__signal,
  .wk-mk__verticals,
  .wk-mk__sponsorship,
  .wk-mk__quote,
  .wk-mk__cta-dark {
    padding: 32px !important;
  }

  .wk-contact__hero,
  .wk-contact__cards,
  .wk-contact__form {
    padding: 32px !important;
  }

  #wpforms-form-120 {
    padding: 0 20px;
  }

  .wk-contact__eyebrow {
    margin-bottom: 8px !important;
  }

  .search-no-results #primary {
    padding: 32px !important;
  }

  .wk-404-hero, .wk-404-bottom{
     padding: 32px !important;
  }
  .wk-404-recent{
    padding: 0px 32px 32px 32px !important;
  }


}

/* @media (max-width: 480px) {
  .wk-section--latest .wk-latest-list { gap: var(--spacing-24); }
  .wk-featured-hero--home { grid-template-columns: 1fr; }
  .wk-featured-hero--home .wk-featured-hero__media { aspect-ratio: var(--ar-16-9); border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .wk-featured-hero--home .wk-featured-hero__content { padding: var(--spacing-16); border-radius: 0 0 var(--radius-md) var(--radius-md); }
  .wk-featured-hero__title { margin: var(--space-4) 0 var(--space-6); font-size: var(--heading-h3-size); line-height: var(--heading-h3-lh); }
  .wk-featured-hero__excerpt { margin-bottom: var(--space-10); font-size: var(--fs-sm); line-height: var(--lh-loose-2); }
  .wk-featured-hero__badge { top: var(--space-6); left: var(--space-6); right: auto; padding: var(--space-2) var(--space-7); font-size: var(--fs-xs-2); letter-spacing: var(--ls-lg-2); }
  .wk-featured-hero__btn { width: calc(50% - (var(--space-10) / 2)); min-height: 44px; padding: var(--space-6) var(--space-10); font-size: var(--fs-sm); letter-spacing: var(--ls-lg-2); }
} */
/* SECTION: Featured Hero Card (Archive / Search / 404) End */

.wk-home-callout {
  padding: var(--spacing-64) 0;
  text-align: center;
  padding-top: 0px;
  background: #ffffff;
  contain: layout style;
}

.wk-home-callout__title {
  font-family: var(--heading-h2-font);
  font-weight: var(--heading-h2-weight);
  font-size: 32px;
  line-height: 38px;
  margin-bottom: var(--spacing-16);
  color: var(--text-primary);
}

.wk-home-callout__text {
  font-family: var(--body-large-font);
  font-size: var(--body-large-size);
  line-height: var(--body-large-lh);
  margin: 0 auto 14px;
  max-width: var(--content-small);
  color: var(--text-primary);
  opacity: var(--opacity-88);
}

.wk-home-callout .wk-link-arrow {
  justify-content: center;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .wk-home-callout {
    padding: 40px 32px 80px 32px
  }

  .wk-home-categories {
    padding: 32px 40px 32px 32px !important;
  }

  .wk-pillar-strip__item-title {
    font-size: 20px !important;
    line-height: 26px !important;
    margin-bottom: 6px !important;
  }

  .wk-pillar-strip__item-excerpt {
    font-size: 14px !important;
    line-height: 22px !important;
    margin-bottom: 10px !important;
  }

  .wk-home-categories__label {
    font-size: 32px;
    line-height: 38px;
    margin: 0;
  }

  .wk-home-callout__title {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: var(--spacing-16);
  }

  .wk-home-callout__text {
    font-size: 18px;
    line-height: 32px;
    max-width: 100%;
    padding: 0 var(--spacing-16);
    margin-bottom: 12px;
  }
}

/* @media (max-width: 480px) {
  .wk-home-callout { padding: var(--spacing-64) 0; }
  .wk-home-callout__title { font-size: var(--heading-h2-size-m); line-height: var(--heading-h2-lh-m); margin-bottom: var(--spacing-16); }
  .wk-home-callout__text { font-size: var(--body-default-size); line-height: var(--body-default-lh); padding: 0; max-width: 100%; margin-bottom: var(--spacing-16); }
} */
.search-results .search-form input {
  border: 0px;
  outline: none;
}

.search-results .search-form input:focus {
  border: 0px;
  outline: none;
  box-shadow: none;
}

.wk-home-categories {
  padding: var(--spacing-64) 0 var(--spacing-24);
  background: var(--bg-primary);
  max-width: 1440px;
  margin: 0 auto;
}

.wk-home-categories__label {
  font-family: var(--heading-h4-font);
  font-weight: var(--heading-h4-weight);
  font-size: var(--fs-4xl);
  letter-spacing: var(--ls-sm-4);
  text-transform: uppercase;
  color: var(--text-primary);
}

/* SECTION: Page Templates (About / Media Kit / Contact) Start
   ---------- PAGE TEMPLATES ---------- */

/* About Page */
.wk-page-about__section {
  padding: var(--space-22) 0;
}

.wk-page-about__section h1 {
  margin-bottom: var(--space-15);
  font-size: clamp(var(--fs-7xl), 6vw, var(--fs-13xl));
  line-height: var(--lh-tight-2);
}

.wk-page-about__section .entry-content p {
  margin-bottom: var(--space-10);
  font-size: var(--fs-lg);
  line-height: var(--lh-loose-3);
}

/* Media Kit Page */
.wk-mediakit-hero {
  background: var(--color-parchment);
  padding: var(--space-23) 0;
  text-align: center;
  contain: layout style;
}

.wk-mediakit-hero h1 {
  margin-bottom: var(--space-10);
  font-size: clamp(var(--fs-7xl), 5.5vw, var(--fs-11xl));
  line-height: var(--lh-tight-2);
}

.wk-mediakit-hero p {
  font-size: var(--fs-lg);
  line-height: var(--lh-loose-2);
  opacity: var(--opacity-90);
  max-width: var(--content-xxs);
  margin: 0 auto var(--space-15);
}

.wk-mediakit-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  justify-content: center;
  align-items: center;
}

.wk-mediakit-section {
  padding: var(--space-21) 0;
}

.wk-mediakit-section--tight {
  padding: var(--space-16) 0 var(--space-21);
}

.wk-mediakit-signal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-15);
  align-items: center;
}

.wk-mediakit-signal h2 {
  font-size: clamp(var(--fs-5xl), 4vw, var(--fs-10xl));
  margin-bottom: var(--space-11);
}

.wk-mediakit-signal p {
  font-size: var(--fs-body);
  line-height: var(--lh-loose-3);
  margin-bottom: var(--space-11);
}

.wk-mediakit-signal__media {
  aspect-ratio: var(--ar-4-3);
  background: var(--color-light-rule);
}

.wk-mediakit-audience {
  max-width: var(--content-medium);
  margin: 0 auto;
  text-align: center;
}

.wk-mediakit-audience__title {
  margin-bottom: var(--space-16);
  text-align: center;
}

.wk-mediakit-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-14);
}

.wk-mediakit-audience__num {
  font-family: var(--font-display);
  font-size: var(--fs-9xl);
  color: var(--color-copper);
}

.wk-mediakit-audience__desc {
  margin-top: var(--space-3);
  font-size: var(--fs-sm-2);
}

.wk-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-11);
  contain: layout style;
}

.wk-pillar-card {
  /* padding: var(--space-10); */
  /* border-top: var(--border-top-copper-2); */
  background: var(--color-white);
}

.wk-pillar-card__label {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-lg-2);
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: var(--space-4);
}

.wk-pillar-card__desc {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed-2);
  opacity: var(--opacity-88);
}

@media (min-width: 481px) and (max-width: 768px) {
  .wk-mediakit-signal {
    grid-template-columns: 1fr;
    gap: var(--space-11);
  }

  .wk-mediakit-audience__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wk-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .wk-mediakit-audience__grid {
    grid-template-columns: 1fr;
  }

  .wk-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.wk-sponsorship-formats {
  max-width: var(--content-medium);
  margin: 0 auto;
  display: grid;
  gap: var(--space-9);
  contain: layout style;
}

.wk-sponsorship-item {
  padding: var(--space-10) var(--space-12);
  border: var(--border-1);
  background: var(--color-white);
}

.wk-sponsorship-item__label {
  color: var(--color-copper);
  letter-spacing: var(--ls-md);
  text-transform: uppercase;
  font-size: var(--fs-sm-2);
  font-weight: var(--fw-semibold);
}

.wk-sponsorship-item__desc {
  margin-top: var(--space-2);
  font-size: var(--fs-base-2);
  opacity: var(--opacity-90);
}

.wk-rate-card {
  margin-top: var(--space-15);
  padding: var(--space-14);
  border: var(--border-dashed);
  text-align: center;
}

.wk-rate-card__head {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-2);
}

.wk-rate-card__cta {
  margin-top: var(--space-9);
}

/* Contact Page */
.wk-contact-hero {
  background: var(--color-parchment);
  padding: var(--space-21) 0;
  text-align: center;
  contain: layout style;
}

.wk-contact-hero__label {
  display: inline-block;
  margin-bottom: var(--space-10);
}

.wk-contact-hero h1 {
  margin-bottom: var(--space-10);
  font-size: clamp(var(--fs-7xl), 5.5vw, var(--fs-10xl));
  line-height: var(--lh-tight-2);
}

.wk-contact-hero__rule {
  width: 56px;
  height: 2px;
  background: var(--color-copper);
  margin: 0 auto var(--space-12);
}

.wk-contact-hero p {
  font-size: var(--fs-body);
  line-height: var(--lh-loose-2);
  opacity: var(--opacity-90);
  max-width: var(--content-xxs);
  margin: 0 auto;
}

.wk-contact-section {
  padding: var(--space-19) 0;
}

.wk-contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-10);
  margin-bottom: var(--space-20);
  contain: layout style;
}

.wk-contact-card {
  padding: var(--space-18) var(--space-14);
  text-align: center;
  border: var(--border-1);
  background: var(--color-white);
}

.wk-contact-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-12);
  border: var(--border-2-copper);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wk-contact-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-copper);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wk-contact-card h2 {
  font-size: 32px;
  line-height: 38px;
  margin-bottom: var(--space-4);
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
}

.wk-contact-card a {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--color-copper);
}

@media (max-width: 768px) {
  .wk-contact-cards {
    grid-template-columns: 1fr;
  }
}

.wk-contact-form-wrap {
  max-width: var(--content-xs);
  margin: 0 auto;
}

.wk-contact-form-wrap h2 {
  text-align: center;
  margin-bottom: var(--space-14);
  font-size: var(--fs-4xl);
}

.wk-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.wk-contact-form label {
  display: block;
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-md-2);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.wk-contact-form input[type="text"],
.wk-contact-form input[type="email"],
.wk-contact-form select,
.wk-contact-form textarea {
  width: 100%;
  padding: var(--space-5) var(--space-8);
  border: var(--border-1);
  background: var(--color-white);
  font-size: var(--fs-base-2);
  font-family: inherit;
  color: inherit;
  transition: border-color var(--dur-1) var(--ease-default);
}

.wk-contact-form input:focus,
.wk-contact-form select:focus,
.wk-contact-form textarea:focus {
  outline: none;
  border-color: var(--color-copper);
}

.search-no-results #primary {
  background-color: #ffffff;
  padding: 80px;
}

.search-no-results .wk-search-header__bar {
  display: none;
}

.wk-contact-form textarea {
  resize: vertical;
}

.wk-contact-form__field {
  margin-bottom: var(--space-10);
}

.wk-contact-form__submit {
  text-align: center;
  margin-bottom: var(--space-10);
}

.wk-contact-form__note {
  text-align: center;
  font-size: var(--fs-sm);
  opacity: var(--opacity-70);
}

@media (max-width: 480px) {
  .wk-contact-form__row {
    grid-template-columns: 1fr;
  }
}

/* SECTION: Page Templates (About / Media Kit / Contact) End */

/* SECTION: Search Results + 404 Start
   ---------- SEARCH RESULTS ---------- */
/* .wk-search-results { padding: var(--space-20) 0; } */
/* .wk-search-header { margin-bottom: var(--space-15); } */
.wk-search-header h1 {
  margin-bottom: 4px;
  font-size: 40px;
  line-height: 46px;
  font-weight: 600;
}

.wk-search-header h1 em {
  font-style: italic;
}

.wk-search-header__count {
  font-size: 18px;
  line-height: 32px;
  color: #3D3D3A;
}

.wk-search-header__bar {
  margin-top: var(--space-12);
  display: flex;
  gap: var(--space-8);
  align-items: center;
}

.wk-search-form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: var(--content-micro);
}

.wk-search-form input[type="search"] {
  flex: 1;
  padding: var(--space-5) var(--space-8);
  border: var(--border-1);
  background: var(--color-white);
  font-size: var(--fs-base-2);
  font-family: inherit;
  outline: none;
}

.wk-search-form input[type="search"]::-webkit-search-cancel-button,
.wk-refine-search__input::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none !important;
  opacity: 0 !important;
}

input[type="search"]::-ms-clear {
  display: none;
}

.wk-search-form input[type="search"]:focus {
  border-color: var(--color-copper);
}

.wk-search-header .wk-search-form {
  max-width: 100%;
}

.wk-search-header--browse {
  text-align: left;
}

.wk-search-header__title--browse {
  margin-left: auto;
  margin-right: auto;
}

.wk-search-header__lede {
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  color: var(--text-secondary);
  margin: 0 auto;
}

.wk-search-header--browse .wk-search-header__bar {
  margin-left: auto;
  margin-right: auto;
}

.wk-search-browse {
  margin-top: 36px;
}

.wk-search-browse__eyebrow {
  text-transform: uppercase;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-copper);
  margin-bottom: var(--space-10);
}

.wk-search-results__list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-40);
}

.wk-search-empty {
  text-align: center;
  padding: var(--space-18) 0;
}

.wk-search-empty h2 {
  margin-bottom: var(--space-10);
  font-size: clamp(var(--fs-8xl), 5vw, var(--fs-10xl));
}

.wk-search-empty p {
  margin-bottom: var(--space-15);
  font-size: var(--fs-md);
  color: var(--color-mid-gray);
  max-width: var(--content-mini);
  margin-left: auto;
  margin-right: auto;
}

.wk-search-empty__form {
  display: flex;
  gap: 0;
  max-width: var(--content-nano);
  margin: 0 auto var(--space-19);
}

/* ---------- SEARCH EMPTY STATE (0 matches per Figma 3 screenshots) ---------- */
.wk-search-nothing {
  padding: 40px 0 var(--space-21);
  text-align: center;
}

.wk-search-nothing__title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 48px;
  line-height: 54px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 16px;
}

.wk-search-nothing__lede {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  line-height: 32px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 54px;
}

.wk-refine-search {
  /* max-width: 640px;
  margin: 0 auto; */
  text-align: left;
}

.wk-refine-search__label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  margin-bottom: 4px;
}

.wk-refine-search__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px;
  align-items: stretch;
}

.wk-refine-search__input {
  width: 100%;
  max-height: 46px;
  padding: 8px 180px 8px 12px;
  font-size: var(--fs-lg);
  font-family: var(--font-body);
  background: #EDEAE4;
  border: 1px solid #A0673A;
  border-radius: 0;
  color: #888888;
  outline: none;
  box-sizing: border-box;
  transition: box-shadow 160ms ease;
}

.wk-refine-search__input::placeholder {
  color: var(--text-secondary);
  opacity: 0.72;
}

.wk-refine-search__input:focus {
  border-color: var(--color-copper-dark);
  box-shadow: 0 0 0 3px rgba(163, 104, 59, 0.12);
}

.wk-refine-search__submit {
  min-width: 120px;
  max-height: 46px;
  padding: 13px 36px;
  background: #141414;
  color: var(--color-white);
  border: 1px solid #141414;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-lg-2);
  text-transform: inherit;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.wk-refine-search__submit:hover {
  background: #000;
  border-color: #000;
}

.wk-search-browse-cats {
  padding: 80px 0px;
}

.wk-search-browse-cats__title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 32px;
  line-height: 38px;
  color: var(--text-primary);
  margin: 0 0 40px;
  text-align: left;
}

.wk-search-browse-cats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 64px 40px;
}

.wk-pillar-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.wk-pillar-card:hover .wk-pillar-card__name {
  color: var(--color-copper-dark);
}

.wk-pillar-card__icon {
  width: 40px;
  height: 40px;
  margin: 0 0 var(--space-9);
  color: var(--text-primary);
}

.wk-pillar-card__icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.wk-pillar-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  line-height: 26px;
  color: var(--text-primary);
  margin: 0 0 4px;
  transition: color 160ms ease;
}

.wk-pillar-card__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 22px;
  color: var(--text-secondary);
  margin: 0;
}

.wk-search-quote {
  padding: var(--space-12) 0 var(--space-24);
  border-top: 1px solid #1a1a1a;
  text-align: center;
}

.wk-search-quote__blockquote {
  margin: 0;
  padding-top: 16px;
  padding-bottom: 24px;
  border: 0;
}

.wk-search-quote__text {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 48px;
  line-height: 54px;
  color: #3D3D3A;
  max-width: 1280px;
  margin: 0 auto;
}

.wk-search-quote__media {
  width: 100%;
  aspect-ratio: 26 / 9;
  background-image: url(https://worthkeep.zeeframes.com/wp-content/uploads/2026/08/qaulity-about.webp);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.wk-search-quote__media--placeholder {
  position: relative;
}

.wk-search-quote__media--placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 248, 230, 0.35), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(255, 220, 175, 0.18), transparent 60%);
  mix-blend-mode: screen;
}

/* Tablet landscape (801–1024): browse grid 3-col, refine submit narrower */
@media (min-width: 801px) and (max-width: 1024px) {
  .wk-search-browse-cats__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablet (481–800): browse grid 2-col, refine form row → stacked */
/* @media (min-width: 481px) and (max-width: 800px) {
  .wk-search-browse-cats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-14); }
  .wk-refine-search__row { grid-template-columns: 1fr; }
  .wk-refine-search__submit { min-width: 100%; }
  .wk-search-quote__text { font-size: var(--fs-7xl); }
} */
/* Mobile (≤480): 2-col browse, refine stacked, title sizes reduced */
@media (max-width: 480px) {
  .wk-search-nothing {
    padding: var(--space-14) 0 var(--space-17);
  }

  .wk-search-nothing__title {
    font-size: var(--fs-10xl);
    margin-bottom: var(--space-7);
  }

  .wk-search-nothing__lede {
    font-size: var(--fs-base);
    line-height: var(--lh-loose);
  }

  .wk-search-nothing__lede br {
    display: none;
  }

  /* .wk-refine-search__row { grid-template-columns: 1fr; } */
  .wk-refine-search__input {
    min-height: 54px;
    padding: var(--space-5) var(--space-8);
    font-size: var(--fs-base);
  }

  .wk-refine-search__submit {
    /* min-width: 100%; */
    /* min-height: 54px; */
    /* letter-spacing: var(--ls-md); */
  }

  .wk-search-browse-cats {
    padding: var(--space-14) 0 var(--space-20);
  }

  .wk-search-browse-cats__title {
    font-size: var(--fs-7xl);
    margin-bottom: var(--space-11);
  }

  .wk-search-browse-cats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-12) var(--space-8);
  }

  .wk-pillar-card__icon {
    width: 32px;
    height: 32px;
    margin-bottom: var(--space-7);
  }

  .wk-pillar-card__icon svg {
    width: 32px;
    height: 32px;
  }

  .wk-pillar-card__name {
    font-size: var(--fs-xl);
    letter-spacing: var(--ls-sm-2);
    margin-bottom: var(--space-4);
  }

  .wk-pillar-card__desc {
    font-size: var(--fs-sm-2);
    line-height: var(--lh-loose-2);
  }

  .wk-search-quote {
    padding-top: var(--space-10);
  }

  /* .wk-search-quote__blockquote { padding: var(--space-12) 0 var(--space-14); } */
  .wk-search-quote__text {
    font-size: var(--fs-6xl);
    line-height: var(--lh-snug-2);
  }

  .wk-search-quote__text br {
    display: none;
  }

  .wk-search-quote__media {
    aspect-ratio: 16 / 9;
  }
}

/* ---------- 404 PAGE ---------- */
.not-f-main {
  background-color: #ffffff;
}

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

.wk-page-404 {
  background: var(--color-page);

}

.wk-404-hero {
  padding: var(--space-24) 0 var(--space-20);
  text-align: center;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 40px 80px 80px 80px;
  /* background-color: #ffffff; */
}

.wk-404-hero__inner {
  /* max-width: var(--content-narrow);
  margin: 0 auto; */
}

.wk-404-num {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 48px;
  line-height: 54px;
  color: var(--color-forge);
  margin: 0 0 24px;
}

.wk-404-title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 48px;
  line-height: 54px;
  letter-spacing: -0.01em;
  color: #1A1A18;
  margin: 0 0 16px;
}

.wk-404-sub {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  line-height: 32px;
  font-weight: 400;
  color: var(--text-secondary);
  margin: 0;
}

.wk-404-recent {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0px 80px 80px 80px;

}

.wk-404-recent__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 64px;
}

.wk-404-recent__label {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  line-height: 38px;
  color: var(--text-primary);
  margin: 0;
}

.wk-404-recent__viewall {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  line-height: 20px;
  color: #7C4F2C;
  text-decoration: none;
  transition: color 160ms ease;
}

.wk-404-recent__viewall:hover {
  color: var(--color-copper-dark);
}

.wk-404-recent__viewall-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.wk-404-recent__list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-40);
}

.wk-404-bottom {
  background: #EDEAE4;
  padding: 80px;
}

.wk-404-bottom__search {
  /* display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.25fr);
    gap: var(--space-16);
    align-items: center;
    margin-bottom: var(--space-22); */

  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-22);
}

.wk-404-bottom__title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 32px;
  line-height: 38px;
  color: var(--text-primary);
  margin: 0 0 4px;
}

.wk-404-bottom__lede {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  line-height: 32px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0;
}

.wk-refine-search--404 .wk-refine-search__row {
  position: relative;
  grid-template-columns: minmax(0, 1fr) auto;
}

.wk-refine-search--404 .wk-refine-search__glyph {
  position: absolute;
  right: calc(150px + 0px + 0px);
  top: 51%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: var(--text-secondary);
  pointer-events: none;
  z-index: 2;
}

.wk-refine-search--404 .wk-refine-search__glyph svg {
  width: 20px;
  height: 20px;
  display: block;
}

.error404 .wk-pillar-card {
  background-color: #EDEAE4;
}

.wk-404-browse {}

/* Tablet landscape 801–1024: search row → 1 col stack, browse 3-col */
@media (min-width: 801px) and (max-width: 1024px) {
  .wk-404-bottom__search {
    grid-template-columns: 1fr;
    gap: var(--space-11);
  }

  .wk-search-browse-cats__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablet 481–800: hero tighter, recent row 1-col browse 2-col, search stack */
/* @media (min-width: 481px) and (max-width: 800px) {
  .wk-404-hero { padding: var(--space-18) 0 var(--space-16); }
  .wk-404-title { font-size: var(--fs-8xl); }
  .wk-404-recent { padding-top: var(--space-4); padding-bottom: var(--space-20); }
  .wk-404-recent__label { font-size: var(--fs-2xl); }
  .wk-404-bottom__search { grid-template-columns: 1fr; gap: var(--space-10); margin-bottom: var(--space-19); }
  .wk-search-browse-cats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-14); }
  .wk-refine-search--404 .wk-refine-search__glyph { right: calc(18px + 20px + 18px); }
} */
/* Mobile ≤480: all stacked, recent label 2-line, glyph position correction */
@media (max-width: 480px) {
  .wk-404-hero {
    padding: var(--space-16) 0 var(--space-14);
  }

  .wk-404-num {
    font-size: var(--fs-14xl);
    margin-bottom: var(--space-7);
  }

  .wk-404-title {
    font-size: var(--fs-8xl);
    line-height: var(--lh-tight-2);
    margin-bottom: var(--space-5);
  }

  /* .wk-404-sub {
    font-size: var(--fs-base);
  } */

  .wk-404-recent {
    padding-top: 0;
    padding-bottom: var(--space-17);
  }

  .wk-404-recent__header {
    gap: var(--space-8);
    margin-bottom: var(--space-11);
  }

  .wk-404-recent__label {
    font-size: var(--fs-2xl);
    letter-spacing: var(--ls-lg-2);
  }

  .wk-404-recent__viewall {
    font-size: var(--fs-xs);
    letter-spacing: var(--ls-md);
  }

  .wk-404-recent__list {
    gap: var(--space-14);
  }

  .wk-404-bottom {
    padding: var(--space-18) 0 var(--space-21);
  }

  .wk-404-bottom__search {
    grid-template-columns: 1fr;
    gap: var(--space-9);
    margin-bottom: 64px;
  }


  .wk-404-bottom__title {
    font-size: var(--fs-7xl);
    line-height: var(--lh-tight-2);
    margin-bottom: var(--space-4);
  }

  .wk-404-bottom__lede {
    font-size: var(--fs-base);
  }

  .wk-refine-search--404 .wk-refine-search__row {
    grid-template-columns: 1fr;
  }

  .wk-refine-search--404 .wk-refine-search__glyph {
    /* right: var(--space-8); */
    top: 27px;
    transform: none;
  }

  .wk-search-browse-cats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-12) var(--space-8);
  }
}

/* SECTION: Search Results + 404 End */

/* SECTION: Pillar Strip (1 Big + 3 Small) Start
   ---------- PILLAR STRIP: SPLIT LAYOUT (1 big + 3 small) ---------- */
.wk-section--pillar {
  padding: 0 80px 80px 80px
}

.wk-home-categories {
  padding: 80px 80px 64px 80px
}

.wk-home-categories__label {
  font-family: var(--heading-h1-font);
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  color: var(--text-primary);
  margin-bottom: var(--spacing-32);
}

.wk-section--pillar .wk-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-12);
  border-bottom: 1px solid var(--text-primary);
  padding-bottom: var(--space-7);
  margin-bottom: 32px;
}

.wk-section--pillar .wk-section__head h2 {
  font-family: var(--heading-h1-font);
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  color: var(--text-primary);
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
}

.wk-pillar-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--spacing-40);
  contain: layout style;
}

.wk-pillar-strip__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xl-2);
  text-transform: uppercase;
  color: #A0673A;
}

.wk-pillar-strip__lead {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  border-radius: 12px;
  flex-direction: column;
}

.wk-pillar-strip__lead-media {
  position: relative;
  aspect-ratio: var(--ar-16-10);
  background: var(--border-subtle);
  overflow: hidden;
}

.wk-pillar-strip__lead-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wk-pillar-strip__badge {
  position: absolute;
  top: var(--space-7);
  right: var(--space-7);
  background: var(--action-primary);
  color: var(--action-primary-text);
  padding: var(--space-3) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xl);
  text-transform: uppercase;
}

.wk-pillar-strip__lead-body {
  padding: var(--spacing-16);
  display: flex;
  flex-direction: column;
}

.wk-pillar-strip__lead-title {
  margin: var(--space-1) 0 var(--space-3);
  font-size: 20px;
  line-height: 26px;
}

.wk-pillar-strip__lead-title a {
  color: var(--text-primary);
}

.wk-pillar-strip__lead-excerpt {
  margin: 0 0 var(--spacing-16);
  font-size: 14px;
  line-height: 22px;
  color: #3D3D3A;
}

.wk-pillar-strip__lead-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-16);
  flex-wrap: wrap;
  margin-top: auto;
}

.wk-pillar-strip__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 120px;
  padding: 14px 47px;
  background: #7C4F2C;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  text-transform: none;
}

.wk-pillar-strip__buy:hover {
  background: var(--action-primary-hover);
  color: var(--action-primary-text);
}

.wk-pillar-strip__price {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 140px;
  padding: var(--space-7) var(--space-18);
  background: var(--action-primary);
  color: var(--action-primary-text);
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  text-transform: none;
}

.wk-pillar-strip__learn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-link);
}

.wk-pillar-strip__learn:hover {
  color: var(--text-link-hover);
}

.wk-pillar-strip__learn svg {
  width: 24px;
  height: 24px;
}

.wk-pillar-strip__smalls {
  display: grid;
  gap: 0;
}

.wk-pillar-strip__item {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 46px;
  align-items: flex-start;
  padding: var(--spacing-16) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.wk-pillar-strip__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.wk-pillar-strip__item:first-child {
  padding-top: 0;
}

.wk-pillar-strip__item-body {
  min-width: 0;
}

.wk-pillar-strip__item-title {
  margin: var(--space-1) 0 var(--space-3);
  font-family: var(--card-compact-font);
  font-size: 20px;
  line-height: 26px;
  color: var(--text-primary);
}

.wk-pillar-strip__item-title a {
  color: inherit;
}

.wk-pillar-strip__item-title a:hover {
  color: var(--text-link-hover);
}

.wk-pillar-strip__item-excerpt {
  font-size: 14px;
  line-height: 22px;
  color: #3D3D3A;
  font-weight: 400;
}

.wk-pillar-strip__item-media {
  aspect-ratio: var(--ar-1-1);
  display: block;
  overflow: hidden;
  background: var(--border-subtle);
  contain: layout paint;
  border-radius: var(--radius-md);
}

.wk-pillar-strip__item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .wk-section--pillar {
    padding: var(--spacing-16) 0 var(--spacing-48);
  }

  /* .wk-section--pillar > .wk-container { max-width: 800px; margin-left: auto; margin-right: auto; } */
  .wk-home-categories {
    padding-top: var(--spacing-32);
  }

  .wk-home-categories__label {
    font-size: 32px;
    margin-bottom: 0;
  }

  /* .wk-home-categories > .wk-container { max-width: 800px; margin-left: auto; margin-right: auto; } */
  .wk-section--pillar .wk-section__head {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
  }

  .wk-section--pillar .wk-section__head h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .wk-pillar-strip {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wk-pillar-strip .wk-pillar-strip__card--lead {
    display: none !important;
  }

  .wk-pillar-strip .wk-pillar-strip__card--compact {
    display: grid;
  }

  .wk-pillar-strip__smalls {
    display: grid;
    gap: 0;
    grid-template-columns: 1fr;
  }

  .wk-pillar-strip__item {
    grid-template-columns: 1fr 140px;
    padding: 18px;
  }

  /* .wk-pillar-strip__item-title { font-size: var(--fs-xl); line-height: var(--lh-snug-2); } */
  /* .wk-pillar-strip__item-excerpt { font-size: var(--fs-sm); line-height: var(--lh-loose); } */
  .wk-pillar-strip__learn {
    font-size: var(--fs-sm-2);
  }

  .wk-pillar-strip__learn svg {
    width: 16px;
    height: 16px;
  }

  .wk-pillar-strip__item-media {
    border-radius: var(--radius-md);
    overflow: hidden;
  }
}

/* @media (max-width: 480px) {
  .wk-section--pillar { padding: var(--spacing-16) 0 var(--spacing-32); }
  .wk-home-categories { padding-top: var(--spacing-16); }
  .wk-home-categories__label { font-size: var(--fs-4xl); margin-bottom: var(--spacing-16); }
  .wk-section--pillar .wk-section__head { margin-bottom: var(--spacing-16); padding-bottom: var(--space-5); }
  .wk-section--pillar .wk-section__head h2 { font-size: var(--heading-h3-size-m); line-height: var(--heading-h3-lh-m); }
  .wk-pillar-strip__item { grid-template-columns: 1fr 110px; gap: var(--spacing-16); padding: var(--spacing-16) 0; }
  .wk-pillar-strip__label { font-size: var(--fs-xs-2); letter-spacing: var(--ls-lg-2); }
  .wk-pillar-strip__item-title { margin: 0 0 var(--space-3); font-size: var(--fs-lg); line-height: var(--lh-snug-2); }
  .wk-pillar-strip__item-excerpt { margin: 0 0 var(--spacing-8); font-size: var(--fs-sm-2); line-height: var(--lh-loose-2); }
  .wk-pillar-strip__learn { min-height: auto; padding: 0; font-size: var(--fs-sm-2); }
  .wk-pillar-strip__learn svg { width: 16px; height: 16px; }
  .wk-pillar-strip__item-media { border-radius: var(--radius-md); }
} */
/* SECTION: Pillar Strip (1 Big + 3 Small) End */

/* SECTION: Brand Spotlight (Homepage Zone D) Start
   ---------- BRAND SPOTLIGHT (Homepage Zone D) ---------- */
.wk-brand-spotlight {
  padding: var(--space-20) 0;
  background: var(--color-white);
  contain: layout style;
}

.wk-brand-spotlight__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-18);
  align-items: center;
}

.wk-brand-spotlight h2 {
  font-size: clamp(var(--fs-5xl), 4.5vw, var(--fs-9xl));
  line-height: var(--lh-tight-2);
  margin-bottom: var(--space-10);
}

.wk-brand-spotlight p {
  font-size: var(--fs-body);
  line-height: var(--lh-loose-2);
  opacity: var(--opacity-90);
  margin-bottom: var(--space-14);
  max-width: 420px;
}

.wk-brand-spotlight__cta-ghost {
  pointer-events: none;
  opacity: var(--opacity-85);
}

.wk-brand-spotlight__products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-9);
  contain: layout style;
}

.wk-brand-spotlight__media {
  aspect-ratio: var(--ar-3-4);
  background: var(--color-light-rule);
  overflow: hidden;
  contain: layout paint;
}

.wk-brand-spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wk-brand-spotlight__brand {
  margin-top: var(--space-5);
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xl-2);
  text-transform: uppercase;
  color: var(--color-forge);
}

.wk-brand-spotlight__brand a {
  color: inherit;
}

@media (max-width: 768px) {
  .wk-brand-spotlight__inner {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
}

@media (max-width: 480px) {
  .wk-brand-spotlight__products {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SECTION: Brand Spotlight (Homepage Zone D) End */

/* SECTION: Category Icon Grid (Search No-Results) Start
   ---------- CATEGORY ICON GRID (Search no-results) ---------- */
.wk-category-icon-grid__title {
  font-family: var(--font-body);
  font-size: var(--fs-sm-2);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xl-2);
  text-transform: uppercase;
  color: var(--color-copper);
  text-align: center;
  margin-bottom: var(--space-15);
}

.wk-category-icon-grid__wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-10);
  contain: layout style;
}

.wk-category-icon-card {
  display: block;
  padding: var(--space-10);
  background: var(--color-white);
  border: var(--border-1);
  text-align: center;
  color: var(--color-forge);
  transition: transform var(--dur-3) var(--ease-default), border-color var(--dur-3) var(--ease-default);
}

.wk-category-icon-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-copper);
}

.wk-category-icon-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-7);
  border-radius: var(--radius-full);
  background: var(--color-parchment);
  border: var(--border-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wk-category-icon-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-copper);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wk-category-icon-card h4 {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-lg-2);
  text-transform: uppercase;
  color: var(--color-forge);
  margin-bottom: var(--space-3);
}

.wk-category-icon-card p {
  font-size: var(--fs-sm-2);
  line-height: var(--lh-relaxed-2);
  color: var(--color-mid-gray);
}

@media (min-width: 481px) and (max-width: 768px) {
  .wk-category-icon-grid__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .wk-category-icon-grid__wrap {
    grid-template-columns: 1fr;
  }
}

/* SECTION: Category Icon Grid (Search No-Results) End */

/* SECTION: Sidebar (Single Post) Start
   ---------- SIDEBAR ---------- */
.wk-sidebar-default {
  display: grid;
  gap: var(--space-15);
  contain: layout style;
}

.wk-sidebar-box {
  padding: var(--space-14);
  background: var(--color-white);
  border: var(--border-1);
}

.wk-sidebar-title {
  font-family: var(--font-body);
  font-size: var(--fs-sm-2);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xl-2);
  text-transform: uppercase;
  color: var(--color-copper);
}

.wk-sidebar__signup .wk-sidebar-title {
  margin-bottom: var(--space-4);
}

.wk-sidebar__signup p {
  font-size: var(--fs-sm-2);
  line-height: var(--lh-relaxed-2);
  margin-bottom: var(--space-7);
  opacity: var(--opacity-90);
}

.wk-sidebar-form {
  display: grid;
  gap: var(--space-3);
}

.wk-sidebar-form input[type="email"] {
  padding: var(--space-4) var(--space-6);
  border: var(--border-1);
  background: var(--color-parchment);
  font-size: var(--fs-base);
  font-family: inherit;
  outline: none;
}

.wk-sidebar-form input:focus {
  border-color: var(--color-copper);
}

.wk-sidebar-form .wk-btn {
  padding: var(--space-5);
  font-size: var(--fs-xs);
}

.wk-sidebar__recent-pillar .wk-sidebar-title {
  margin-bottom: var(--space-12);
}

.wk-sidebar-small-list {
  display: grid;
  gap: var(--space-12);
}

.wk-sidebar__about .wk-sidebar-title {
  margin-bottom: var(--space-8);
}

.wk-sidebar-about-text {
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  color: var(--color-mid-gray);
}

.wk-sidebar-desc {
  font-size: var(--fs-sm-2);
  line-height: var(--lh-relaxed-2);
  margin-bottom: var(--space-7);
  opacity: var(--opacity-90);
}

.wk-sidebar-pillar .wk-section-label-like {
  font-family: var(--font-body);
  font-size: var(--fs-sm-2);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xl-2);
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: var(--space-12);
  display: block;
}

.wk-sidebar-about {
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  color: var(--color-mid-gray);
}

/* SECTION: Sidebar (Single Post) End */

/* SECTION: Related Posts (Single) Start
   ---------- RELATED POSTS (Single — "Further Reading") ---------- */
.wk-related {
  margin-top: var(--space-22);
}

.wk-related__head-wrap {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-light-rule);
  margin-bottom: var(--space-12);
}

.wk-related__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #1A1A18;
  margin: 0;
}

.wk-related__head {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-lg);
  text-transform: uppercase;
  color: var(--color-forge);
  margin-bottom: var(--space-11);
}

.wk-related__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 24px;
  contain: layout style;
  align-items: stretch;
}

/* Related card - custom wk-related-card component per template */
.wk-related-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
  contain: layout style;
  min-height: 0;
  min-width: 0;
}

.wk-related-card__media {
  display: block;
  width: 100%;
  aspect-ratio: var(--ar-16-10);
  overflow: hidden;
  border-radius: 0;
  background: var(--color-light-rule);
  flex: 0 0 auto;
  position: relative;
}

.wk-related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-4) var(--ease-default);
}

.wk-related-card__media:hover img {
  transform: scale(1.03);
}

.wk-related-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex: 1 1 auto;
  min-height: 0;
}

.wk-related-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-3xl);
  line-height: 26px;
  color: #1A1A18;
  margin: 0;
}

.wk-related-card__title a {
  color: inherit;
  text-decoration: none;
}

.wk-related-card__title a:hover {
  color: var(--color-copper);
}

.wk-related-card__excerpt {
  font-family: var(--font-body);
  font-size: var(--fs-sm-2);
  line-height: var(--lh-relaxed-2);
  color: var(--color-mid-gray);
  margin: 0 0 var(--space-4);
}

.wk-related-card__learn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-copper);
  letter-spacing: var(--ls-sm-2);
  text-decoration: none;
  padding-bottom: 1px;
  min-height: 40px;
  transition: opacity var(--dur-2) var(--ease-default);
  align-self: flex-start;
}

.wk-related-card__learn svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.wk-related-card__learn:hover {
  opacity: var(--opacity-75);
}

/* Tablet (801 breakpoint) — 2 columns */
/* @media (min-width: 481px) and (max-width: 800px) {
  .wk-related__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    gap: var(--space-9);
  }
} */
/* Mobile ≤ 480px — single 1 column vertical stack (no scroll, no overlap) */
@media (max-width: 480px) {
  .wk-related__row {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    grid-template-columns: none;
    grid-auto-flow: initial;
    overflow-x: visible;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: auto;
    gap: var(--space-11);
    padding: 0;
  }

  .wk-related__row>* {
    scroll-snap-align: none;
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }
}

/* SECTION: Related Posts (Single) End */

/* SECTION: Affiliate Disclosure Start
   ---------- AFFILIATE DISCLOSURE ---------- */
.wk-affiliate-disclosure--footer {
  font-size: var(--fs-sm);
  opacity: var(--opacity-70);
}

.wk-affiliate-disclosure--top {
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.wk-affiliate-disclosure--top hr {
  border: 0;
  border-top: var(--border-1);
  margin: 0 0 var(--space-8);
}

.wk-affiliate-disclosure--top p {
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-sm-2);
  line-height: var(--lh-relaxed-2);
  color: var(--color-mid-gray);
  text-align: center;
  margin: 0 0 var(--space-8);
}

.wk-affiliate-disclosure--top hr:last-child {
  margin: 0;
}

/* Inline single-post disclosure: between byline & hero (hr/text/hr sandwich) */
.wk-affiliate-disclosure--inline {
  text-align: center;
  padding: 0 80px;
}

.wk-affiliate-disclosure--inline hr {
  border: 0;
  border-top: 1px solid var(--color-light-rule);
  margin: 0;
}

.wk-affiliate-disclosure--inline hr+p {
  margin-top: var(--space-7);
}

.wk-affiliate-disclosure--inline p {
  font-size: var(--fs-sm);
  line-height: 16px;
  color: #52443B;
  text-align: center;
  margin: 0 0 var(--space-7);
}

.wk-disclosure-top {
  max-width: 740px;
  margin: 0 auto;
}

.wk-disclosure-top hr {
  border: 0;
  border-top: var(--border-1);
  margin: 0 0 var(--space-8);
}

.wk-disclosure-top p {
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-sm-2);
  line-height: var(--lh-relaxed-2);
  color: var(--color-mid-gray);
  text-align: center;
  margin: 0 0 var(--space-8);
}

.wk-disclosure-footer {
  font-size: var(--fs-sm);
  opacity: var(--opacity-70);
}

/* SECTION: Affiliate Disclosure End */

/* SECTION: Default Page (page.php) Start
   ---------- PAGE: DEFAULT (page.php) ---------- */
.wk-page-default {
  padding: var(--space-22) 0;
}

.wk-page-default__header {
  padding: var(--space-10) 0 var(--space-15);
  text-align: left;
}

.wk-page-default__header h1 {
  margin-bottom: var(--space-10);
}

.wk-page-default .entry-content p {
  font-size: var(--fs-body);
  line-height: var(--lh-loose-3);
}

/* SECTION: Default Page (page.php) End */

/* SECTION: About Page (page-about.php) Start
   ---------- PAGE: ABOUT — 4 editorial zones ---------- */
.wk-about {
  padding: 0;
}

/* ---------- ZONE 1 · About Worthkeep hero ---------- */
.wk-about__hero {
  padding: var(--space-24) 0 var(--space-25);
}

.wk-about__hero-inner {
  text-align: left;
  padding-top: 80px;
}

.wk-about__eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-lg-2);
  text-transform: uppercase;
  color: var(--color-copper);
  display: inline-block;
  margin: 0 0 16px;
}

.wk-about__title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-7xl);
  line-height: 46px;
  color: #1A1A18;
  margin: 0 0 var(--space-13);
}

.wk-about__body p {
  font-size: 18px;
  line-height: 32px;
  color: var(--text-secondary);
  margin: 0 0 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wk-about__body p:last-child {
  margin-bottom: 0;
}

/* ---------- ZONE 2 · What We Cover grid ---------- */
.wk-about__cover {
  padding: 80px;
  max-width: var(--content-width);
  margin: 0 auto;
}

.wk-about__cover-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 0 var(--space-18);
  padding: 0;
}

.wk-about__cover-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  color: var(--text-primary);
  margin: 0 0 var(--space-11);
}

.wk-about__cover-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-light-rule);
}

.wk-about__cover-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 80px 40px;
  align-items: start;
  padding: var(--space-6) 0 0;
}

.wk-cover-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-decoration: none;
  color: inherit;
  padding: 0;
  border: 0;
  background: transparent;
  transition: none;
  min-width: 0;
}

.wk-cover-card:hover,
.wk-cover-card:focus-visible {
  background: transparent;
  outline: none;
}

.wk-cover-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 0 var(--space-11);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: none;
  padding: 0;
}

.wk-cover-card:hover .wk-cover-card__icon,
.wk-cover-card:focus-visible .wk-cover-card__icon {
  color: var(--text-secondary);
}

.wk-cover-card__icon svg {
  width: 44px;
  height: 44px;
  display: block;
}

.wk-cover-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 20px;
  line-height: 26px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0 0 4px;
}

.wk-cover-card__desc {
  font-size: var(--fs-base);
  line-height: 22px;
  color: #3D3D3A;
  margin: 0;
  max-width: none;
}

/* ---------- ZONE 3 · Editorial Standard pull-quote ---------- */
.wk-about__standard {
  padding: 80px;
  background: #EDEAE4;
  text-align: center;
}

.wk-about__standard .wk-container--narrow {
  max-width: 960px;
}

.wk-about__standard-quote {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: var(--fw-semibold);
  font-size: 33px;
  line-height: 36px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-15);
  padding: 0;
  border: 0;
  max-width: 810px;
  margin-left: auto;
  margin-right: auto;
}

.wk-about__standard-quote .wk-dq {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: var(--fw-regular);
  color: var(--text-primary);
  line-height: 0.7;
  vertical-align: 0.05em;
}

.wk-about__standard-quote .wk-dq--ldquo {
  margin-right: 0.1em;
}

.wk-about__standard-quote .wk-dq--rdquo {
  margin-left: 0.06em;
}

.wk-about__standard-label {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--color-copper);
  margin: 0;
}

/* ---------- ZONE 4 · Work with Worthkeep CTA ---------- */
.wk-about__work {
  padding: 80px;
}

.wk-about__work-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}

.wk-about__work-title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-5xl);
  line-height: 38px;
  color: var(--text-primary);
  letter-spacing: 1.2;
  margin: 0 0 16px;
}

.wk-about__work-copy {
  font-size: var(--fs-xl);
  line-height: var(--lh-loose-2);
  color: var(--text-secondary);
  margin: 0 auto 0;
  max-width: 580px;
}

.wk-about__work-email {
  color: var(--color-copper);
  text-decoration: none;
  border-bottom: 0;
  padding-bottom: 0;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.wk-about__work-email:hover,
.wk-about__work-email:focus-visible {
  color: var(--color-copper-dark);
  outline: none;
  border-bottom: 1px solid currentColor;
}

.wk-about__work-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-copper);
  opacity: 1;
  margin-top: 104px;
}

/* ---- Tablet landscape 801–1024px ---- */
@media (min-width: 801px) and (max-width: 1024px) {
  .wk-about__cover-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-15) var(--space-11);
  }
}

/* ---- Tablet 481–800px ---- */
/* @media (min-width: 481px) and (max-width: 800px) {
  .wk-about__hero { padding: var(--space-22) 0 var(--space-23); }
  .wk-about__title { font-size: var(--fs-6xl); margin-bottom: var(--space-11); }
  .wk-about__body p { font-size: var(--fs-xl); line-height: var(--lh-loose-2); }

  .wk-about__cover { padding-bottom: var(--space-23); }
  .wk-about__cover-title { font-size: var(--fs-5xl); margin-bottom: var(--space-10); }
  .wk-about__cover-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-14) var(--space-10);
  }
  .wk-cover-card { padding: 0; }
  .wk-cover-card__icon { width: 48px; height: 48px; margin-bottom: var(--space-10); }
  .wk-cover-card__icon svg { width: 42px; height: 42px; }
  .wk-cover-card__title { font-size: var(--fs-xl); margin-bottom: var(--space-7); }
  .wk-cover-card__desc { font-size: var(--fs-base); }

  .wk-about__standard { padding: var(--space-24) 0; }
  .wk-about__standard-quote { font-size: var(--fs-5xl); margin-bottom: var(--space-14); line-height: 1.22; }

  .wk-about__work { padding: var(--space-24) 0 var(--space-26); }
  .wk-about__work-title { font-size: var(--fs-4xl); }
  .wk-about__work-copy { font-size: var(--fs-lg); }
  .wk-about__work-rule { margin-top: var(--space-16); }
} */
/* ---- Mobile ≤ 480px ---- */
/* @media (max-width: 480px) {
  .wk-about__hero { padding: var(--space-20) 0 var(--space-21); }
  .wk-about__eyebrow { margin-bottom: var(--space-8); font-size: var(--fs-sm-2); }
  .wk-about__title { font-size: var(--fs-5xl); line-height: 1.15; margin-bottom: var(--space-10); letter-spacing: -0.01em; }
  .wk-about__body p { font-size: var(--fs-lg); line-height: var(--lh-loose-3); margin-bottom: var(--space-9); }

  .wk-about__cover { padding-bottom: var(--space-21); }
  .wk-about__cover-head { margin-bottom: var(--space-14); }
  .wk-about__cover-title { font-size: var(--fs-4xl); margin-bottom: var(--space-9); }
  .wk-about__cover-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    gap: var(--space-13) var(--space-9);
    padding-top: 0;
  }
  .wk-cover-card { padding: 0; background: transparent; border: 0; }
  .wk-cover-card:hover { background: transparent; }
  .wk-cover-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: var(--space-9);
  }
  .wk-cover-card__icon svg {
    width: 38px;
    height: 38px;
    display: block;
  }
  .wk-cover-card__title {
    font-size: var(--fs-base);
    margin-bottom: var(--space-6);
    letter-spacing: var(--ls-lg-2);
    line-height: 1.15;
  }
  .wk-cover-card__desc {
    font-size: var(--fs-sm);
    line-height: var(--lh-relaxed-3);
    max-width: none;
  }

  .wk-about__standard { padding: var(--space-22) 0; }
  .wk-about__standard-quote { font-size: var(--fs-4xl); line-height: 1.28; margin-bottom: var(--space-13); }
  .wk-about__standard-label { letter-spacing: var(--ls-xl-2); font-size: var(--fs-sm-2); }

  .wk-about__work { padding: var(--space-22) 0 var(--space-24); }
  .wk-about__work-title { font-size: var(--fs-4xl); margin-bottom: var(--space-10); }
  .wk-about__work-copy { font-size: var(--fs-lg); }
  .wk-about__work-rule { margin-top: var(--space-15); }
} */
/* SECTION: About Page (page-about.php) End */

/* SECTION: Media Kit Page (page-media-kit.php) Start
   ---------- MEDIA KIT ---------- */
.wk-mk {
  background: var(--color-white);
  color: var(--text-primary);
}

/* ---------- ZONE 1 · Hero ---------- */
.wk-mk__hero {
  background: #EDEAE4;
  padding: 80px;
  text-align: center;
}

.wk-mk__hero-inner {
  margin: 0 auto;
  max-width: 820px;
}

.wk-mk__hero-title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 48px;
  line-height: 54px;
  color: var(--text-primary);
  margin: 0 0 var(--space-11);
}

.wk-mk__hero-copy {
  font-size: 18px;
  line-height: 32px;
  color: var(--text-secondary);
  margin: 0 auto var(--space-15);
  max-width: 600px;
}

.wk-mk__hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.wk-mk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 var(--space-13);
  border: 0;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  line-height: 1.2;
  letter-spacing: var(--ls-lg-2);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.wk-mk-btn--copper {
  padding: 16px 80px;
  background: var(--color-copper);
  color: var(--color-white);
}

.wk-mk-btn--copper:hover,
.wk-mk-btn--copper:focus-visible {
  background: var(--color-copper-dark);
  color: var(--color-white);
  outline: none;
}

.wk-mk-btn--copper-dark {
  background: var(--color-copper-dark);
}

.wk-mk-btn--copper-dark:hover,
.wk-mk-btn--copper-dark:focus-visible {
  background: var(--color-copper);
}

.wk-mk-btn--disabled,
.wk-mk-btn--disabled:hover,
.wk-mk-btn--disabled:focus-visible {
  background: rgba(124, 79, 44, 0.5);
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
}

.wk-mk-link--email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 0 2px;
  border-bottom: 1.5px solid rgba(28, 28, 28, 0.2);
  color: #3D3D3A;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: var(--fs-base);
  text-transform: uppercase;
  white-space: nowrap;
}

.wk-mk-link--email:hover,
.wk-mk-link--email:focus-visible {
  color: var(--color-copper);
  border-color: rgba(var(--rgb-copper), 0.6);
  outline: none;
}

/* ---------- ZONE 2 · A Signal in the Noise split ---------- */
.wk-mk__signal {
  padding: 80px;
  background: var(--color-white);
}

.wk-mk__signal-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.wk-mk__section-title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 32px;
  line-height: 38px;
  color: var(--text-primary);
  margin: 0 0 var(--space-11);
}

.wk-mk__signal-title {
  margin-bottom: var(--space-11);
}

.wk-mk__para {
  font-size: var(--fs-xl);
  line-height: 32px;
  color: var(--text-secondary);
  margin: 0 0 16px;
  max-width: 52ch;
}

.wk-mk__para:last-child {
  margin-bottom: 0;
}

.wk-mk__signal-media {
  position: relative;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  line-height: 0;
}

.wk-mk__signal-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.wk-mk__signal-placeholder {
  width: 100%;
  background-repeat: no-repeat !important;
  aspect-ratio: 4 / 3;
  background: url(https://worthkeep.zeeframes.com/wp-content/uploads/2026/08/a-signature.webp);
  position: relative;
  background-position: right center !important;
  background-size: cover !important;
}

/* .wk-mk__signal-placeholder::before {
  content: "";
  position: absolute;
  inset: 12% 6% 10% 6%;
  background: linear-gradient(140deg, #6b4524 0%, #4a2f19 45%, #2f1e10 100%);
  transform: rotate(-6deg);
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
} */

/* ---------- ZONE 3 · Stats bar ---------- */
.wk-mk__stats {
  padding: 40px 80px;
  background: #EDEAE4;
}

.wk-mk__stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.wk-mk__stat {
  position: relative;
  padding: 14px 0px;
  text-align: center;
}

.wk-mk__stat:nth-child(n + 2)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(var(--rgb-copper), 0.3);
}

.wk-mk__stat-label {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  line-height: 16px;
  letter-spacing: var(--ls-xl-2);
  text-transform: uppercase;
  color: var(--color-copper);
  margin: 0 0 4px;
}

.wk-mk__stat-value {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 24px;
  line-height: 30px;
  color: var(--text-primary);
  margin: 0;
}

/* ---------- ZONE 4 · Editorial Verticals ---------- */
.wk-mk__verticals {
  padding: 80px;
  background: #F7F6F4;
  border-top: 1px solid rgba(28, 28, 28, 0.08);
  border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

.wk-mk__verticals-head {
  text-align: center;
  margin-bottom: 40px;
}

.wk-mk__verticals-title {
  margin: 0;
}

.wk-mk__verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-17) var(--space-17);
  align-items: start;
  max-width: 1072px;
  margin: 0 auto;
  padding: 0;
}

.wk-mk__verticals-grid .wk-mk-vertical:nth-child(n+5) {
  margin-top: var(--space-6);
}

.wk-mk-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-5);
  min-width: 0;
}

.wk-mk-vertical__icon {
  width: 60px;
  height: 60px;
  margin: 0 0 var(--space-9);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wk-mk-vertical__icon svg {
  width: 44px;
  height: 44px;
  display: block;
}

.wk-mk-vertical__label {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 20px;
  text-transform: uppercase;
  color: #3D3D3A;
  margin: 0;
  line-height: 26px;
}

/* ---------- ZONE 5 · Sponsorship Opportunities 2x2 ---------- */
.wk-mk__sponsorship {
  padding: 80px;
  background: var(--color-white);
}

.wk-mk__sponsorship .wk-container--medium {
  max-width: 100% !important;
}

.wk-mk__sponsorship-head {
  margin-bottom: var(--space-14);
}

.wk-mk__sponsorship-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
}

.wk-mk-card {
  position: relative;
  background: #EDEAE4;
  padding: 40px;
  min-height: 215px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wk-mk-card__badge {
  position: absolute;
  top: var(--space-12);
  right: var(--space-12);
  display: inline-block;
  padding: 6px 12px 5px;
  background: var(--color-copper-dark);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-xl);
  text-transform: uppercase;
  line-height: 1;
}

.wk-mk-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 24px;
  line-height: 30px;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.wk-mk-card__copy {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
  margin: 0;
  max-width: 48ch;
}

/* ---------- ZONE 6 · Editorial quote + Dark CTA ---------- */
.wk-mk__quote {
  padding: 80px;
  background: #EDEAE4;
}

.wk-mk-quote {
  position: relative;
  padding: var(--space-5) 0 var(--space-5) var(--space-12);
  margin: 0;
  max-width: 784px;
  margin-left: auto;
  margin-right: auto;
}

.wk-mk-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-copper);
}

.wk-mk-quote__text {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: var(--fw-semibold);
  font-size: 24px;
  line-height: 30px;
  color: var(--text-primary);
  margin: 0 0 var(--space-11);
  padding: 0;
  border: 0;
  quotes: none;
}

.wk-mk-quote__cite {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 30px;
  font-weight: var(--fw-regular);
  text-transform: uppercase;
  color: var(--text-secondary);
  font-style: normal;
  margin: 0;
}

.wk-mk__cta-dark {
  background-color: #1A1A18;
  padding: 80px;
  text-align: center;
  color: var(--color-white);
}

.wk-mk__cta-dark-inner {
  margin: 0 auto;
  max-width: 820px;
  padding: 0;
}

.wk-mk__cta-dark-title {
  color: var(--color-white);
  margin: 0 0 var(--space-11);
}

.wk-mk__cta-dark-copy {
  font-size: var(--fs-xl);
  line-height: 32px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 auto 40px;
  max-width: 56ch;
}

/* ---------- Responsive: Tablet landscape 801–1024px ---------- */
@media (min-width: 801px) and (max-width: 1024px) {
  .wk-mk__signal-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-13);
  }

  .wk-mk__verticals-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-15) var(--space-10);
  }

  .wk-mk__verticals-grid .wk-mk-vertical:nth-child(n+5) {
    margin-top: 0;
  }
}

/* ---------- Responsive: Tablet 481–800px ---------- */
/* @media (min-width: 481px) and (max-width: 800px) {
  .wk-mk__hero { padding: var(--space-23) 0 var(--space-24); }
  .wk-mk__hero-title { font-size: var(--fs-6xl); margin-bottom: var(--space-10); }
  .wk-mk__hero-copy { font-size: var(--fs-xl); margin-bottom: var(--space-12); }
  .wk-mk__hero-ctas { gap: var(--space-9); }
  .wk-mk-btn { padding: 0 var(--space-11); font-size: var(--fs-sm-2); min-height: 54px; }

  .wk-mk__signal { padding: var(--space-24) 0 var(--space-23); }
  .wk-mk__signal-row {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-flow: row;
    gap: var(--space-14);
  }
  .wk-mk__section-title { font-size: var(--fs-6xl); }
  .wk-mk__para { font-size: var(--fs-lg); margin-bottom: var(--space-8); max-width: none; }

  .wk-mk__stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
  .wk-mk__stat:nth-child(n+3)::before { background: rgba(var(--rgb-copper), 0.3); }
  .wk-mk__stat:nth-child(3)::before { top: 18%; }
  .wk-mk__stat:nth-child(2)::before { background: rgba(var(--rgb-copper), 0.3); }
  .wk-mk__stat-value { font-size: var(--fs-3xl); }

  .wk-mk__verticals { padding: var(--space-24) 0 var(--space-25); }
  .wk-mk__verticals-head { margin-bottom: var(--space-15); }
  .wk-mk__verticals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-14) var(--space-9);
  }
  .wk-mk__verticals-grid .wk-mk-vertical:nth-child(n+5) { margin-top: 0; }
  .wk-mk-vertical__label { font-size: var(--fs-xl); }

  .wk-mk__sponsorship { padding: var(--space-24) 0 var(--space-23); }
  .wk-mk__sponsorship-grid { grid-template-columns: minmax(0, 1fr); gap: var(--space-10); }
  .wk-mk-card { padding: var(--space-12) var(--space-11) var(--space-13); min-height: auto; }
  .wk-mk-card__title { font-size: var(--fs-4xl); }
  .wk-mk-card__copy { font-size: var(--fs-base); }

  .wk-mk__quote { padding: var(--space-22) 0; }
  .wk-mk-quote { padding-left: var(--space-10); max-width: none; }
  .wk-mk-quote__text { font-size: var(--fs-4xl); line-height: 1.32; margin-bottom: var(--space-9); }

  .wk-mk__cta-dark { padding: var(--space-24) 0; }
  .wk-mk__cta-dark-copy { font-size: var(--fs-lg); margin-bottom: var(--space-12); } */
/* } */

/* ---------- Responsive: Mobile ≤ 480px ---------- */
@media (max-width: 480px) {
  .wk-mk__hero {
    padding: var(--space-21) 0 var(--space-22);
  }

  .wk-mk__hero-title {
    font-size: var(--fs-5xl);
    margin-bottom: var(--space-9);
    letter-spacing: -0.015em;
  }

  .wk-mk__hero-copy {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-11);
  }

  .wk-mk__hero-ctas {
    gap: var(--space-8);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .wk-mk-btn {
    width: 100%;
    padding: 0 var(--space-9);
    font-size: var(--fs-sm-2);
    letter-spacing: var(--ls-lg-2);
    min-height: 54px;
  }

  .wk-mk-link--email {
    justify-content: center;
    padding-bottom: 3px;
    font-size: var(--fs-sm-2);
    white-space: normal;
    line-height: 1.3;
  }

  .wk-mk__signal {
    padding: var(--space-21) 0 var(--space-22);
  }

  .wk-mk__signal-row {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-13);
  }

  .wk-mk__section-title {
    font-size: var(--fs-5xl);
    margin-bottom: var(--space-9);
  }

  .wk-mk__para {
    font-size: var(--fs-base);
    line-height: var(--lh-loose-2);
    margin-bottom: var(--space-7);
    max-width: none;
  }

  .wk-mk__signal-img {
    aspect-ratio: 4 / 3;
  }

  .wk-mk__stats {
    padding: var(--space-12) 0;
  }

  .wk-mk__stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .wk-mk__stat {
    padding: var(--space-8) var(--space-7);
  }

  .wk-mk__stat:nth-child(2)::before,
  .wk-mk__stat:nth-child(4)::before {
    background: rgba(var(--rgb-copper), 0.3);
  }

  .wk-mk__stat:nth-child(n+3)::before {
    top: 18%;
  }

  .wk-mk__stat-label {
    font-size: var(--fs-sm-2);
    letter-spacing: var(--ls-xl);
    margin-bottom: var(--space-5);
  }

  .wk-mk__stat-value {
    font-size: var(--fs-2xl);
    letter-spacing: -0.01em;
  }

  .wk-mk__verticals {
    padding: var(--space-21) 0 var(--space-22);
  }

  .wk-mk__verticals-head {
    margin-bottom: var(--space-13);
  }

  .wk-mk__verticals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-13) var(--space-7);
  }

  .wk-mk__verticals-grid .wk-mk-vertical:nth-child(n+5) {
    margin-top: 0;
  }

  .wk-mk-vertical {
    padding: 0 var(--space-3);
  }

  .wk-mk-vertical__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 5px;
  }

  .wk-mk-vertical__icon svg {
    width: 44px;
    height: 44px;
  }

  .wk-mk-vertical__label {
    font-size: var(--fs-base);
    letter-spacing: var(--ls-lg);
  }

  .wk-mk__sponsorship {
    padding: var(--space-21) 0 var(--space-22);
  }

  .wk-mk__sponsorship-head {
    margin-bottom: var(--space-12);
  }

  .wk-mk__sponsorship-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-9);
  }

  .wk-mk-card {
    padding: var(--space-11) var(--space-10) var(--space-12);
    min-height: auto;
  }

  .wk-mk-card__badge {
    top: var(--space-9);
    right: var(--space-9);
    padding: 5px 10px 4px;
    font-size: 10px;
  }

  .wk-mk-card__title {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-7);
  }

  .wk-mk-card__copy {
    font-size: var(--fs-base);
    line-height: var(--lh-relaxed-3);
  }

  .wk-mk__quote {
    padding: var(--space-20) 0 var(--space-21);
  }

  .wk-mk-quote {
    padding-left: var(--space-9);
    max-width: none;
  }

  .wk-mk-quote::before {
    width: 2px;
  }

  .wk-mk-quote__text {
    font-size: var(--fs-3xl);
    line-height: 1.36;
    margin-bottom: var(--space-8);
  }

  .wk-mk-quote__cite {
    font-size: var(--fs-sm-2);
    letter-spacing: var(--ls-xl);
  }

  .wk-mk__cta-dark {
    padding: var(--space-22) 0;
  }

  .wk-mk__cta-dark-copy {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-11);
    line-height: var(--lh-loose-2);
  }
}

/* SECTION: Media Kit Page (page-media-kit.php) End */

/* SECTION: Contact Page (page-contact.php) Start
   ---------- CONTACT PAGE ---------- */
.wk-contact {
  background: var(--color-white);
  color: var(--text-primary);
}

/* ---------- ZONE 1 · Hero ---------- */
.wk-contact__hero {
  background: #EDEAE4;
  padding: 80px;
  text-align: center;
  position: relative;
}

.wk-contact__hero-inner {
  margin: 0 auto;
  max-width: 880px;
}

.wk-contact__eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xl-2);
  text-transform: uppercase;
  color: var(--color-copper);
  margin: 0 0 15px;
}

.wk-contact__hero-title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 48px;
  line-height: 54px;
  color: var(--text-primary);
  margin: 0 0 48px;
  display: inline-block;
}

.wk-contact__hero-title-text {
  position: relative;
  display: inline-block;
  /* padding: 0 0 var(--space-7); */
}

.wk-contact__hero-title-text::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 2px;
  background: var(--color-copper);
}

.wk-contact__hero-copy {
  font-size: 17px;
  line-height: 32px;
  color: var(--text-secondary);
  margin: 0 auto;
  max-width: 961px;
}

/* ---------- ZONE 2 · Contact cards (2-column) ---------- */
.wk-contact__cards {
  padding: 80px;
  background: var(--color-white);
}

.wk-contact__cards-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: stretch;
}

.wk-contact-card {
  border: 1px solid rgba(28, 28, 28, 0.14);
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  background: var(--color-white);
}

.wk-contact-card__icon {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  border: 1.5px solid rgba(var(--rgb-copper), 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-copper);
  margin: 0 0 var(--space-12);
  padding: 0;
  flex: 0 0 auto;
}

.wk-contact-card__icon svg {
  width: 38px;
  height: 38px;
  display: block;
}

.wk-contact-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 32px;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0 0 9px;
}

.wk-contact-card__email {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-lg);
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--color-copper);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.wk-contact-card__email:hover,
.wk-contact-card__email:focus-visible {
  color: var(--color-copper-dark);
  outline: none;
}

/* ---------- ZONE 3 · Send a Message (2-col H2 left / WPForms right) ---------- */
.wk-contact__form {
  padding: 80px;
  background: #EDEAE4;
}

.wk-contact__form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: var(--space-16);
  align-items: start;
}

.wk-contact__form-head {
  padding-top: var(--space-3);
  position: sticky;
  top: 32px;
}

.wk-contact__form-title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-7xl);
  line-height: 46px;
  color: var(--text-primary);
  margin: 0;
  display: inline-block;
}

.wk-contact__form-title-text {
  position: relative;
  display: inline-block;
  /* padding: 0 0 var(--space-6); */
}

.wk-contact__form-title-text::after {
  content: "";
  position: absolute;
  left: 0;
  width: 60%;
  bottom: 0;
  height: 2px;
  background: var(--color-copper);
}

/* ---------- WPForms styling (override plugin defaults) ---------- */
.wk-contact__form-body .wpforms-container {
  font-family: var(--font-body);
  color: var(--text-primary);
}

.wk-contact__form-body .wpforms-field {
  padding: 0 0 var(--space-10);
  margin: 0;
}

.wk-contact__form-body .wpforms-field:last-child {
  padding-bottom: 0;
}

.wk-contact__form-body .wpforms-field-label {
  display: block;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  line-height: 1.2;
  letter-spacing: var(--ls-xl-2);
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0 0 var(--space-7);
  padding: 0;
}

.wk-contact__form-body .wpforms-field-label-required {
  color: var(--color-copper-dark);
  margin-left: 0.3em;
}

.wk-contact__form-body input.wpforms-field-medium,
.wk-contact__form-body input.wpforms-field-large,
.wk-contact__form-body input[type="text"].wpforms-field-name-first,
.wk-contact__form-body input[type="text"].wpforms-field-name-last,
.wk-contact__form-body input[type="email"].wpforms-field-email,
.wk-contact__form-body input[type="url"].wpforms-field-url,
.wk-contact__form-body select.wpforms-field-medium,
.wk-contact__form-body select.wpforms-field-large,
.wk-contact__form-body textarea.wpforms-field-medium,
.wk-contact__form-body textarea.wpforms-field-large {
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  margin: 0;
  border: 1px solid rgba(28, 28, 28, 0.12);
  border-radius: 0;
  background: var(--color-white);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-lg);
  line-height: 1.4;
  box-shadow: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.wk-contact__form-body select.wpforms-field-medium,
.wk-contact__form-body select.wpforms-field-large {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none' stroke='%231c1c1c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 7.5 L10 12.5 L15 7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 20px 20px;
  padding-right: 52px;
}

.wk-contact__form-body textarea.wpforms-field-medium,
.wk-contact__form-body textarea.wpforms-field-large {
  min-height: 200px;
  padding-top: 16px;
  padding-bottom: 16px;
  resize: vertical;
}

.wk-contact__form-body input.wpforms-field-medium:focus,
.wk-contact__form-body input.wpforms-field-large:focus,
.wk-contact__form-body select.wpforms-field-medium:focus,
.wk-contact__form-body select.wpforms-field-large:focus,
.wk-contact__form-body textarea.wpforms-field-medium:focus,
.wk-contact__form-body textarea.wpforms-field-large:focus {
  outline: none;
  border-color: var(--color-copper);
  box-shadow: 0 0 0 3px rgba(var(--rgb-copper), 0.12);
}

.wk-contact__form-body .wpforms-field-description,
.wk-contact__form-body .wpforms-field-sublabel {
  font-size: var(--fs-sm-2);
  line-height: var(--lh-relaxed-2);
  color: var(--text-secondary);
  margin: var(--space-5) 0 0;
}

.wk-contact__form-body .wpforms-field-error>.wpforms-required-label,
.wk-contact__form-body .wpforms-required-label,
.wk-contact__form-body .wpforms-error {
  color: #b3412b;
  font-size: var(--fs-sm-2);
  line-height: var(--lh-relaxed-2);
  margin: var(--space-5) 0 0;
}

.wk-contact__form-body .wpforms-recaptcha-container {
  padding: var(--space-5) 0 0;
  margin: 0 0 var(--space-2);
}

.wk-contact__form-body .wpforms-submit-container {
  padding-top: var(--space-9);
  margin: 0;
  text-align: left;
}

.wk-contact__form-body .wpforms-submit {
  min-height: 60px;
  width: 100%;
  padding: 0 var(--space-10);
  margin: 0;
  border: 0;
  border-radius: 0;
  background: var(--color-copper);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  line-height: 1.2;
  letter-spacing: var(--ls-lg-2);
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.wk-contact__form-body .wpforms-submit:hover,
.wk-contact__form-body .wpforms-submit:focus-visible {
  background: var(--color-copper-dark);
  color: var(--color-white);
  outline: none;
  box-shadow: none;
}

.wk-contact__form-body .wpforms-confirmation-container-full {
  background: var(--color-white);
  border: 1px solid rgba(var(--rgb-copper), 0.3);
  border-radius: 0;
  padding: var(--space-11) var(--space-12);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed-3);
  margin: 0;
}

/* ---------- Responsive: Tablet landscape 801–1024px ---------- */
@media (min-width: 801px) and (max-width: 1024px) {
  .wk-contact__form-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: var(--space-14);
  }

  .wk-contact__hero-title {
    font-size: var(--fs-7xl);
  }

  .wk-contact__form-title {
    font-size: var(--fs-6xl);
  }
}

/* ---------- Responsive: Tablet 481–800px ---------- */
@media (min-width: 481px) and (max-width: 800px) {
  .wk-contact__hero {
    padding: var(--space-23) 0 var(--space-24);
  }

  .wk-contact__hero-title {
    font-size: var(--fs-6xl);
    margin-bottom: var(--space-11);
  }

  .wk-contact__hero-title-text {
    padding-bottom: var(--space-6);
  }

  .wk-contact__hero-copy {
    font-size: var(--fs-xl);
  }

  .wk-contact__cards {
    padding: var(--space-24) 0 var(--space-25);
  }

  .wk-contact__cards-row {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-11);
  }

  .wk-contact-card {
    padding: var(--space-15) var(--space-11) var(--space-14);
  }

  .wk-contact-card__icon {
    width: 86px;
    height: 86px;
    margin-bottom: var(--space-10);
  }

  .wk-contact-card__icon svg {
    width: 34px;
    height: 34px;
  }

  .wk-contact-card__title {
    font-size: var(--fs-4xl);
  }

  .wk-contact__form {
    padding: var(--space-24) 0 var(--space-25);
  }

  .wk-contact__form-row {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-12);
  }

  .wk-contact__form-head {
    position: static;
    padding-top: 0;
  }

  .wk-contact__form-title {
    font-size: var(--fs-6xl);
  }
}

/* ---------- Responsive: Mobile ≤ 480px ---------- */
@media (max-width: 480px) {

  /* .wk-contact__hero { padding: var(--space-21) 0 var(--space-22); }
  .wk-contact__eyebrow { font-size: var(--fs-sm-2); margin-bottom: var(--space-8); } */
  .wk-contact__hero-title {
    font-size: var(--fs-5xl);
    margin-bottom: var(--space-10);
  }

  /* .wk-contact__hero-title-text { padding-bottom: var(--space-5); }
  .wk-contact__hero-title-text::after { left: 15%; right: 15%; }
  .wk-contact__hero-copy { font-size: var(--fs-lg); line-height: var(--lh-loose-3); } */

  .wk-contact__cards {
    padding: var(--space-21) 0 var(--space-22);
  }

  .wk-contact__cards-row {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-10);
  }

  .wk-contact-card {
    padding: var(--space-14) var(--space-9) var(--space-13);
  }

  .wk-contact-card__icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-10);
  }

  .wk-contact-card__icon svg {
    width: 32px;
    height: 32px;
  }

  .wk-contact-card__title {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-7);
  }

  .wk-contact-card__email {
    font-size: var(--fs-base);
  }

  .wk-contact__form {
    padding: var(--space-21) 0 var(--space-22);
  }

  .wk-contact__form-row {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-11);
  }

  .wk-contact__form-head {
    position: static;
    padding-top: 0;
  }

  .wk-contact__form-title {
    font-size: var(--fs-5xl);
  }

  .wk-contact__form-title-text {
    padding-bottom: var(--space-5);
  }

  .wk-contact__form-title-text::after {
    width: 55%;
  }

  .wk-contact__form-body .wpforms-field {
    padding-bottom: var(--space-9);
  }

  .wk-contact__form-body .wpforms-field-label {
    font-size: var(--fs-sm-2);
    letter-spacing: var(--ls-xl);
    margin-bottom: var(--space-6);
  }

  .wk-contact__form-body input.wpforms-field-medium,
  .wk-contact__form-body input.wpforms-field-large,
  .wk-contact__form-body select.wpforms-field-medium,
  .wk-contact__form-body select.wpforms-field-large,
  .wk-contact__form-body textarea.wpforms-field-medium,
  .wk-contact__form-body textarea.wpforms-field-large {
    min-height: 48px;
    padding: 12px 14px;
    font-size: var(--fs-base);
  }

  .wk-contact__form-body select.wpforms-field-medium,
  .wk-contact__form-body select.wpforms-field-large {
    padding-right: 46px;
    background-position: right 14px center;
  }

  .wk-contact__form-body textarea.wpforms-field-medium,
  .wk-contact__form-body textarea.wpforms-field-large {
    min-height: 170px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .wk-contact__form-body .wpforms-submit-container {
    padding-top: var(--space-7);
  }

  .wk-contact__form-body .wpforms-submit {
    min-height: 48px;
    font-size: var(--fs-sm-2);
    /* letter-spacing: var(--ls-lg); */
  }
}

/* SECTION: Contact Page (page-contact.php) End */

/* SECTION: Breadcrumbs Start
   ---------- BREADCRUMBS ---------- */
.wk-breadcrumbs {
  padding: 0;
  margin: 0;
}

.wk-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.wk-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.wk-breadcrumbs a {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--color-mid-gray);
  letter-spacing: var(--ls-sm-2);
}

.wk-breadcrumbs a:hover {
  color: var(--color-copper);
}

.wk-breadcrumbs li>span {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--color-copper);
  font-weight: var(--fw-medium);
}

.wk-breadcrumbs__sep {
  color: var(--color-light-rule);
  font-size: var(--fs-sm);
}

/* SECTION: Breadcrumbs End */

/* SECTION: Card Variants (Small / Mobile) Start
   ---------- CARD: SMALL (sidebar & strips) ---------- */
.wk-card--small {
  gap: var(--space-4);
}

.wk-card--small .wk-card__thumb {
  aspect-ratio: var(--ar-16-10);
}

.wk-card--small h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  line-height: var(--lh-normal);
  color: var(--color-forge);
}

.wk-card--small h3 a {
  color: inherit;
}

/* ---------- CARD: MOBILE ---------- */
.wk-card--mobile {
  gap: var(--space-8);
}

.wk-card--mobile .wk-pillar-label {
  margin-bottom: var(--space-3);
}

.wk-card--mobile .wk-card__title {
  margin: var(--space-2) 0 var(--space-5);
}

.wk-card--mobile .wk-card__title a {
  color: inherit;
}

.wk-card--mobile__excerpt {
  font-size: var(--fs-sm);
  color: var(--color-mid-gray);
  line-height: var(--lh-relaxed-2);
  margin-bottom: var(--space-10);
}

.wk-card--mobile__actions {
  display: flex;
  gap: var(--space-8);
}

.wk-card--mobile__actions .wk-btn {
  padding: var(--space-5) var(--space-11);
  min-width: var(--touch-target);
  min-height: var(--touch-target);
}

.wk-card--mobile__actions .wk-card__price {
  padding: var(--space-5) var(--space-11);
}

.wk-card--mobile__actions .wk-btn--dark {
  min-width: var(--touch-target);
  min-height: var(--touch-target);
}

/* SECTION: Card Variants (Small / Mobile) End */

/* SECTION: Single Post Header Layout Extra Rules Start
   ---------- SINGLE POST HEADER / LAYOUT (extra rules) ---------- */
.wk-single__header-inner {
  text-align: center;
}

.wk-single__meta {
  margin-bottom: var(--space-14);
  text-align: center;
}

.wk-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  letter-spacing: var(--ls-sm-2);
}

.wk-meta__sep {
  opacity: var(--opacity-50);
  padding: 0 var(--space-1);
}

.wk-single__hero {
  margin-top: 60px
}

.wk-single__hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.wk-single__hero .wk-single__hero-image {
  margin-top: 0;
}

.wk-badge-feature {
  top: var(--spacing-24);
  left: var(--spacing-24);
  right: auto;
  color: var(--text-inverse);
}

.wk-single-layout-wrap {
  padding: var(--space-16) 0 var(--space-21);
}

.wk-single__hero-title {
  margin-bottom: var(--space-10);
  text-align: center;
}

.wk-single__product-meta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto var(--space-10);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-tight);
}

.wk-single__brand {
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-md-2);
  text-transform: uppercase;
  color: var(--color-copper);
}

.wk-single__price {
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  letter-spacing: var(--ls-tight);
}

.wk-single__meta-sep {
  opacity: var(--opacity-40);
  color: var(--text-secondary);
  padding: 0 var(--space-2);
}

/* .wk-breadcrumbs { padding: var(--space-12) 0 var(--space-3); } */

.wk-single__nav.wk-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-16);
  margin: var(--space-16) 0 var(--space-14);
  padding: var(--space-12) 0 0;
  border-top: var(--border-1);
}

.wk-post-nav a {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-10) var(--space-12);
  border: var(--border-1);
  background: var(--color-white);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  min-height: 88px;
  transition: border-color var(--dur-2) var(--ease-default), transform var(--dur-2) var(--ease-default);
}

.wk-post-nav a:hover {
  border-color: var(--color-copper);
  transform: translateY(-1px);
}

.wk-post-nav__prev {
  text-align: left;
}

.wk-post-nav__next {
  text-align: right;
  margin-left: auto;
}

.wk-post-nav__dir {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-lg-2);
  text-transform: uppercase;
  color: var(--color-copper);
  font-weight: var(--fw-semibold);
}

.wk-post-nav__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wk-post-nav--empty {
  display: block;
}

@media (max-width: 640px) {
  .wk-single__nav.wk-post-nav {
    grid-template-columns: 1fr;
    gap: var(--spacing-12);
  }

  .wk-post-nav__next {
    margin-left: 0;
    text-align: left;
  }

  .wk-single__product-meta {
    font-size: var(--fs-sm);
  }
}

/* SECTION: Single Post Header Layout Extra Rules End */

/* SECTION: Share Buttons (Single Post) Start
   ---------- SHARE BUTTONS ---------- */
.wk-share-buttons {
  margin-top: var(--space-16);
  /* padding: var(--space-10) 0 0; */
  border-top: 0;
}

.wk-share-buttons__row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  align-items: center;
  justify-content: space-between;
}

.wk-share-buttons__left {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.wk-share-buttons__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  color: #1A1A18;
}

.wk-share-buttons__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--touch-target);
  height: var(--touch-target);
  min-width: var(--touch-target);
  min-height: var(--touch-target);
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: var(--radius-full);
  color: var(--color-copper);
  cursor: pointer;
  transition: color var(--dur-3) var(--ease-default), background var(--dur-3) var(--ease-default);
  -webkit-appearance: none;
  appearance: none;
}

.wk-share-buttons__toggle svg {
  width: 24px;
  height: 24px;
  display: block;
}

.wk-share-buttons__toggle:hover,
.wk-share-buttons.is-share-open .wk-share-buttons__toggle {
  color: var(--color-forge);
}

/* ---------- Share Panel (opens below row on toggle click) ---------- */
.wk-share-buttons__panel {
  display: none;
  margin-top: var(--space-8);
  padding-left: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--dur-3) var(--ease-default), transform var(--dur-3) var(--ease-default);
}

.wk-share-buttons.is-share-open .wk-share-buttons__panel {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.wk-share-buttons__list {
  display: flex;
  gap: var(--space-4);
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  align-items: center;
}

.wk-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--touch-target);
  height: var(--touch-target);
  min-width: var(--touch-target);
  min-height: var(--touch-target);
  color: var(--color-copper);
  border-radius: var(--radius-full);
  transition: color var(--dur-3) var(--ease-default), background var(--dur-3) var(--ease-default);
}

.wk-share-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.wk-share-btn:hover {
  color: var(--color-forge);
}

/* Tags row — hashtag links on RIGHT side (Figma shows copper #EDC #CRAFTSMANSHIP ) */
.wk-share-buttons__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-5);
}

.wk-share-buttons__tag {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-copper);
  text-decoration: none;
  min-height: var(--touch-target);
  display: inline-flex;
  align-items: center;
  transition: opacity var(--dur-2) var(--ease-default);
}

.wk-share-buttons__tag:hover {
  opacity: var(--opacity-75);
}

@media (max-width: 640px) {
  .wk-share-buttons__row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-9);
  }

  .wk-share-buttons__tags {
    gap: var(--space-4);
  }

  .wk-share-buttons__panel {
    margin-top: var(--space-9);
  }
}

/* ---------- Card variant: compact inline social icons (no row, no toggle, no tags) ---------- */
.wk-share-buttons--card {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.wk-share-buttons--card .wk-share-buttons__panel {
  display: block;
  margin-top: 0;
  padding-left: 0;
  opacity: 1;
  transform: none;
}

.wk-share-buttons--card .wk-share-buttons__list {
  justify-content: flex-start;
}

/* SECTION: Share Buttons (Single Post) End */

/* SECTION: Pagination (Archives) Start
   ---------- PAGINATION ---------- */
.wk-pagination {
  margin-top: 50px;
  text-align: center;
}

.wk-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.wk-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  /* height: var(--space-15); */
  /* padding: 0 var(--space-8); */
  font-family: var(--font-body);
  font-size: var(--fs-sm-2);
  color: #888888;
  font-weight: 600;
  text-transform: uppercase;
  /* border: var(--border-1); */
  transition: color var(--dur-1) var(--ease-default), border-color var(--dur-1) var(--ease-default), background var(--dur-1) var(--ease-default);
}

.wk-pagination .next,
.wk-pagination .prev {
  color: #1A1A18;
  font-weight: 600;
}

.wk-pagination .next {
  margin-left: 9px;
}

.wk-pagination .next svg {
  display: none;
}

.wk-pagination a.page-numbers:hover {
  color: var(--color-copper);
  border-color: var(--color-copper);
}

.nav-links {
  display: flex;
  justify-content: center;
}

.wk-pagination .page-numbers.current {
  /* background: var(--color-copper); */
  color: #A0673A;
  /* border-color: var(--color-copper); */
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* SECTION: Pagination (Archives) End */

/* NOTE: Pull Quote + Product Specs Table + Buy CTA Gutenberg block styles
   live above (see L242 SECTION: Buy CTA + L344 SECTION: Gutenberg Blocks).
   Below intentionally blank — no duplicate CSS rules. */

/* SECTION: Plugin Containers (WPForms) Start
   ---------- WP PLUGIN CONTAINERS ---------- */
/* WPForms Lite and generic forms inherit base form styles but avoid breaking plugin markup. */
.wpforms-container {
  font-family: var(--font-body);
}

.wpforms-container label.wpforms-field-label {
  font-size: var(--fs-sm) !important;
  letter-spacing: var(--ls-md-2);
  text-transform: uppercase;
}

/* SECTION: Plugin Containers (WPForms) End */

/* SECTION: Scroll Row Utility Start
   ---------- SCROLL ROW (horizontal scroll strips on mobile for future use) ---------- */
.wk-scroll-row {
  display: flex;
  gap: var(--space-9);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-3);
}

.wk-scroll-row>* {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.wk-scroll-row::-webkit-scrollbar {
  height: 6px;
}

.wk-scroll-row::-webkit-scrollbar-thumb {
  background: var(--color-light-rule);
  border-radius: var(--radius-md);
}

/* SECTION: Scroll Row Utility End */

/* SECTION: Utility Modifiers Start
   ---------- UTILITY MODIFIERS ---------- */
.wk-section-label--block {
  display: block;
  margin-bottom: var(--space-12);
}

.wk-section__title--center {
  text-align: center;
}

.wk-section__head--spaced {
  margin-top: var(--space-16);
}

/* SECTION: Utility Modifiers End */

/* SECTION: Category Archive (category.php) Start
   ---------- PAGE: CATEGORY ARCHIVE (Template 2) ---------- */
.wk-cat-header {
  padding: var(--spacing-24) 0 var(--spacing-24);
  text-align: center;
  border-bottom: var(--border-1);
  background-color: var(--bg-subtle);
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.wk-cat-header__container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.wk-cat-header__title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 46px;
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-16);
}

.wk-cat-header__tagline {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  color: var(--color-copper);
  margin: 0;
  margin-left: auto;
  margin-right: auto;
}

.wk-cat-archive {
  padding: 80px;
  background-color: var(--bg-secondary);
  width: 100%;
  box-sizing: border-box;
}

.wk-cat-archive__container {
  max-width: var(--content-width);
  margin: 0 auto;
}

.wk-cat-archive__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-40);
}

.wk-featured-hero--archive {
  background-color: var(--bg-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--spacing-80);
  align-items: stretch;
  min-height: 480px;
  contain: layout style;
  box-sizing: border-box;
}

.wk-featured-hero--archive .wk-featured-hero__media {
  min-height: 100%;
  aspect-ratio: auto;
  position: relative;
  background-color: var(--bg-elevated);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.wk-featured-hero--archive .wk-featured-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wk-featured-hero--archive .wk-featured-hero__media>a {
  position: absolute;
  inset: 0;
  display: block;
}

.wk-featured-hero--archive .wk-featured-hero__badge {
  position: absolute;
  top: var(--spacing-24);
  left: var(--spacing-24);
  right: auto;
  z-index: 2;
  background: var(--color-copper);
  color: var(--text-inverse);
  padding: var(--space-3) var(--space-8);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xl);
  text-transform: uppercase;
}

.wk-featured-hero--archive .wk-featured-hero__content {
  padding: var(--spacing-64) var(--spacing-56) var(--spacing-56);
  display: flex;
  padding: 48px 48px 48px 0px;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  /* gap: var(--spacing-16); */
  background-color: var(--bg-subtle);
  overflow: hidden;
  box-sizing: border-box;
}

.wk-featured-hero--archive .wk-pillar-label {
  margin-bottom: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-md-2);
  text-transform: uppercase;
  color: var(--color-copper);
}

.wk-featured-hero--archive .wk-featured-hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-4xl), 3.2vw, var(--fs-5xl));
  line-height: var(--lh-snug-2);
  margin: 0;
  color: var(--text-primary);
  font-weight: var(--fw-semibold);
}

.wk-featured-hero--archive .wk-featured-hero__title-link {
  color: inherit;
  text-decoration: none;
}

.wk-featured-hero--archive .wk-featured-hero__excerpt {
  font-size: 17px;
  line-height: 30px;
  color: var(--text-secondary);
  margin: var(--spacing-24) 0 0;
}

.wk-featured-hero--archive .wk-featured-hero__readmore-inline {
  display: inline;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--color-copper);
  text-decoration: none;
  margin-left: 0.2em;
  white-space: nowrap;
}

.wk-featured-hero--archive .wk-featured-hero__actions {
  margin-top: var(--spacing-40);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.wk-featured-hero--archive .wk-featured-hero__btn {
  padding: 14px 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  line-height: 20px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.wk-featured-hero--archive .wk-featured-hero__btn:hover {
  text-decoration: none;
}

.wk-featured-hero--archive .wk-featured-hero__btn:only-child {
  flex: 0 0 200px;
}

.wk-featured-hero--archive .wk-featured-hero__btn--buy {
  background-color: var(--color-copper);
  color: var(--text-inverse);
}

.wk-featured-hero--archive .wk-featured-hero__btn--buy:hover {
  background-color: var(--color-copper-hover);
  color: var(--text-inverse);
}

.wk-featured-hero--archive .wk-featured-hero__btn--share {
  background-color: var(--bg-inverse);
  color: var(--text-inverse);
}

.wk-featured-hero--archive .wk-featured-hero__btn--share:hover {
  background-color: var(--color-forge-hover);
  color: var(--text-inverse);
}

.wk-featured-hero--archive .wk-featured-hero__share-panel {
  flex-basis: 100%;
  padding-top: var(--spacing-16);
  border-top: 1px solid var(--border-rule);
}

.wk-cat-archive__pagination {
  margin-top: var(--spacing-64);
}

.wk-cat-archive__pagination .page-numbers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-32);
  row-gap: var(--spacing-16);
  justify-content: center;
  align-items: center;
}

.wk-cat-archive__pagination .page-numbers li {
  display: inline-flex;
}

.wk-cat-archive__pagination .page-numbers li .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 var(--spacing-4);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-lg-2);
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.wk-cat-archive__pagination .page-numbers li .page-numbers:hover {
  color: var(--color-copper);
  text-decoration: none;
}

.wk-cat-archive__pagination .page-numbers li .page-numbers.current {
  color: var(--color-copper);
  font-weight: var(--fw-semibold);
  border-bottom-color: var(--color-copper);
}

.wk-cat-archive__pagination .page-numbers li .page-numbers.prev {
  color: var(--text-secondary);
  font-weight: var(--fw-medium);
}

.wk-cat-archive__pagination .page-numbers li .page-numbers.next {
  color: var(--text-primary);
  font-weight: var(--fw-bold);
}

.wk-cat-archive__pagination .page-numbers li .page-numbers.prev:hover,
.wk-cat-archive__pagination .page-numbers li .page-numbers.next:hover {
  color: var(--color-copper);
}

@media (max-width: 769px) {
  .wk-cat-header {
    padding: 56px 50px;
  }

  .wk-cat-header__title {
    font-size: 38px;
    line-height: 44px;
    margin-bottom: 16px;
  }

  .wk-cat-header__container {
    padding: 0 !important;
  }

  .wk-cat-header__tagline {
    font-size: 14px;
    line-height: 22px;
    max-width: 42ch;
  }

  .wk-cat-archive {
    padding-top: 32px;
    padding-bottom: 16px;
  }

  .wk-cat-archive__container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .wk-cat-archive__list {
    gap: var(--spacing-32);
  }

  .wk-cat-archive {
    padding: 0 !important;
  }

  .wk-featured-hero--archive {
    grid-template-columns: 1fr;
    min-height: 0;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-16);
    gap: var(--spacing-16);
    overflow: hidden;
  }

  .wk-featured-hero--archive .wk-featured-hero__media {
    aspect-ratio: 4/3;
    min-height: 0;
    border-radius: var(--radius-xl);
    background: #F7F6F4;

  }

  .wk-featured-hero--archive .wk-featured-hero__badge {
    top: var(--spacing-16);
    left: var(--spacing-16);
  }

  .wk-featured-hero--archive .wk-featured-hero__content {
    padding: var(--spacing-24);
    gap: var(--spacing-12);
    border-radius: var(--radius-xl);
  }

  .wk-featured-hero--archive .wk-featured-hero__title {
    font-size: var(--fs-3xl);
    line-height: var(--lh-snug);
  }

  .wk-featured-hero--archive .wk-featured-hero__excerpt {
    font-size: var(--fs-sm-2);
  }

  .wk-featured-hero--archive .wk-featured-hero__actions {
    margin-top: 0;
    gap: var(--spacing-8);
  }

  .wk-featured-hero--archive .wk-featured-hero__btn {
    flex: 1 1 calc(50% - var(--spacing-4));
    min-width: 0;
    max-width: none;
    min-height: 48px;
  }

  .wk-featured-hero--archive .wk-featured-hero__btn:only-child {
    flex: 1 1 100%;
    max-width: 320px;
  }

  .wk-cat-archive__pagination {
    margin-top: var(--spacing-40);
  }

  .wk-featured-hero--archive .wk-featured-hero__media>a {
    padding: 12px 12px 16px 12px;

  }

  .wk-featured-hero--archive .wk-featured-hero__media {
    border-radius: 12px 12px 0px 0px;
  }

  .wk-featured-hero--archive .wk-featured-hero__content {
    padding: 0px 12px 12px 12px;
  }

  .wk-featured-hero--archive .wk-featured-hero__excerpt {
    margin: 0px;
  }

  .wk-featured-hero--archive .wk-featured-hero__btn {
    padding: 8px 30px !important;
  }

  .wk-featured-hero--archive .wk-featured-hero__btn {
    flex: unset !important;
    max-width: none;
    min-height: 0 !important;
  }

  .wk-featured-hero {
    margin-bottom: 0;
  }

  .archive .wk-cat-archive__list {
    gap: 0 !important;
  }
}

/* SECTION: Category Archive (category.php) End */