/* ============================================================
   Hobby Stone Quartz — Editorial natural-stone design (v2)
   --------------------------------------------------------------
   HSQ custom CSS is centralized in child-theme hsq-custom.css.
   Use WordPress Additional CSS only for temporary checks; production changes ship as a full-file overwrite.
   Mobile-first: base styles target ~375px, larger breakpoints
   layered on top with min-width media queries.
   ============================================================ */

.hsq-lp {
  --cream:        #f6f1e8;
  --sand:         #ebe3d3;
  --sand-deep:    #ddd2bb;
  --ink:          #1f1c18;
  --ink-soft:     #3a342d;
  --taupe:        #7c6f5d;
  --taupe-light:  #a89a85;
  --hairline:     #dfd6c2;
  --hairline-soft:#ece5d4;
  --accent:       #5a4a6e;

  --ff-serif: "Noto Serif Thai", "Cormorant Garamond", serif;
  --ff-sans:  "Noto Sans Thai", "Inter", system-ui, sans-serif;
  --ff-mono:  "IBM Plex Mono", ui-monospace, monospace;

  /* Mobile-first scale */
  --step-0: 14px;
  --step-1: 16px;
  --step-2: 19px;
  --step-3: 24px;
  --step-4: 30px;
  --step-5: 36px;

  --maxw: 1200px;
  --gutter: 22px;
  --header-h: 52px;

  margin: 0; padding: 0;
  font-family: var(--ff-sans);
  font-size: var(--step-1);
  line-height: 1.8;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-break: break-word;
}

@media (min-width: 430px) {
  .hsq-lp { --gutter: 24px; }
}
@media (min-width: 720px) {
  .hsq-lp { --gutter: 36px; --header-h: 60px; --step-2: 20px; --step-3: 28px; --step-4: 40px; --step-5: 52px; }
}
@media (min-width: 1100px) {
  .hsq-lp { --gutter: 56px; --header-h: 64px; --step-3: 32px; --step-4: 52px; --step-5: 72px; }
}

.hsq-lp *, .hsq-lp *::before, .hsq-lp *::after { box-sizing: border-box; }
.hsq-lp img { max-width: 100%; display: block; }
.hsq-lp a { color: inherit; text-underline-offset: 3px; }

.hsq-lp .hsq-serif { font-family: var(--ff-serif); font-weight: 400; letter-spacing: 0; }
.hsq-lp .hsq-label { font-family: var(--ff-sans); font-size: 12px; letter-spacing: 0; color: var(--taupe); }

.hsq-lp .hsq-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ------------------------------------------------------------
   HEADER
   ------------------------------------------------------------ */
.hsq-lp .site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--hairline-soft);
}
.hsq-lp .site-header .hsq-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.hsq-lp .brand {
  display: inline-flex; align-items: center;
  text-decoration: none; color: var(--ink);
  font-family: var(--ff-serif); font-weight: 500;
  font-size: 17px; letter-spacing: 0.01em;
  line-height: 1;
}
@media (min-width: 720px) { .hsq-lp .brand { font-size: 20px; } }

.hsq-lp .nav {
  display: flex; gap: 22px; align-items: center;
}
.hsq-lp .nav a:not(.ig-pill) { display: none; }
.hsq-lp .nav a {
  font-size: 14px; color: var(--ink-soft); text-decoration: none;
}
.hsq-lp .nav a:hover { color: var(--accent); }
.hsq-lp .nav .ig-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border: 1px solid var(--ink); border-radius: 999px;
  font-size: 13px; line-height: 1;
  min-height: 36px;
}
.hsq-lp .nav .ig-pill:hover { background: var(--ink); color: var(--cream); }
.hsq-lp .nav .ig-pill svg { width: 15px; height: 15px; }

@media (min-width: 880px) {
  .hsq-lp .nav a:not(.ig-pill) { display: inline; }
}

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.hsq-lp .btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 22px;
  font-size: 15px; letter-spacing: 0.01em;
  text-decoration: none; border-radius: 2px;
  border: 1px solid transparent; cursor: pointer;
  font-family: var(--ff-sans); font-weight: 500;
  min-height: 48px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.hsq-lp .btn:hover { transform: translateY(-1px); }
.hsq-lp .btn-primary { background: var(--ink); color: var(--cream); }
.hsq-lp .btn-primary:hover { background: var(--accent); }
.hsq-lp .btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.hsq-lp .btn-ghost:hover { background: var(--ink); color: var(--cream); }
.hsq-lp .btn-text {
  padding: 12px 0; border-bottom: 1px solid var(--ink); border-radius: 0;
  min-height: 0;
}
.hsq-lp .btn-text:hover { border-color: var(--accent); color: var(--accent); }
.hsq-lp .btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* On mobile, primary CTA in hero / final spans full width */
.hsq-lp .btn-block { width: 100%; }
@media (min-width: 720px) { .hsq-lp .btn-block { width: auto; } }

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hsq-lp .hero { padding: 28px 0 40px; }
@media (min-width: 720px) { .hsq-lp .hero { padding: 56px 0 80px; } }
@media (min-width: 1100px) { .hsq-lp .hero { padding: 80px 0 110px; } }

.hsq-lp .hero-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
@media (min-width: 880px) {
  .hsq-lp .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 60px; }
}

.hsq-lp .hero h1 {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: var(--step-5); line-height: 1.15;
  letter-spacing: 0; margin: 0 0 18px;
  color: var(--ink); text-wrap: pretty;
}
@media (min-width: 720px) { .hsq-lp .hero h1 { line-height: 1.08; } }
.hsq-lp .hero h1 em { font-style: italic; color: var(--accent); font-weight: 600; }

.hsq-lp .hero .sub {
  font-size: var(--step-1); line-height: 1.85; color: var(--ink-soft);
  margin: 0 0 22px; max-width: 36ch;
}
.hsq-lp .hero .cta-row {
  display: flex; flex-direction: column; gap: 10px;
}
@media (min-width: 720px) {
  .hsq-lp .hero .cta-row { flex-direction: row; gap: 14px; flex-wrap: wrap; align-items: center; }
}

/* Hide on mobile: secondary CTA, meta row */
.hsq-lp .hero .cta-row .btn-ghost { display: none; }
.hsq-lp .hero .meta-row { display: none; }

@media (min-width: 880px) {
  .hsq-lp .hero .cta-row .btn-ghost { display: inline-flex; }
  .hsq-lp .hero .meta-row {
    display: flex; gap: 28px; flex-wrap: wrap;
    margin-top: 40px; padding-top: 28px;
    border-top: 1px solid var(--hairline);
  }
  .hsq-lp .hero .meta-item { display: flex; flex-direction: column; gap: 6px; }
  .hsq-lp .hero .meta-item .k { font-family: var(--ff-sans); font-size: 12px; color: var(--taupe); }
  .hsq-lp .hero .meta-item .v { font-family: var(--ff-serif); font-size: 17px; font-weight: 500; color: var(--ink); }
}

/* hero image — mobile: low, photo aspect 3:2, capped height so H1+CTA stay visible */
.hsq-lp .hero-image {
  position: relative; aspect-ratio: 3 / 2;
  max-height: 42vh;
  border-radius: 2px; overflow: hidden; background: var(--sand);
  order: -1; /* photo above text on mobile */
}
@media (min-width: 880px) {
  .hsq-lp .hero-image { aspect-ratio: 4/5; max-height: none; order: 0; }
}
.hsq-lp .hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s ease;
}
.hsq-lp .hero-image:hover img { transform: scale(1.04); }
.hsq-lp .hero-image::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 60px rgba(31, 28, 24, 0.18);
  pointer-events: none;
}

/* ------------------------------------------------------------
   SECTION SHELL
   ------------------------------------------------------------ */
.hsq-lp .section { padding: 56px 0; position: relative; }
@media (min-width: 720px) { .hsq-lp .section { padding: 80px 0; } }
@media (min-width: 1100px) { .hsq-lp .section { padding: 110px 0; } }

.hsq-lp .section.tone-sand { background: var(--sand); }
.hsq-lp .section.tone-ink  { background: var(--ink); color: var(--cream); }
.hsq-lp .section.tone-ink h2,
.hsq-lp .section.tone-ink .hsq-serif { color: var(--cream); }

.hsq-lp .section-head {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  margin-bottom: 36px; align-items: end;
}
@media (min-width: 880px) {
  .hsq-lp .section-head { grid-template-columns: 0.45fr 0.55fr; gap: 50px; margin-bottom: 56px; }
}
.hsq-lp .section-head h2 {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: var(--step-4); line-height: 1.18; margin: 0;
  letter-spacing: 0; color: var(--ink); text-wrap: balance;
}
.hsq-lp .section-head h2 em { font-style: italic; color: var(--accent); font-weight: 600; }
.hsq-lp .section-head .right p {
  font-size: var(--step-1); line-height: 1.85; color: var(--ink-soft); margin: 0;
}

/* ------------------------------------------------------------
   CONCEPT
   ------------------------------------------------------------ */
.hsq-lp .concept-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 720px) { .hsq-lp .concept-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.hsq-lp .concept-card {
  padding-top: 24px; border-top: 1px solid var(--hairline);
}
.hsq-lp .concept-card h3 {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: var(--step-3); line-height: 1.25; margin: 0 0 14px; color: var(--ink);
}
.hsq-lp .concept-card p {
  font-size: 15px; line-height: 1.85; color: var(--ink-soft); margin: 0;
}

.hsq-lp .concept-card .concept-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 0 0 14px;
}
.hsq-lp .concept-card .hsq-concept-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  margin: 0.32em 0 0;
  color: var(--taupe);
  opacity: 0.82;
}
.hsq-lp .concept-card .hsq-concept-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hsq-lp .concept-card .concept-head h3 {
  margin: 0;
}
@media (max-width: 719px) {
  .hsq-lp .concept-card .concept-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
  }
  .hsq-lp .concept-card .hsq-concept-icon {
    width: 34px;
    height: 34px;
    margin: 0.38em 0 0;
  }
}

/* ------------------------------------------------------------
   PURPOSES — bg-image cards (v2.2)
   Full-bleed photo + bottom dark gradient + text overlaid
   ------------------------------------------------------------ */
.hsq-lp .purposes {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 600px) { .hsq-lp .purposes { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 980px) { .hsq-lp .purposes { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.hsq-lp .purpose {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  text-decoration: none;
  color: var(--cream);
  background: #2a2622;
  min-height: 240px;
  aspect-ratio: 5 / 4;
  isolation: isolate;
  transition: transform .3s ease, box-shadow .3s ease;
}
@media (min-width: 600px) { .hsq-lp .purpose { aspect-ratio: 4/5; min-height: 280px; } }
@media (min-width: 980px) { .hsq-lp .purpose { aspect-ratio: 4/5; min-height: 320px; } }
.hsq-lp .purpose:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(31, 28, 24, 0.16); }

.hsq-lp .purpose .bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.78);
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1), filter .6s ease;
  z-index: 1;
}
.hsq-lp .purpose:hover .bg { transform: scale(1.05); filter: saturate(0.95) brightness(0.85); }

.hsq-lp .purpose::after {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(31,28,24,0) 35%, rgba(31,28,24,0.55) 65%, rgba(31,28,24,0.88) 100%);
  pointer-events: none;
}

.hsq-lp .purpose .content {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 3;
  display: flex; flex-direction: column; gap: 6px;
}
@media (min-width: 600px) { .hsq-lp .purpose .content { left: 24px; right: 24px; bottom: 22px; } }
.hsq-lp .purpose .ttl {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: var(--step-2); line-height: 1.25; color: var(--cream);
  letter-spacing: 0;
}
.hsq-lp .purpose .sub {
  font-size: 13px; line-height: 1.7; color: rgba(246, 241, 232, 0.82);
}
@media (min-width: 600px) { .hsq-lp .purpose .sub { font-size: 14px; } }
.hsq-lp .purpose .arrow {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px; color: rgba(246, 241, 232, 0.95);
  text-decoration: none;
  transition: transform .25s ease;
}
.hsq-lp .purpose:hover .arrow { transform: translateX(4px); }

/* ------------------------------------------------------------
   STONES (Popular)
   ------------------------------------------------------------ */
.hsq-lp .stones {
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
@media (min-width: 600px) { .hsq-lp .stones { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 980px) { .hsq-lp .stones { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.hsq-lp .stone {
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.hsq-lp .stone .photo {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: var(--sand-deep); border-radius: 2px; margin-bottom: 16px;
}
.hsq-lp .stone .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.hsq-lp .stone:hover .photo img { transform: scale(1.04); }
.hsq-lp .stone .photo::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 40px rgba(31, 28, 24, 0.12);
  pointer-events: none;
}
.hsq-lp .stone .th {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: var(--step-2); margin: 0 0 4px; color: var(--ink); line-height: 1.25;
}
.hsq-lp .stone .en {
  font-family: var(--ff-serif); font-style: italic; font-weight: 400;
  font-size: 14px; color: var(--accent); margin: 0 0 8px;
}
.hsq-lp .stone .desc {
  font-size: 14px; line-height: 1.8; color: var(--taupe); margin: 0;
}
.hsq-lp .stone .meta {
  display: inline-block;
  margin-top: 10px; font-size: 13px; color: var(--accent); font-weight: 500;
  text-decoration: none;
}

/* ------------------------------------------------------------
   FEATURE SPLIT
   ------------------------------------------------------------ */
.hsq-lp .feature-split {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
@media (min-width: 880px) { .hsq-lp .feature-split { grid-template-columns: 1fr 1fr; } }

.hsq-lp .feature-split .img-side { background: var(--sand-deep); aspect-ratio: 4/3; overflow: hidden; }
@media (min-width: 880px) { .hsq-lp .feature-split .img-side { aspect-ratio: 1/1; } }
.hsq-lp .feature-split .img-side img { width: 100%; height: 100%; object-fit: cover; }
.hsq-lp .feature-split .text-side {
  padding: 36px var(--gutter);
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
  background: var(--cream);
}
@media (min-width: 880px) { .hsq-lp .feature-split .text-side { padding: 56px clamp(36px, 5vw, 72px); } }
.hsq-lp .feature-split .text-side h3 {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: var(--step-4); line-height: 1.15; margin: 0;
}
.hsq-lp .feature-split .text-side h3 em { font-style: italic; color: var(--accent); font-weight: 600; }
.hsq-lp .feature-split .text-side p {
  font-size: var(--step-1); line-height: 1.85; color: var(--ink-soft); margin: 0; max-width: 42ch;
}

/* ------------------------------------------------------------
   GUIDE (ink section, 4 cards)
   ------------------------------------------------------------ */
.hsq-lp .guide-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid rgba(246, 241, 232, 0.15);
}
@media (min-width: 600px) { .hsq-lp .guide-grid { grid-template-columns: repeat(2, 1fr); border-left: 1px solid rgba(246, 241, 232, 0.15); } }
@media (min-width: 980px) { .hsq-lp .guide-grid { grid-template-columns: repeat(4, 1fr); } }

.hsq-lp .guide-card {
  padding: 28px 22px;
  border-bottom: 1px solid rgba(246, 241, 232, 0.15);
  text-decoration: none; color: var(--cream);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 200px;
  transition: background .25s ease;
}
@media (min-width: 600px) {
  .hsq-lp .guide-card { border-right: 1px solid rgba(246, 241, 232, 0.15); }
}
.hsq-lp .guide-card:hover { background: rgba(246, 241, 232, 0.04); }
.hsq-lp .guide-card h4 {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: var(--step-2); line-height: 1.3; margin: 0; color: var(--cream);
}
.hsq-lp .guide-card p {
  font-size: 14px; line-height: 1.8; margin: 0;
  color: rgba(246, 241, 232, 0.7); margin-top: auto;
}
.hsq-lp .guide-card .arr {
  display: inline-block;
  font-size: 14px; color: var(--cream); margin-top: 6px;
  text-decoration: none;
}

/* ------------------------------------------------------------
   IG GRID
   ------------------------------------------------------------ */
.hsq-lp .ig-band { background: var(--cream); }
.hsq-lp .ig-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
@media (min-width: 600px) { .hsq-lp .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 880px) { .hsq-lp .ig-grid { grid-template-columns: repeat(6, 1fr); } }
.hsq-lp .ig-tile {
  aspect-ratio: 1/1; overflow: hidden; background: var(--sand-deep);
  position: relative; border-radius: 2px;
}
.hsq-lp .ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.hsq-lp .ig-tile:hover img { transform: scale(1.05); }
.hsq-lp .ig-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31, 28, 24, 0.55));
  opacity: 1; transition: opacity .3s ease;
}
.hsq-lp .ig-tile .over {
  position: absolute; left: 0; right: 0; bottom: 10px; text-align: center;
  font-size: 12px; color: var(--cream); font-weight: 500;
  opacity: 1; transition: opacity .3s ease;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
/* On tablet+ the overlay fades in on hover for a quieter look */
@media (min-width: 720px) and (hover: hover) {
  .hsq-lp .ig-tile::after { opacity: 0; }
  .hsq-lp .ig-tile .over { opacity: 0; }
  .hsq-lp .ig-tile:hover::after,
  .hsq-lp .ig-tile:hover .over { opacity: 1; }
}

.hsq-lp .ig-cta {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--hairline);
}
@media (min-width: 720px) { .hsq-lp .ig-cta { grid-template-columns: 1fr auto; align-items: end; gap: 24px; } }
.hsq-lp .ig-cta .lhs h3 {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: var(--step-3); margin: 0 0 6px; line-height: 1.2;
}
.hsq-lp .ig-cta .lhs p { margin: 0; color: var(--taupe); font-size: 14px; }

/* ------------------------------------------------------------
   HOW TO BUY (steps)
   ------------------------------------------------------------ */
.hsq-lp .steps {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
@media (min-width: 880px) { .hsq-lp .steps { grid-template-columns: repeat(5, 1fr); gap: 0; } }

.hsq-lp .step {
  padding: 26px 0; border-top: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 12px;
}
@media (min-width: 880px) { .hsq-lp .step { padding: 32px 24px 32px 0; } }
.hsq-lp .step .n {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: 38px; line-height: 1; color: var(--accent);
}
@media (min-width: 880px) { .hsq-lp .step .n { font-size: 44px; } }
.hsq-lp .step h4 {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: 18px; margin: 0; line-height: 1.3;
}
.hsq-lp .step p { font-size: 14px; line-height: 1.8; color: var(--taupe); margin: 0; }
.hsq-lp #buy .buy-guide-links {
  width: min(100%, 420px);
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
}
.hsq-lp #buy .buy-guide-links .btn-text {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
}
@media (min-width: 720px) {
  .hsq-lp #buy .buy-guide-links {
    width: auto;
    align-items: flex-start;
  }
  .hsq-lp #buy .buy-guide-links .btn-text {
    width: auto;
  }
}

/* ------------------------------------------------------------
   PROFILE
   ------------------------------------------------------------ */
.hsq-lp .profile {
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
@media (min-width: 880px) { .hsq-lp .profile { grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; } }
.hsq-lp .profile-img {
  aspect-ratio: 4/5; background: var(--sand-deep); border-radius: 2px;
  overflow: hidden; position: relative;
}
.hsq-lp .profile-img img { width: 100%; height: 100%; object-fit: cover; }

.hsq-lp .profile-body h3 {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: var(--step-4); line-height: 1.18; margin: 0 0 18px;
}
.hsq-lp .profile-body h3 em { font-style: italic; color: var(--accent); font-weight: 600; }
.hsq-lp .profile-body .lede { font-size: 16px; line-height: 1.85; color: var(--ink-soft); margin: 0 0 20px; }
.hsq-lp .profile-body .quote {
  font-family: var(--ff-serif); font-style: italic; font-weight: 400;
  font-size: var(--step-2); line-height: 1.55; color: var(--accent);
  padding-left: 20px; border-left: 1px solid var(--accent); margin: 24px 0;
}

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.hsq-lp .faq-list { display: flex; flex-direction: column; }
.hsq-lp .faq { border-top: 1px solid var(--hairline); }
.hsq-lp .faq:last-child { border-bottom: 1px solid var(--hairline); }
.hsq-lp .faq summary {
  list-style: none; cursor: pointer; padding: 22px 0;
  display: grid; grid-template-columns: 1fr 24px; gap: 16px; align-items: baseline;
}
.hsq-lp .faq summary::-webkit-details-marker { display: none; }
.hsq-lp .faq summary .qtext {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: var(--step-2); line-height: 1.4; color: var(--ink);
}
.hsq-lp .faq summary .qsign { width: 14px; height: 14px; position: relative; justify-self: end; }
.hsq-lp .faq summary .qsign::before,
.hsq-lp .faq summary .qsign::after {
  content: ""; position: absolute; background: var(--ink);
  transition: transform .25s ease;
}
.hsq-lp .faq summary .qsign::before { left: 0; right: 0; top: 50%; height: 1px; }
.hsq-lp .faq summary .qsign::after  { top: 0; bottom: 0; left: 50%; width: 1px; }
.hsq-lp .faq[open] summary .qsign::after { transform: scaleY(0); }
.hsq-lp .faq .answer {
  padding: 0 0 26px;
  font-size: 15px; line-height: 1.85; color: var(--ink-soft);
  max-width: 70ch;
}

/* ------------------------------------------------------------
   FINAL CTA
   ------------------------------------------------------------ */
.hsq-lp .final-cta {
  position: relative; min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; color: var(--cream);
  padding: 80px 0;
}
@media (min-width: 720px) { .hsq-lp .final-cta { padding: 110px 0; } }
.hsq-lp .final-cta .bg { position: absolute; inset: 0; z-index: 0; }
.hsq-lp .final-cta .bg img { width: 100%; height: 100%; object-fit: cover; }
.hsq-lp .final-cta .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,28,24,0.5), rgba(31,28,24,0.78));
}
.hsq-lp .final-cta .inner {
  position: relative; z-index: 1; text-align: center;
  max-width: 720px; padding: 0 var(--gutter);
}
.hsq-lp .final-cta h2 {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: var(--step-5); line-height: 1.15; margin: 0 0 18px; color: var(--cream);
}
.hsq-lp .final-cta h2 em { font-style: italic; color: #d6c5e0; font-weight: 600; }
.hsq-lp .final-cta p {
  font-size: var(--step-1); color: rgba(246, 241, 232, 0.85);
  margin: 0 0 32px; line-height: 1.85;
}
.hsq-lp .final-cta .cta-row {
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}
@media (min-width: 720px) { .hsq-lp .final-cta .cta-row { flex-direction: row; justify-content: center; gap: 14px; } }
.hsq-lp .final-cta .btn-primary { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.hsq-lp .final-cta .btn-primary:hover { background: transparent; color: var(--cream); }
.hsq-lp .final-cta .btn-ghost { color: var(--cream); border-color: rgba(246, 241, 232, 0.45); }
.hsq-lp .final-cta .btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.hsq-lp .site-footer {
  background: var(--cream);
  padding: 56px 0 24px;
  border-top: 1px solid var(--hairline);
}
.hsq-lp .footer-top {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  padding-bottom: 40px; border-bottom: 1px solid var(--hairline);
}
@media (min-width: 720px) { .hsq-lp .footer-top { grid-template-columns: 1.4fr 0.6fr 0.6fr 0.6fr; gap: 40px; } }
.hsq-lp .footer-top h5 {
  font-family: var(--ff-sans); font-size: 13px; font-weight: 600;
  color: var(--ink); margin: 0 0 14px;
}
.hsq-lp .footer-top ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.hsq-lp .footer-top a { text-decoration: none; color: var(--ink-soft); font-size: 14px; }
.hsq-lp .footer-top a:hover { color: var(--accent); }
.hsq-lp .footer-brand .mark {
  font-family: var(--ff-serif); font-weight: 500; font-size: 22px; margin-bottom: 12px;
}
.hsq-lp .footer-brand p { font-size: 14px; line-height: 1.75; color: var(--taupe); margin: 0; max-width: 36ch; }
.hsq-lp .footer-bottom {
  padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 12px; color: var(--taupe);
}
.hsq-lp .footer-bottom .disclaim { max-width: 60ch; }

/* ------------------------------------------------------------
   DISCLAIMER NOTE
   ------------------------------------------------------------ */
.hsq-lp .note {
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: 22px 0; margin: 36px 0;
  display: grid; grid-template-columns: 1fr; gap: 12px; align-items: start;
}
@media (min-width: 600px) { .hsq-lp .note { grid-template-columns: 120px 1fr; gap: 28px; padding: 26px 0; } }
.hsq-lp .note .nlabel { font-family: var(--ff-sans); font-size: 13px; font-weight: 600; color: var(--ink); }
.hsq-lp .note p { margin: 0; font-size: 14px; line-height: 1.85; color: var(--ink-soft); max-width: 70ch; }
.hsq-lp.hsq-article .note p:empty { display: none !important; }
.hsq-lp.hsq-article .note .note-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 70ch;
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.hsq-lp .art-hero { padding: 24px 0 18px; }
@media (min-width: 720px) { .hsq-lp .art-hero { padding: 40px 0 24px; } }

.hsq-lp .art-crumbs {
  font-size: 13px; color: var(--taupe); margin-bottom: 18px;
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.hsq-lp .art-crumbs a { color: var(--taupe); text-decoration: none; }
.hsq-lp .art-crumbs a:hover { color: var(--accent); }
.hsq-lp .art-crumbs .sep { opacity: 0.5; }

.hsq-lp .art-title {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: clamp(28px, 5vw + 10px, 56px); line-height: 1.15;
  margin: 0 0 18px; letter-spacing: 0; max-width: 22ch;
  text-wrap: pretty;
}
.hsq-lp .art-title em { font-style: italic; color: var(--accent); font-weight: 600; }

.hsq-lp .art-lede {
  font-size: clamp(16px, 0.6vw + 14px, 19px);
  line-height: 1.8; color: var(--ink-soft); max-width: 60ch; margin: 0 0 18px;
}

.hsq-lp .art-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding-top: 14px; border-top: 1px solid var(--hairline);
  font-size: 13px; color: var(--taupe);
}
.hsq-lp .art-meta .m strong { color: var(--ink); font-weight: 500; }
.hsq-lp .art-meta .sep { opacity: 0.4; }

.hsq-lp .art-cover {
  aspect-ratio: 16/10; background: var(--sand-deep); overflow: hidden;
  margin: 20px 0 0;
}
@media (min-width: 720px) { .hsq-lp .art-cover { margin: 28px 0 0; aspect-ratio: 16/9; } }
.hsq-lp .art-cover img { width: 100%; height: 100%; object-fit: cover; }

.hsq-lp .art-body {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  padding: 28px var(--gutter) 60px;
  min-width: 0;
}
@media (min-width: 980px) {
  .hsq-lp .art-body { grid-template-columns: 200px minmax(0, 680px) 1fr; gap: 56px; padding: 48px var(--gutter) 100px; }
}

.hsq-lp .toc { display: none; }
@media (min-width: 980px) {
  .hsq-lp .toc { display: block; position: sticky; top: calc(var(--header-h) + 24px); align-self: start; }
}
.hsq-lp .toc h6 { font-family: var(--ff-sans); font-size: 14px; font-weight: 600; color: var(--ink); margin: 0 0 18px; letter-spacing: 0.02em; }
.hsq-lp .toc ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.hsq-lp .toc li { }
.hsq-lp .toc a {
  font-size: 15px; line-height: 1.5; color: var(--ink-soft);
  text-decoration: none; display: block; padding: 2px 0;
  border-left: 1px solid transparent; padding-left: 10px;
  transition: border-color .2s ease, color .2s ease;
}
.hsq-lp .toc a:hover { color: var(--accent); border-left-color: var(--accent); }

.hsq-lp .content { max-width: 680px; min-width: 0; }
.hsq-lp .content h2 {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: clamp(22px, 1.6vw + 14px, 32px); line-height: 1.25;
  margin: 44px 0 14px; letter-spacing: 0; scroll-margin-top: 80px;
}
.hsq-lp .content h3 {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: clamp(18px, 0.8vw + 14px, 22px); line-height: 1.3;
  margin: 32px 0 10px;
}
.hsq-lp .content p {
  font-size: 16px; line-height: 1.95; margin: 0 0 18px; color: var(--ink-soft);
  text-wrap: pretty;
}
@media (min-width: 720px) { .hsq-lp .content p { font-size: 17px; } }
.hsq-lp .content p strong { color: var(--ink); font-weight: 600; }
.hsq-lp .content blockquote {
  margin: 28px 0; padding: 4px 0 4px 20px;
  border-left: 2px solid var(--accent);
  font-family: var(--ff-serif); font-style: italic;
  font-size: 18px; line-height: 1.7; color: var(--ink-soft);
}
.hsq-lp .content figure { margin: 28px 0; }
.hsq-lp .content figure img { border-radius: 2px; aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.hsq-lp .content figure figcaption { font-size: 13px; color: var(--taupe); margin-top: 10px; }
.hsq-lp .content ul { padding-left: 20px; margin: 0 0 18px; }
.hsq-lp .content li { margin: 0 0 10px; font-size: 16px; line-height: 1.85; color: var(--ink-soft); }

.hsq-lp .content p,
.hsq-lp .content h2,
.hsq-lp .content h3,
.hsq-lp .content ul,
.hsq-lp .content blockquote,
.hsq-lp .content figure,
.hsq-lp .fact,
.hsq-lp .note,
.hsq-lp .inline-cta {
  max-width: 100%;
}

/* fact card */
.hsq-lp .fact {
  display: grid; grid-template-columns: 1fr; margin: 32px 0; border: 1px solid var(--hairline);
}
@media (min-width: 600px) { .hsq-lp .fact { grid-template-columns: 1fr 1fr; } }
.hsq-lp .fact .left, .hsq-lp .fact .right { padding: 22px; }
@media (min-width: 600px) { .hsq-lp .fact .left { border-right: 1px solid var(--hairline); } }
.hsq-lp .fact .left { border-bottom: 1px solid var(--hairline); }
@media (min-width: 600px) { .hsq-lp .fact .left { border-bottom: 0; } }
.hsq-lp .fact h4 { font-family: var(--ff-sans); font-size: 12px; font-weight: 600; color: var(--accent); margin: 0 0 12px; }
.hsq-lp .fact dl { margin: 0; display: flex; flex-direction: column; gap: 6px; }
.hsq-lp .fact dt { font-size: 12px; color: var(--taupe); }
.hsq-lp .fact dd { margin: 0 0 6px; font-size: 14px; color: var(--ink-soft); }

/* callout */
.hsq-lp .callout {
  background: var(--sand); padding: 22px;
  margin: 30px 0; display: grid; grid-template-columns: 24px 1fr; gap: 14px;
}
.hsq-lp .callout svg { width: 24px; height: 24px; color: var(--accent); }
.hsq-lp .callout p { margin: 0; font-size: 15px; line-height: 1.8; color: var(--ink-soft); }
.hsq-lp .callout p strong { color: var(--ink); }

/* inline CTA (soft) */
.hsq-lp .inline-cta {
  margin: 36px 0; padding: 22px;
  border: 1px solid var(--hairline);
  display: grid; grid-template-columns: 1fr; gap: 16px; align-items: center;
}
@media (min-width: 720px) { .hsq-lp .inline-cta { padding: 28px; grid-template-columns: 1fr auto; gap: 24px; } }
.hsq-lp .inline-cta .ic-h {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: var(--step-2); line-height: 1.4; margin: 0;
}
.hsq-lp .inline-cta-text { min-width: 0; }
.hsq-lp .inline-cta-action { display: flex; justify-content: flex-start; }
.hsq-lp .inline-cta .btn { max-width: 100%; white-space: normal; text-align: center; }
@media (min-width: 720px) {
  .hsq-lp .inline-cta { grid-template-columns: minmax(0, 1fr) auto; }
  .hsq-lp .inline-cta-action { justify-content: flex-end; }
}

/* bottom CTA */
.hsq-lp .art-bottom-cta {
  background: var(--ink); color: var(--cream);
  padding: 56px 0;
}
@media (min-width: 720px) { .hsq-lp .art-bottom-cta { padding: 80px 0; } }
.hsq-lp .abc-grid {
  display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center;
}
@media (min-width: 880px) { .hsq-lp .abc-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }
.hsq-lp .abc-grid .img { aspect-ratio: 4/3; background: #2a2622; overflow: hidden; }
@media (min-width: 880px) { .hsq-lp .abc-grid .img { aspect-ratio: 1/1; } }
.hsq-lp .abc-grid .img img { width: 100%; height: 100%; object-fit: cover; }
.hsq-lp .abc-grid h2 {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: var(--step-4); line-height: 1.18; margin: 0 0 16px; color: var(--cream);
}
.hsq-lp .abc-grid h2 em { font-style: italic; color: #d6c5e0; font-weight: 600; }
.hsq-lp .abc-grid p { font-size: 16px; line-height: 1.85; color: rgba(246, 241, 232, 0.78); margin: 0 0 22px; }
.hsq-lp .abc-grid .cta-row {
  display: flex; flex-direction: column; gap: 10px;
}
@media (min-width: 720px) { .hsq-lp .abc-grid .cta-row { flex-direction: row; gap: 14px; flex-wrap: wrap; } }
.hsq-lp .abc-grid .btn-primary { background: var(--cream); color: var(--ink); }
.hsq-lp .abc-grid .btn-primary:hover { background: var(--accent); color: var(--cream); }
.hsq-lp .abc-grid .btn-ghost { color: var(--cream); border-color: rgba(246,241,232,0.4); }
.hsq-lp .abc-grid .btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* related */
.hsq-lp .related { padding: 56px 0; }
@media (min-width: 720px) { .hsq-lp .related { padding: 80px 0; } }
.hsq-lp .related .related-grid {
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
@media (min-width: 720px) { .hsq-lp .related .related-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.hsq-lp .related-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 12px; }
.hsq-lp .related-card .img { aspect-ratio: 4/3; overflow: hidden; background: var(--sand-deep); }
.hsq-lp .related-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.hsq-lp .related-card:hover .img img { transform: scale(1.04); }
.hsq-lp .related-card .cat { font-size: 13px; color: var(--accent); font-weight: 500; }
.hsq-lp .related-card h4 {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: 19px; line-height: 1.35; margin: 0; color: var(--ink);
}

/* ============================================================
   anim
   ============================================================ */
@keyframes hsqFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hsq-lp .reveal { opacity: 0; }
.hsq-lp .reveal.in { animation: hsqFadeUp .7s ease forwards; }

@media (prefers-reduced-motion: reduce) {
  .hsq-lp *, .hsq-lp *::before, .hsq-lp *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   HSQ LP Test v2.3 - SWELL layout recovery
   Page ID: 599
   ============================================================ */

/* SWELL parent containers */
.page-id-599 .l-content,
.page-id-599 .l-mainContent,
.page-id-599 .l-mainContent__inner,
.page-id-599 .post_content {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Gutenberg custom HTML block breakout */
.page-id-599 .post_content > .wp-block-html,
.page-id-599 .post_content .wp-block-html {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* LP body */
.page-id-599 .wp-block-html > .hsq-lp,
.page-id-599 .post_content .hsq-lp {
  width: 100vw !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  overflow-x: hidden;
}

/* Inner wrapper */
.page-id-599 .hsq-lp .hsq-wrap {
  width: min(1200px, calc(100% - 44px)) !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (min-width: 430px) {
  .page-id-599 .hsq-lp .hsq-wrap {
    width: min(1200px, calc(100% - 48px)) !important;
  }
}

@media (min-width: 720px) {
  .page-id-599 .hsq-lp .hsq-wrap {
    width: min(1200px, calc(100% - 72px)) !important;
  }
}

@media (min-width: 1100px) {
  .page-id-599 .hsq-lp .hsq-wrap {
    width: min(1200px, calc(100% - 112px)) !important;
  }
}

/* Shared grid resets */
.page-id-599 .hsq-lp .hero-grid,
.page-id-599 .hsq-lp .section-head,
.page-id-599 .hsq-lp .purposes,
.page-id-599 .hsq-lp .stones,
.page-id-599 .hsq-lp .ig-grid,
.page-id-599 .hsq-lp .guide-grid,
.page-id-599 .hsq-lp .steps,
.page-id-599 .hsq-lp .related .related-grid {
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Purpose grid */
.page-id-599 .hsq-lp .purposes {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}

@media (min-width: 600px) {
  .page-id-599 .hsq-lp .purposes {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
}

@media (min-width: 980px) {
  .page-id-599 .hsq-lp .purposes {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }
}

/* Popular stones grid */
.page-id-599 .hsq-lp .stones {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 28px !important;
}

@media (min-width: 600px) {
  .page-id-599 .hsq-lp .stones {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }
}

@media (min-width: 980px) {
  .page-id-599 .hsq-lp .stones {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 32px !important;
  }
}

.page-id-599 .hsq-lp .stone,
.page-id-599 .hsq-lp .purpose,
.page-id-599 .hsq-lp .guide-card {
  min-width: 0 !important;
}

.page-id-599 .hsq-lp .stone .photo img,
.page-id-599 .hsq-lp .purpose .bg,
.page-id-599 .hsq-lp .ig-tile img,
.page-id-599 .hsq-lp .related-card .img img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover !important;
}

/* Instagram grid */
.page-id-599 .hsq-lp .ig-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  align-items: stretch !important;
}

@media (min-width: 600px) {
  .page-id-599 .hsq-lp .ig-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 880px) {
  .page-id-599 .hsq-lp .ig-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
}

.page-id-599 .hsq-lp .ig-tile {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  margin: 0 !important;
}

.page-id-599 .hsq-lp .ig-tile img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  margin: 0 !important;
}

/* Beginner guide grid: text-only frame */
.page-id-599 .hsq-lp .guide-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  width: 100% !important;
  border-top: 1px solid rgba(246, 241, 232, 0.15) !important;
  border-left: 0 !important;
}

@media (min-width: 600px) {
  .page-id-599 .hsq-lp .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    border-left: 1px solid rgba(246, 241, 232, 0.15) !important;
  }
}

@media (min-width: 980px) {
  .page-id-599 .hsq-lp .guide-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

.page-id-599 .hsq-lp .guide-card {
  min-width: 0 !important;
  min-height: 200px !important;
  padding: 28px 22px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-bottom: 1px solid rgba(246, 241, 232, 0.15) !important;
  border-right: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}

@media (min-width: 600px) {
  .page-id-599 .hsq-lp .guide-card {
    border-right: 1px solid rgba(246, 241, 232, 0.15) !important;
  }
}

.page-id-599 .hsq-lp .guide-card p {
  margin-top: auto !important;
}

/* How to buy steps */
.page-id-599 .hsq-lp .steps {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}

@media (min-width: 880px) {
  .page-id-599 .hsq-lp .steps {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

/* Related article cards */
.page-id-599 .hsq-lp .related .related-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 28px !important;
}

.page-id-599 .hsq-lp .related-card .img {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
}

@media (min-width: 720px) {
  .page-id-599 .hsq-lp .related .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* ============================================================
   HSQ LP Test v2.5 - finishing adjustments
   Page ID: 599
   ============================================================ */

@media (max-width: 719px) {
  .page-id-599 .hsq-lp .hero {
    padding-top: 26px !important;
  }

  .page-id-599 .hsq-lp .hero-grid {
    gap: 26px !important;
  }

  .page-id-599 .hsq-lp .hero h1,
  .page-id-599 .hsq-lp .hero .sub,
  .page-id-599 .hsq-lp .hero .cta-row {
    max-width: 100% !important;
  }

  .page-id-599 .hsq-lp .hero .cta-row {
    justify-content: flex-start !important;
  }
}

.page-id-599 .hsq-lp .hsq-wrap.hero-grid {
  width: min(1200px, calc(100% - 44px)) !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 430px) {
  .page-id-599 .hsq-lp .hsq-wrap.hero-grid {
    width: min(1200px, calc(100% - 48px)) !important;
  }
}

@media (min-width: 720px) {
  .page-id-599 .hsq-lp .hsq-wrap.hero-grid {
    width: min(1200px, calc(100% - 72px)) !important;
  }
}

@media (min-width: 1100px) {
  .page-id-599 .hsq-lp .hsq-wrap.hero-grid {
    width: min(1200px, calc(100% - 112px)) !important;
  }
}

.page-id-599 .hsq-lp .section-head {
  align-items: end !important;
  gap: 18px !important;
  margin-bottom: 32px !important;
}

.page-id-599 .hsq-lp .section-head h2 {
  display: inline-block !important;
  width: auto !important;
  max-width: 10em !important;
  padding: 0 0 10px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(90, 74, 110, 0.22) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.page-id-599 .hsq-lp .tone-ink .section-head h2 {
  border-bottom-color: rgba(246, 241, 232, 0.24) !important;
}

.page-id-599 .hsq-lp .section-head .right p {
  max-width: 58ch !important;
}

@media (max-width: 599px) {
  .page-id-599 .hsq-lp .section-head {
    gap: 14px !important;
    margin-bottom: 28px !important;
  }

  .page-id-599 .hsq-lp .section-head h2 {
    max-width: 100% !important;
    padding-bottom: 8px !important;
  }
}

@media (min-width: 880px) {
  .page-id-599 .hsq-lp .section-head {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr) !important;
    gap: 44px !important;
    margin-bottom: 48px !important;
  }
}

/* ============================================================
   HSQ LP Test v2.6 - SWELL header separation
   Page ID: 599
   ============================================================ */

/* HSQ Header: restore centered header container */
#body_wrap.page-id-599 .l-header__inner.l-container {
  max-width: 1020px !important;
  width: min(1020px, calc(100% - 48px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (min-width: 1100px) {
  #body_wrap.page-id-599 .l-header__inner.l-container {
    width: min(1020px, calc(100% - 96px)) !important;
  }
}

/* HSQ Header: custom Instagram button mobile only */
@media (min-width: 960px) {
  #body_wrap.page-id-599 .l-header__customBtn,
  #body_wrap.page-id-599 .l-header__customBtn.sp_,
  #body_wrap.page-id-599 .l-header__customBtn a,
  #body_wrap.page-id-599 .l-header__customBtn button {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    min-width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
}

@media (max-width: 959px) {
  #body_wrap.page-id-599 .l-header__customBtn.sp_ {
    display: flex !important;
    visibility: visible !important;
    width: auto !important;
    height: auto !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 10px !important;
    overflow: visible !important;
  }
}

/* HSQ Header: align mobile header gutters across LP and articles */
@media (max-width: 959px) {
  #body_wrap.page-id-599 .l-header__inner.l-container,
  #body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-header__inner.l-container {
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
  }

  #body_wrap.page-id-599 .l-header__logo,
  #body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-header__logo {
    margin-left: 0 !important;
  }

  #body_wrap.page-id-599 .l-header__customBtn,
  #body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-header__customBtn {
    margin-left: auto !important;
  }

  #body_wrap.page-id-599 .l-header__menuBtn,
  #body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-header__menuBtn {
    margin-left: 14px !important;
  }
}

/* HSQ PC header Instagram menu button */
#body_wrap.page-id-599 .c-gnav .hsq-menu-instagram > a {
  border: 1px solid #1f1c18 !important;
  border-radius: 999px !important;
  padding: 7px 14px !important;
  line-height: 1 !important;
  margin-left: 8px !important;
}

#body_wrap.page-id-599 .c-gnav .hsq-menu-instagram > a:hover {
  background: #1f1c18 !important;
  color: #f6f1e8 !important;
}

/* HSQ Header: hide SWELL PC top SNS bar */
#body_wrap.page-id-599 #header .l-header__bar,
#body_wrap.page-id-599 #header .l-header__bar.pc_,
#body_wrap.page-id-599 #header .l-header__barInner {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

/* ============================================================
   HSQ LP Test v2.6.2 - remove SWELL heading decorations
   Page ID: 599
   ============================================================ */

#body_wrap.page-id-599 .post_content .hsq-lp h2,
#body_wrap.page-id-599 .post_content .hsq-lp h3,
#body_wrap.page-id-599 .post_content .hsq-lp h4,
#body_wrap.page-id-599 .post_content .hsq-lp .section-head .left,
#body_wrap.page-id-599 .post_content .hsq-lp .section-head h2 {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  background: transparent !important;
  background-image: none !important;
}

#body_wrap.page-id-599 .post_content .hsq-lp h2::before,
#body_wrap.page-id-599 .post_content .hsq-lp h2::after,
#body_wrap.page-id-599 .post_content .hsq-lp h3::before,
#body_wrap.page-id-599 .post_content .hsq-lp h3::after,
#body_wrap.page-id-599 .post_content .hsq-lp h4::before,
#body_wrap.page-id-599 .post_content .hsq-lp h4::after,
#body_wrap.page-id-599 .post_content .hsq-lp .section-head .left::before,
#body_wrap.page-id-599 .post_content .hsq-lp .section-head .left::after,
#body_wrap.page-id-599 .post_content .hsq-lp .section-head h2::before,
#body_wrap.page-id-599 .post_content .hsq-lp .section-head h2::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: none !important;
  background-image: none !important;
}

/* ============================================================
   HSQ SWELL fixed header alignment
   Page ID: 599 / postid-54 / postid-60 / postid-330 / postid-148 / postid-529 / postid-740 / postid-112 / postid-521 / postid-469 / postid-789 / postid-815 / postid-826
   ============================================================ */

@media (min-width: 960px) {
  #body_wrap.page-id-599 .l-fixHeader__inner.l-container,
  #body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-fixHeader__inner.l-container {
    width: min(1020px, calc(100% - 48px)) !important;
    max-width: 1020px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #body_wrap.page-id-599 .l-fixHeader__logo,
  #body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-fixHeader__logo {
    margin-left: 0 !important;
  }

  #body_wrap.page-id-599 .l-fixHeader__gnav,
  #body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-fixHeader__gnav {
    margin-left: auto !important;
  }
}

/* ============================================================
   HSQ LP Test v2.8 - width refinement
   Page ID: 599
   ============================================================ */

@media (min-width: 880px) {
  #body_wrap.page-id-599 .hsq-lp .hsq-wrap,
  #body_wrap.page-id-599 .hsq-lp .hsq-wrap.hero-grid {
    width: min(1020px, calc(100% - 72px)) !important;
    max-width: 1020px !important;
  }
}

@media (min-width: 1100px) {
  #body_wrap.page-id-599 .hsq-lp .hsq-wrap,
  #body_wrap.page-id-599 .hsq-lp .hsq-wrap.hero-grid {
    width: min(1020px, calc(100% - 96px)) !important;
  }
}

/* ============================================================
   HSQ Article Common Template
   Applies to: .post_content .hsq-lp.hsq-article
   ============================================================ */

.post_content .hsq-lp.hsq-article {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  overflow-x: hidden;
  background: #f6f1e8 !important;
}

.post_content .hsq-lp.hsq-article .hsq-wrap,
.post_content .hsq-lp.hsq-article .art-wrap,
.post_content .hsq-lp.hsq-article .article-wrap,
.post_content .hsq-lp.hsq-article .art-body {
  width: min(1020px, calc(100% - 44px)) !important;
  max-width: 1020px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (min-width: 430px) {
  .post_content .hsq-lp.hsq-article .hsq-wrap,
  .post_content .hsq-lp.hsq-article .art-wrap,
  .post_content .hsq-lp.hsq-article .article-wrap,
  .post_content .hsq-lp.hsq-article .art-body {
    width: min(1020px, calc(100% - 48px)) !important;
  }
}

@media (min-width: 880px) {
  .post_content .hsq-lp.hsq-article .art-body {
    grid-template-columns: minmax(160px, 220px) minmax(0, 700px) minmax(0, 1fr) !important;
    gap: 48px !important;
    padding-top: 48px !important;
    padding-bottom: 96px !important;
  }
}

.post_content .hsq-lp.hsq-article .art-body .content {
  max-width: 700px !important;
}

.post_content .hsq-lp.hsq-article .art-body .toc {
  max-width: 220px !important;
}

@media (min-width: 980px) {
  #body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-content,
  #body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-mainContent,
  #body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-mainContent__inner,
  #body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-article,
  #body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .post_content,
  .post_content .hsq-lp.hsq-article,
  .post_content .hsq-lp.hsq-article .art-body {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    transform: none !important;
  }

  .post_content .hsq-lp.hsq-article .toc {
    display: block !important;
    position: sticky !important;
    top: calc(var(--header-h, 72px) + 24px) !important;
    align-self: start !important;
    height: max-content !important;
    max-height: calc(100vh - var(--header-h, 72px) - 48px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }
}

.post_content .hsq-lp.hsq-article .art-hero {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

@media (min-width: 720px) {
  .post_content .hsq-lp.hsq-article .art-hero {
    padding-top: 22px !important;
    padding-bottom: 20px !important;
  }
}

.post_content .hsq-lp.hsq-article .art-cover {
  width: min(1020px, calc(100% - 44px)) !important;
  max-width: 1020px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 430px) {
  .post_content .hsq-lp.hsq-article .art-cover {
    width: min(1020px, calc(100% - 48px)) !important;
  }
}

.post_content .hsq-lp.hsq-article .art-cover img,
.post_content .hsq-lp.hsq-article .content figure img,
.post_content .hsq-lp.hsq-article .art-bottom-cta img,
.post_content .hsq-lp.hsq-article .related-card .img img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  margin: 0 !important;
}

.post_content .hsq-lp.hsq-article h2,
.post_content .hsq-lp.hsq-article h3,
.post_content .hsq-lp.hsq-article h4 {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  background-image: none !important;
}

.post_content .hsq-lp.hsq-article .content h2,
.post_content .hsq-lp.hsq-article .content h3,
.post_content .hsq-lp.hsq-article .content h4 {
  color: #1f1c18 !important;
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  background-image: none !important;
}

.post_content .hsq-lp.hsq-article .content h2 em,
.post_content .hsq-lp.hsq-article .content h3 em,
.post_content .hsq-lp.hsq-article .content h4 em {
  color: #5a4a6e !important;
}

.post_content .hsq-lp.hsq-article .art-bottom-cta h2,
.post_content .hsq-lp.hsq-article .art-bottom-cta .hsq-serif,
.post_content .hsq-lp.hsq-article .art-bottom-cta h2 em {
  color: var(--cream) !important;
}

.post_content .hsq-lp.hsq-article .content .p-toc {
  display: none !important;
}

.post_content .hsq-lp.hsq-article h2::before,
.post_content .hsq-lp.hsq-article h2::after,
.post_content .hsq-lp.hsq-article h3::before,
.post_content .hsq-lp.hsq-article h3::after,
.post_content .hsq-lp.hsq-article h4::before,
.post_content .hsq-lp.hsq-article h4::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

/* HSQ Article H2 - Soft Mineral Vein */
.post_content .hsq-lp.hsq-article .content h2 {
  position: relative !important;
  padding-bottom: 14px !important;
}

.post_content .hsq-lp.hsq-article .content h2::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  right: 28% !important;
  bottom: 0 !important;
  height: 9px !important;
  border: 0 !important;
  box-shadow: none !important;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 12' preserveAspectRatio='none'%3E%3Cpath d='M0 7 C60 2 96 10 150 5 C224 -1 270 11 334 5 C390 0 450 8 520 4' fill='none' stroke='%2376608f' stroke-width='1.1' opacity='.48'/%3E%3Cpath d='M24 10 C80 6 122 12 178 8 C250 4 302 12 374 7' fill='none' stroke='%23d8c6aa' stroke-width='1' opacity='.8'/%3E%3C/svg%3E") center / 100% 100% no-repeat !important;
}

@media (max-width: 767px) {
  .post_content .hsq-lp.hsq-article .content h2 {
    padding-bottom: 12px !important;
  }

  .post_content .hsq-lp.hsq-article .content h2::after {
    right: 10% !important;
    height: 7px !important;
    opacity: 0.85 !important;
  }
}

/* ============================================================
   HSQ 404 Page
   Scope: 404.php only (.hsq-404)
   ============================================================ */

/* HSQ 404: SWELL wrapper background fix */
#body_wrap.error404,
#body_wrap.error404 #content,
#body_wrap.error404 .l-content,
#body_wrap.error404 .l-container,
#body_wrap.error404 .l-mainContent,
#body_wrap.error404 .l-mainContent__inner,
#body_wrap.error404 .post_content,
#body_wrap.error404 .p-article,
#body_wrap.error404 main {
  background: #f6f1e8 !important;
  background-color: #f6f1e8 !important;
  background-image: none !important;
}

#body_wrap.error404::before,
#body_wrap.error404::after,
#body_wrap.error404 #content::before,
#body_wrap.error404 #content::after,
#body_wrap.error404 .l-content::before,
#body_wrap.error404 .l-content::after,
#body_wrap.error404 .l-mainContent::before,
#body_wrap.error404 .l-mainContent::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}

#body_wrap.error404 .hsq-404 {
  min-height: calc(100vh - 96px) !important;
  background: #f6f1e8 !important;
  background-image: none !important;
}
.hsq-404 {
  min-height: min(760px, calc(100vh - 96px));
  padding: 56px 22px 72px;
  background: #f6f1e8 !important;
  color: #1f1c18;
  font-family: "Noto Sans Thai", "Inter", system-ui, sans-serif;
}

.hsq-404__inner {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 42px 0 0;
}

.hsq-404__eyebrow {
  margin: 0 0 14px;
  color: #7c6f5d;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hsq-404 h1 {
  margin: 0 0 18px;
  color: #1f1c18;
  font-family: "Noto Serif Thai", "Cormorant Garamond", serif;
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
}

.hsq-404__lead {
  max-width: 62ch;
  margin: 0;
  color: #3a342d;
  font-size: clamp(16px, 0.6vw + 14px, 18px);
  line-height: 1.9;
}

.hsq-404__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 34px 0 26px;
}

.hsq-404__button,
.hsq-404__instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid #1f1c18;
  border-radius: 2px;
  color: #1f1c18;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hsq-404__button:hover,
.hsq-404__instagram:hover {
  background: #1f1c18;
  color: #f6f1e8;
  transform: translateY(-1px);
}

.hsq-404__button--primary {
  background: #1f1c18;
  color: #f6f1e8;
}

.hsq-404__button--primary:hover {
  background: #5a4a6e;
  border-color: #5a4a6e;
}

.hsq-404__note {
  max-width: 58ch;
  margin: 0 0 16px;
  padding-top: 24px;
  border-top: 1px solid #dfd6c2;
  color: #7c6f5d;
  font-size: 15px;
  line-height: 1.85;
}

.hsq-404__instagram {
  border-color: #5a4a6e;
  color: #5a4a6e;
}

@media (min-width: 720px) {
  .hsq-404 {
    padding: 76px 36px 96px;
  }

  .hsq-404__inner {
    padding-top: 54px;
  }

  .hsq-404__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 719px) {
  .hsq-404__button,
  .hsq-404__instagram {
    width: 100%;
  }
}

.post_content .hsq-lp.hsq-article .callout {
  display: grid !important;
  grid-template-columns: 28px minmax(0, 1fr) !important;
  column-gap: 18px !important;
  align-items: start !important;
}

.post_content .hsq-lp.hsq-article .callout svg {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 22px !important;
  height: 22px !important;
  margin-top: 0.35em !important;
  color: #5a4a6e !important;
}

.post_content .hsq-lp.hsq-article .callout p,
.post_content .hsq-lp.hsq-article .callout-text {
  grid-column: 2 !important;
  grid-row: 1 !important;
  margin: 0 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  line-height: 1.9 !important;
  color: #1f1c18 !important;
}

.post_content .hsq-lp.hsq-article .callout p:empty {
  display: none !important;
}

.post_content .hsq-lp.hsq-article .callout-text strong {
  color: var(--ink) !important;
}

.post_content .hsq-lp.hsq-article .note {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 48px 0 !important;
  padding: 24px 28px !important;
  border-top: 1px solid rgba(31, 28, 24, 0.14) !important;
  border-bottom: 1px solid rgba(31, 28, 24, 0.14) !important;
  background: transparent !important;
  color: #1f1c18 !important;
}

.post_content .hsq-lp.hsq-article .note .nlabel {
  display: block !important;
  margin-bottom: 14px !important;
  color: #1f1c18 !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
}

.post_content .hsq-lp.hsq-article .note .note-text,
.post_content .hsq-lp.hsq-article .note p {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  color: #1f1c18 !important;
  line-height: 1.9 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  text-align: left !important;
}

.post_content .hsq-lp.hsq-article .note p:empty {
  display: none !important;
}

.post_content .hsq-lp.hsq-article .fact,
.post_content .hsq-lp.hsq-article .inline-cta,
.post_content .hsq-lp.hsq-article .art-bottom-cta,
.post_content .hsq-lp.hsq-article .related,
.post_content .hsq-lp.hsq-article .related-card {
  min-width: 0 !important;
}

.post_content .hsq-lp.hsq-article .related-card .meta {
  align-self: flex-start !important;
  color: var(--accent) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.post_content .hsq-lp.hsq-article .related-card .meta:hover {
  color: var(--ink) !important;
}

@media (max-width: 719px) {
  .post_content .hsq-lp.hsq-article .hsq-wrap,
  .post_content .hsq-lp.hsq-article .art-wrap,
  .post_content .hsq-lp.hsq-article .article-wrap,
  .post_content .hsq-lp.hsq-article .art-body {
    width: calc(100% - 36px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .post_content .hsq-lp.hsq-article .art-hero {
    padding-top: 18px !important;
  }

  .post_content .hsq-lp.hsq-article .art-body {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .post_content .hsq-lp.hsq-article .art-title {
    font-size: clamp(34px, 9vw, 42px) !important;
  }

  .post_content .hsq-lp.hsq-article p,
  .post_content .hsq-lp.hsq-article li {
    font-size: 17px !important;
    line-height: 1.9 !important;
  }

  .post_content .hsq-lp.hsq-article figure,
  .post_content .hsq-lp.hsq-article .art-cover,
  .post_content .hsq-lp.hsq-article .inline-image {
    width: 100% !important;
    max-width: 100% !important;
  }

  .post_content .hsq-lp.hsq-article img {
    width: 100% !important;
    height: auto !important;
  }

  .post_content .hsq-lp.hsq-article .art-cover,
  .post_content .hsq-lp.hsq-article .content figure {
    margin-top: 22px !important;
  }

  .post_content .hsq-lp.hsq-article .note {
    padding: 20px 0 !important;
    margin: 40px 0 !important;
  }
}


/* ============================================================
   HSQ Article SWELL Outer Reset
   Target list: .postid-54 / .postid-60 / .postid-330 / .postid-529 / .postid-740 / .postid-148 / .postid-112 / .postid-521 / .postid-469 / .postid-789 / .postid-815, .postid-826
   Add future HSQ article post IDs to this :is() list only.
   ============================================================ */

/* Hide SWELL article chrome outside .hsq-lp.hsq-article. */
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .p-articleHead,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .c-postTitle,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .p-articleMetas,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .p-articleThumb,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-topTitleArea,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .c-pageTitle,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .p-articleTitle,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) #pickup_banner,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .p-pickupBanners,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .p-articleFoot,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .c-shareBtns,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) #after_article,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-articleBottom,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .p-pnLinks,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-articleBottom__section,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .p-toc:not(.toc),
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .p-indexModal {
  display: none !important;
}

#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) #header .l-header__bar,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) #header .l-header__bar.pc_,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) #header .l-header__barInner {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-content,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-mainContent,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-mainContent__inner,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-article,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .post_content {
  max-width: none !important;
  width: 100% !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
}

#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .post_content > .wp-block-html,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .post_content .wp-block-html {
  width: 100% !important;
  max-width: none !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media (min-width: 960px) {
  #body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-header__inner.l-container {
    max-width: 1020px !important;
    width: min(1020px, calc(100% - 96px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-header__customBtn,
  #body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-header__customBtn.sp_,
  #body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-header__customBtn a,
  #body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .l-header__customBtn button {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    min-width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
}

#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826),
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) #content,
#body_wrap:is(.postid-54, .postid-60, .postid-330, .postid-529, .postid-740, .postid-148, .postid-112, .postid-521, .postid-469, .postid-789, .postid-815, .postid-826) .post_content {
  background: #f6f1e8 !important;
}

/* ============================================================
   HSQ Article Individual Post Overrides
   Add only true article-specific differences here.
   Current state: none.
   ============================================================ */

/* ============================================================
   HSQ Category Archives: Articles of Stone / How To
   Scope: #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13)
   Confirmed #body_wrap classes: category-power-of-stone category-4 / category-how-to category-13
   Confirmed SWELL classes:
     .l-topTitleArea  .c-pageTitle  .c-pageTitle__inner  .c-pageTitle__subTitle
     .p-termContent   .l-mainContent  .l-mainContent__inner
     .p-postList  .p-postList__item  .p-postList__link
     .p-postList__thumb  .c-postThumb  .c-postThumb__figure  .c-postThumb__img
     .p-postList__body  .p-postList__title  .p-postList__excerpt
     .p-postList__meta  .p-postList__times  .c-postTimes__posted  .p-postList__cat
     .c-pagination  .page-numbers  .c-pagination__dot
   ============================================================ */

/* --- 1. Base: warm cream background --- */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13),
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) #content,
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-content,
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-mainContent {
  background: #f6f1e8 !important;
}

/* Reset SWELL demo body pattern */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13)::before {
  background: none !important;
  display: none !important;
}

/* CSS variable override for image aspect ratio (16:10) */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) {
  --card_posts_thumb_ratio: 62.5%;
}

/* --- 2. Hide SWELL PC top SNS bar --- */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) #header .l-header__bar,
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) #header .l-header__barInner {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

/* --- 2b. Hide empty pickup_banner --- */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) #pickup_banner,
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-pickupBanners,
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-pickupBanners__list:empty {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* --- 3. Mobile header gutter (matches other HSQ pages) --- */
@media (max-width: 959px) {
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-header__inner.l-container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
  }
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-header__logo {
    margin-left: 0 !important;
  }
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-header__customBtn {
    margin-left: auto !important;
  }
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-header__menuBtn {
    margin-left: 14px !important;
  }
}

/* --- 4. Fixed/main header alignment on PC (matches other HSQ pages) --- */
@media (min-width: 960px) {
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-header__inner.l-container,
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-fixHeader__inner.l-container {
    width: min(1020px, calc(100% - 48px)) !important;
    max-width: 1020px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-fixHeader__logo {
    margin-left: 0 !important;
  }
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-fixHeader__gnav {
    margin-left: auto !important;
  }
}

/* --- 5. Category header area --- */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-topTitleArea {
  background: #f6f1e8 !important;
  padding: 48px 0 40px !important;
  border-bottom: 1px solid #dfd6c2 !important;
  margin-bottom: 0 !important;
}
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-topTitleArea::before {
  content: none !important;
  display: none !important;
}
@media (min-width: 720px) {
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-topTitleArea {
    padding: 64px 0 48px !important;
  }
}
@media (min-width: 960px) {
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-topTitleArea {
    padding-top: 40px !important;
    padding-bottom: 32px !important;
  }
}

#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-topTitleArea .l-container {
  max-width: 1020px !important;
  width: min(1020px, calc(100% - 44px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (min-width: 720px) {
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-topTitleArea .l-container {
    width: min(1020px, calc(100% - 72px)) !important;
  }
}

/* h1: remove SWELL b_bottom decoration, apply serif */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-pageTitle {
  font-family: "Noto Serif Thai", "Cormorant Garamond", serif !important;
  font-size: clamp(24px, 3vw + 12px, 38px) !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  color: #1f1c18 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-pageTitle::before,
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-pageTitle::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  background: none !important;
}
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-pageTitle__inner {
  color: inherit !important;
  font: inherit !important;
}
@media (min-width: 960px) {
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-pageTitle {
    margin-top: 40px !important;
    margin-bottom: 28px !important;
  }
}

/* Subtitle ("– category –") → small taupe below title */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-pageTitle__subTitle {
  display: block !important;
  font-size: 13px !important;
  color: #7c6f5d !important;
  font-family: "Noto Sans Thai", "Inter", system-ui, sans-serif !important;
  font-weight: 400 !important;
  margin-top: 8px !important;
  letter-spacing: 0.03em !important;
  line-height: 1.5 !important;
}

/* Category description (if set in WP admin) */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-termContent {
  max-width: 1020px !important;
  width: min(1020px, calc(100% - 44px)) !important;
  margin: 16px auto 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-termContent p {
  font-size: 15px !important;
  line-height: 1.8 !important;
  color: #7c6f5d !important;
  margin: 0 !important;
}

/* --- 6. Main content container --- */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-mainContent,
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-mainContent__inner {
  max-width: 1020px !important;
  width: min(1020px, calc(100% - 44px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: #f6f1e8 !important;
}
@media (min-width: 720px) {
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-mainContent,
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-mainContent__inner {
    width: min(1020px, calc(100% - 72px)) !important;
  }
}
@media (min-width: 960px) {
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) #content.l-content,
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) #content.l-container {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-mainContent,
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-mainContent__inner {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
}

/* --- 7. Post list grid (SP: 1col / PC: 2col) --- */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 20px !important;
  list-style: none !important;
  margin: 48px 0 !important;
  padding: 0 !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  width: 100% !important;
}
@media (min-width: 600px) {
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 32px !important;
    margin: 64px 0 !important;
  }
}

/* --- 8. Post list item --- */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__item {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  min-width: 0 !important;
}

/* --- 9. Card link wrapper --- */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__link {
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  color: #1f1c18 !important;
  background: none !important;
  border-top: 1px solid #dfd6c2 !important;
  padding-top: 20px !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  transition: opacity 0.2s ease !important;
  height: 100% !important;
}
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__link:hover {
  opacity: 0.82 !important;
  box-shadow: none !important;
  transform: none !important;
}

/* --- 10. Card image (16:10 ratio via padding-top method) --- */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__thumb {
  width: 100% !important;
  overflow: hidden !important;
  border-radius: 2px !important;
  background: #ddd2bb !important;
  margin-bottom: 14px !important;
  flex-shrink: 0 !important;
  box-shadow: none !important;
  position: relative !important;
  height: auto !important;
}

#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-postThumb__figure {
  position: relative !important;
  padding-top: 62.5% !important;
  overflow: hidden !important;
  margin: 0 !important;
  height: 0 !important;
}

#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-postThumb__img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  max-width: none !important;
  margin: 0 !important;
  transition: transform 0.7s ease !important;
}
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__link:hover .c-postThumb__img {
  transform: scale(1.04) !important;
}

/* Hide image category badge */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-postThumb__cat {
  display: none !important;
}

/* --- 11. Card text area --- */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__body {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  padding: 0 !important;
  background: none !important;
  flex: 1 !important;
}
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__body::after {
  content: none !important;
  display: none !important;
}

/* --- 12. Card title (h2) --- */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__title {
  font-family: "Noto Serif Thai", "Cormorant Garamond", serif !important;
  font-size: clamp(16px, 1.4vw + 11px, 20px) !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  color: #1f1c18 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__title::before,
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__title::after {
  content: none !important;
  display: none !important;
}

/* --- 13. Card excerpt (2-line clamp) --- */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__excerpt {
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: #7c6f5d !important;
  margin: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* --- 14. Card meta (date + category label) --- */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__meta {
  display: flex !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  margin-top: 4px !important;
  padding: 0 !important;
  background: none !important;
}
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__times,
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-postTimes__posted {
  font-size: 12px !important;
  color: #a89a85 !important;
  background: none !important;
}
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-postTimes__posted::before {
  display: none !important;
}
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__cat {
  font-size: 12px !important;
  color: #5a4a6e !important;
  background: none !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-weight: 400 !important;
}
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__cat::before {
  display: none !important;
}

/* --- 15. Pagination --- */
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-pagination {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
  margin: 0 auto 64px !important;
  padding: 24px 0 0 !important;
  flex-wrap: wrap !important;
  background: none !important;
}
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-pagination .page-numbers {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 36px !important;
  height: 36px !important;
  padding: 0 10px !important;
  font-size: 14px !important;
  color: #3a342d !important;
  border: 1px solid #dfd6c2 !important;
  border-radius: 2px !important;
  text-decoration: none !important;
  background: none !important;
  box-shadow: none !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-pagination .page-numbers.current {
  background: #1f1c18 !important;
  color: #f6f1e8 !important;
  border-color: #1f1c18 !important;
  box-shadow: none !important;
}
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-pagination .page-numbers:not(.current):hover {
  background: #ebe3d3 !important;
  border-color: #7c6f5d !important;
}
#body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-pagination__dot {
  font-size: 14px !important;
  color: #a89a85 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: none !important;
  min-width: auto !important;
  height: auto !important;
  padding: 0 4px !important;
}

/* --- Mobile fine-tuning --- */
@media (max-width: 599px) {
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-topTitleArea {
    padding: 36px 0 28px !important;
  }

  /* Expand parent containers to full width so p-postList can use calc(100% - 32px) */
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-mainContent,
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .l-mainContent__inner {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Tab/archive wrappers (SWELL uses .c-tabBody on category pages) */
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-termContent,
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-tabBody,
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-tabBody__item {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Post list: left/right 16px gutter */
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList {
    width: calc(100% - 32px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 36px !important;
    margin-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 18px !important;
    grid-template-columns: 1fr !important;
  }

  /* Cards fill their grid cell */
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__item,
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__link,
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__thumb,
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-postThumb,
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-postThumb__figure,
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__body {
    width: 100% !important;
    max-width: none !important;
  }

  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__link {
    padding-top: 16px !important;
  }
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .p-postList__thumb {
    margin-bottom: 12px !important;
  }
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-pagination {
    margin-bottom: 48px !important;
    gap: 4px !important;
  }
  #body_wrap:is(.category-power-of-stone, .category-4, .category-how-to, .category-13) .c-pagination .page-numbers {
    min-width: 32px !important;
    height: 32px !important;
    font-size: 13px !important;
  }
}

/* ============================================================
   HSQ Privacy Policy Page
   Scope: page-id-139 / privacy policy only
   ============================================================ */

#body_wrap.page-id-139,
#body_wrap.page-id-139 #content,
#body_wrap.page-id-139 .l-content,
#body_wrap.page-id-139 .l-mainContent,
#body_wrap.page-id-139 .post_content {
  background: #f6f1e8 !important;
  color: #1f1c18 !important;
}

#body_wrap.page-id-139 .l-mainContent,
#body_wrap.page-id-139 .l-mainContent__inner,
#body_wrap.page-id-139 .post_content {
  max-width: 860px !important;
  width: min(860px, calc(100% - 44px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#body_wrap.page-id-139 .l-mainContent {
  padding-top: 48px !important;
  padding-bottom: 76px !important;
}

#body_wrap.page-id-139 .p-articleHead {
  max-width: 860px !important;
  width: min(860px, calc(100% - 44px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-top: 40px !important;
  padding-bottom: 8px !important;
}

#body_wrap.page-id-139 .c-postTitle,
#body_wrap.page-id-139 .p-articleTitle,
#body_wrap.page-id-139 .c-pageTitle {
  color: #1f1c18 !important;
  font-family: "Noto Serif Thai", "Cormorant Garamond", serif !important;
  font-size: clamp(30px, 4vw, 46px) !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#body_wrap.page-id-139 .post_content h2 {
  margin: 42px 0 14px !important;
  padding: 0 0 10px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(90, 74, 110, 0.22) !important;
  background: transparent !important;
  color: #1f1c18 !important;
  font-family: "Noto Serif Thai", "Cormorant Garamond", serif !important;
  font-size: clamp(21px, 1.2vw + 16px, 28px) !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
}

#body_wrap.page-id-139 .post_content h2::before,
#body_wrap.page-id-139 .post_content h2::after {
  content: none !important;
  display: none !important;
}

#body_wrap.page-id-139 .post_content p,
#body_wrap.page-id-139 .post_content li {
  color: #3a342d !important;
  font-size: 16px !important;
  line-height: 1.95 !important;
}

#body_wrap.page-id-139 .post_content ul,
#body_wrap.page-id-139 .post_content ol {
  margin-top: 0 !important;
  margin-bottom: 22px !important;
  padding-left: 1.4em !important;
}

#body_wrap.page-id-139 .post_content a {
  color: #5a4a6e !important;
  text-underline-offset: 3px !important;
}

@media (max-width: 719px) {
  #body_wrap.page-id-139 .l-mainContent,
  #body_wrap.page-id-139 .l-mainContent__inner,
  #body_wrap.page-id-139 .post_content,
  #body_wrap.page-id-139 .p-articleHead {
    width: calc(100% - 36px) !important;
    max-width: none !important;
  }

  #body_wrap.page-id-139 .l-mainContent {
    padding-top: 32px !important;
    padding-bottom: 56px !important;
  }
}










