:root {
  --vh-ink: #111112;
  --vh-muted: #5f646b;
  --vh-soft: #f7f4ed;
  --vh-card: #ffffff;
  --vh-gold: #d7b46b;
  --vh-gold-dark: #b48c3d;
  --vh-pin: #e60023;
  --vh-shadow: 0 26px 80px rgba(14, 24, 40, 0.08);
  --vh-radius-lg: 28px;
  --vh-radius-md: 18px;
  --vh-line: 1.85;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fdfcf9 0%, #f2eee6 100%);
  color: var(--vh-ink);
  font-family: "Inter", "Poppins", system-ui, -apple-system, sans-serif;
  line-height: var(--vh-line);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: var(--vh-ink);
  margin: 0 0 0.35em;
  line-height: 1.25;
}

p {
  margin: 0 0 1.15em;
  color: var(--vh-ink);
  font-size: 1.02rem;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Buttons */
.vh-cta {
  background: linear-gradient(120deg, #daba73 0%, #b48c3d 100%);
  color: #111;
  border: none;
  padding: 0.62rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(212, 186, 115, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.vh-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(180, 140, 61, 0.32);
}

/* Hero */
.vh-hero {
  max-width: 1200px;
  margin: 26px auto 0;
  padding: 0 1.2rem 120px;
}

.vh-hero-frame {
  position: relative;
  border-radius: var(--vh-radius-lg);
  overflow: hidden;
  box-shadow: var(--vh-shadow);
  background: #eae6dd;
}

.vh-hero img {
  width: 100%;
  height: clamp(260px, 58vw, 520px);
  object-fit: cover;
}

.vh-hero-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(9, 9, 9, 0) 0%, rgba(10, 10, 10, 0.75) 100%);
  color: #fff;
}

.vh-hero-meta h1 {
  color: #fff;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  margin-bottom: 0.4rem;
}

.vh-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

.blog-detail-page .vh-meta-row > span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
}

.blog-detail-page .vh-chip,
.blog-detail-page .vh-meta-pill {
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  border: 1px solid transparent;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-detail-page .vh-chip {
  background: linear-gradient(135deg, #f3dfac 0%, #d7b46b 100%);
  border-color: rgba(180, 140, 61, 0.24);
  color: #231a08;
  box-shadow: 0 10px 24px rgba(215, 180, 107, 0.18);
}

.blog-detail-page .vh-meta-pill {
  background: rgba(17, 17, 18, 0.04);
  border-color: rgba(17, 17, 18, 0.08);
  color: #353942;
}

.vh-pin-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--vh-pin);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 10px 28px rgba(230, 0, 35, 0.35);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  cursor: pointer;
  z-index: 2;
  white-space: nowrap;
}

.vh-hero-frame:hover .vh-pin-btn,
.vh-figure:hover .vh-pin-btn {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .vh-pin-btn {
    opacity: 1;
    transform: none;
  }
}

/* Article card */
.vh-article-shell {
  max-width: 1100px;
  margin: -90px auto 0;
  padding: 0 1.2rem 96px;
  position: relative;
  z-index: 1;
}

.vh-article-card {
  background: var(--vh-card);
  border-radius: var(--vh-radius-lg);
  padding: clamp(1.6rem, 4vw, 3rem);
  box-shadow: var(--vh-shadow);
}

.vh-lede {
  font-size: 1.1rem;
  color: #2c2a24;
  margin-bottom: 1.8rem;
}

.vh-article-body {
  font-size: 1.03rem;
  color: #1d1c1a;
}

.vh-article-body blockquote {
  margin: 1.5rem 0;
  padding: 1.1rem 1.4rem;
  border-left: 4px solid var(--vh-gold);
  background: #f9f4e9;
  border-radius: var(--vh-radius-md);
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #2b261c;
}

.vh-article-body ul {
  padding-left: 1.3rem;
  margin-bottom: 1.2rem;
}

.vh-article-body li {
  margin-bottom: 0.65rem;
}

.vh-article-body::after {
  content: "";
  display: block;
  clear: both;
}

.vh-figure {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  margin: clamp(1.3rem, 3vw, 2.2rem) 0;
  background: #f2eee6;
}

.vh-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vh-figure .vh-pin-btn {
  top: 12px;
  right: 12px;
}

.vh-figure .vh-product-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.vh-figure figcaption {
  padding: 0.75rem 1rem 1rem;
  color: var(--vh-muted);
  font-size: 0.95rem;
}

@media (min-width: 992px) {
  .vh-figure.align-left {
    float: left;
    width: 55%;
    margin: 0 2rem 1.6rem 0;
  }

  .vh-figure.align-right {
    float: right;
    width: 55%;
    margin: 0 0 1.6rem 2rem;
  }

  .vh-figure.full {
    width: 100%;
    float: none;
  }
}

@media (max-width: 991.98px) {
  .vh-figure.align-left,
  .vh-figure.align-right,
  .vh-figure.full {
    float: none;
    width: 100%;
    margin: 1.2rem 0;
  }
}

.vh-follow {
  background: linear-gradient(120deg, #fff4d8 0%, #ffffff 100%);
  border: 1px solid #f0e4c7;
  border-radius: var(--vh-radius-md);
  padding: 1.25rem 1.4rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
  margin: 1.6rem 0;
}

.vh-follow h4 {
  margin: 0 0 0.25rem;
}

.vh-follow .vh-cta {
  padding: 0.5rem 1.25rem;
}

.vh-related {
  margin-top: 2.8rem;
}

.vh-related-heading {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.vh-related-copy {
  margin: 0;
  color: var(--vh-muted);
  font-size: 0.98rem;
}

.vh-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.vh-related-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vh-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.vh-related-card img {
  height: 180px;
  object-fit: cover;
}

.vh-related-body {
  padding: 0.9rem 1rem 1.2rem;
}

.vh-related-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.vh-related-body .meta {
  color: var(--vh-muted);
  font-weight: 600;
  font-size: 0.92rem;
}

/* Listing */
.vh-listing-hero {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 1.2rem 36px;
}

.vh-listing-hero-card {
  background: linear-gradient(135deg, #ffffff 0%, #f2ecde 100%);
  border-radius: var(--vh-radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--vh-shadow);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: center;
}

.vh-listing-hero-card img {
  width: 100%;
  border-radius: var(--vh-radius-md);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .vh-listing-hero-card {
    grid-template-columns: 1fr;
  }
}

.vh-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}

.vh-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vh-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.1);
}

.vh-card img {
  height: 210px;
  object-fit: cover;
}

.vh-card-body {
  padding: 1.2rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.vh-card-meta {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  color: var(--vh-muted);
  font-weight: 600;
  font-size: 0.93rem;
}

.vh-card-title {
  font-size: 1.12rem;
  margin: 0;
}

.vh-card-hook {
  color: #2c2a24;
  font-size: 0.98rem;
}

.vh-pagination {
  max-width: 1200px;
  margin: 12px auto 70px;
  padding: 0 1.2rem;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}

.vh-pagination button {
  border: 1px solid #d8d3c6;
  background: #fff;
  color: #111;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.vh-pagination button.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.vh-status {
  max-width: 1200px;
  margin: 0 auto 12px;
  padding: 0 1.2rem;
  color: var(--vh-muted);
  font-weight: 600;
}

.vh-status[data-tone="danger"] { color: #b11c1c; }
.vh-status[data-tone="warning"] { color: #b48c3d; }
.vh-status[data-tone="info"] { color: var(--vh-muted); }

/* Footer (standard site footer plus Pinterest CTA) */
.site-footer,
.navbar,
.dropdown-menu,
.footer-links li a,
.footer-newsletter input,
.footer-newsletter button {
  font-family: "Inter", "Poppins", system-ui, -apple-system, sans-serif;
}

.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6 {
  font-family: "Playfair Display", "Times New Roman", serif;
}

/* Footer */

/* Progress bar */
#vhProgress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 1400;
}

#vhProgress .bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #e60023 0%, #daba73 80%);
  box-shadow: 0 0 14px rgba(214, 77, 77, 0.35);
  transition: width 0.1s ease-out;
}

/* Buttons */
.vh-ghost {
  border: 1px solid #d8d1c3;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.vh-ghost:hover {
  border-color: #b48c3d;
  transform: translateY(-1px);
}

/* Small helpers */
.vh-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #f0eadc;
  font-weight: 700;
}

.vh-subtle {
  color: var(--vh-muted);
  font-weight: 600;
}

.blog-detail-page .vh-hero .container {
  padding-left: clamp(1rem, 2.2vw, 1.6rem);
  padding-right: clamp(1rem, 2.2vw, 1.6rem);
}

.blog-detail-page .vh-article-shell > .container,
.blog-detail-page #related-posts > .container {
  max-width: min(100%, 1040px);
  padding-left: clamp(0.9rem, 2.1vw, 1.35rem);
  padding-right: clamp(0.9rem, 2.1vw, 1.35rem);
}

.blog-detail-page #blogTitle,
.blog-detail-page .vh-article-heading,
.blog-detail-page .vh-blog-gallery-title,
.blog-detail-page .vh-related-body h3 {
  overflow-wrap: anywhere;
}

.blog-detail-page .vibe-article-body {
  display: grid !important;
  align-content: start;
  gap: clamp(1.5rem, 2.8vw, 2.25rem);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 18, 0.05);
  border-radius: 32px;
  padding: clamp(1.6rem, 3.8vw, 2.5rem) clamp(1.1rem, 3vw, 2.2rem) clamp(2.4rem, 4vw, 3rem);
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.08);
  width: 100%;
  min-height: 0;
}

.blog-detail-page #blog-hook {
  min-height: 0;
}

.blog-detail-page .blog-lede {
  width: min(100%, 64ch);
  margin-inline: auto;
  margin-bottom: 0;
  padding-bottom: clamp(1.1rem, 2vw, 1.5rem);
  border-bottom: 1px solid rgba(17, 17, 18, 0.08);
  font-size: clamp(1.06rem, 1.1vw, 1.16rem);
  line-height: 1.9;
  color: #2b3038;
  text-wrap: pretty;
}

.blog-detail-page .blog-content {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.6rem);
  margin-top: 0;
}

.blog-detail-page .vh-blog-item-block {
  display: block;
  margin-bottom: 0;
  width: 100%;
}

.blog-detail-page .vh-blog-item-text-container {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
  width: min(100%, 64ch);
  margin-inline: auto;
}

.blog-detail-page .vh-blog-item-text-container p,
.blog-detail-page .vh-blog-item-text-container li,
.blog-detail-page .vh-blog-gallery-copy,
.blog-detail-page .vh-blog-gallery-description,
.blog-detail-page .vh-related-copy {
  overflow-wrap: anywhere;
}

.blog-detail-page .vh-blog-item-text-container p,
.blog-detail-page .vh-blog-item-text-container li {
  color: #20242c;
  font-size: 1.03rem;
  line-height: 1.88;
  text-wrap: pretty;
}

.blog-detail-page .vh-blog-item-text-container p + p {
  margin-top: 0.2rem;
}

.blog-detail-page .vh-article-heading {
  margin-bottom: 0.15rem;
  text-wrap: balance;
}

.blog-detail-page .vh-blog-divider {
  margin: 0 0 1.25rem;
}

.blog-detail-page .vh-blog-gallery-section {
  display: grid;
  gap: 1.35rem;
  margin-top: 0.35rem;
}

.blog-detail-page .vh-blog-gallery-header {
  width: min(100%, 64ch);
  margin-inline: auto;
}

.blog-detail-page .vh-blog-gallery-grid {
  margin-top: 0.15rem;
}

.blog-detail-page #article-engagement {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.blog-detail-page #article-engagement > .container {
  max-width: min(100%, 1040px);
  padding-left: clamp(0.9rem, 2.1vw, 1.35rem);
  padding-right: clamp(0.9rem, 2.1vw, 1.35rem);
}

.blog-detail-page .vh-story-endcap {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
}

.blog-detail-page .vh-story-brand-panel,
.blog-detail-page .vh-story-share-panel,
.blog-detail-page .vh-story-comments-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 18, 0.06);
  background:
    radial-gradient(circle at top left, rgba(215, 180, 107, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 244, 236, 0.97));
  box-shadow: 0 20px 46px rgba(17, 24, 39, 0.075);
  padding: clamp(1.15rem, 2.3vw, 1.55rem);
}

.blog-detail-page .vh-story-brand-panel,
.blog-detail-page .vh-story-share-panel {
  display: grid;
  align-content: start;
  min-height: 100%;
}

.blog-detail-page .vh-story-brand-panel::after,
.blog-detail-page .vh-story-share-panel::after,
.blog-detail-page .vh-story-comments-panel::after {
  content: "";
  position: absolute;
  inset: auto auto -18px -18px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 180, 107, 0.14), rgba(215, 180, 107, 0));
  pointer-events: none;
}

.blog-detail-page .vh-story-panel-head {
  display: grid;
  gap: 0.38rem;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}

.blog-detail-page .vh-story-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(35, 47, 62, 0.92);
  color: #f7d165;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-detail-page .vh-story-panel-head h2,
.blog-detail-page .vh-story-panel-head h3 {
  margin: 0;
  color: #111318;
  text-wrap: balance;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.blog-detail-page .vh-story-panel-head p {
  margin: 0;
  color: #4b5563;
  line-height: 1.66;
  max-width: 40ch;
  font-size: 1rem;
}

.blog-detail-page .vh-story-brand-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.blog-detail-page .vh-story-brand-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 17, 18, 0.06);
  color: #2d3642;
  font-size: 0.88rem;
  font-weight: 700;
}

.blog-detail-page .vh-story-brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  position: relative;
  z-index: 1;
  margin-top: 0.15rem;
}

.blog-detail-page .vh-story-brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.blog-detail-page .vh-story-brand-link:hover {
  transform: translateY(-1px);
}

.blog-detail-page .vh-story-brand-link.is-primary {
  background: linear-gradient(135deg, #ffd400, #ffca14);
  color: #171717;
  box-shadow: 0 14px 28px rgba(247, 202, 0, 0.22);
}

.blog-detail-page .vh-story-brand-link.is-secondary {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 18, 0.08);
  color: #243140;
}

.blog-detail-page .vh-story-share-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  position: relative;
  z-index: 1;
}

.blog-detail-page .vh-share-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 48px;
  padding: 0.74rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 18, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: #18212d;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.blog-detail-page button.vh-share-card {
  appearance: none;
  cursor: pointer;
}

.blog-detail-page .vh-share-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
}

.blog-detail-page .vh-share-card.is-wide {
  grid-column: 1 / -1;
}

.blog-detail-page .vh-share-card i {
  font-size: 0.98rem;
}

.blog-detail-page .vh-share-card.is-pinterest {
  color: #b1001b;
}

.blog-detail-page .vh-share-card.is-facebook {
  color: #1b4ecf;
}

.blog-detail-page .vh-share-card.is-x {
  color: #0f172a;
}

.blog-detail-page .vh-share-card.is-whatsapp {
  color: #128c5a;
}

.blog-detail-page .vh-share-card.is-email,
.blog-detail-page .vh-share-card.is-copy {
  color: #6b4f1d;
}

.blog-detail-page .vh-comments-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 0.95rem;
  position: relative;
  z-index: 1;
}

.blog-detail-page .vh-comments-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.4rem 0.75rem;
  border-radius: 14px;
  background: rgba(35, 47, 62, 0.94);
  color: #f7d165;
  font-weight: 800;
}

.blog-detail-page .vh-comment-form {
  display: grid;
  gap: 0.95rem;
  position: relative;
  z-index: 1;
}

.blog-detail-page .vh-comment-fields {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 0.85rem;
}

.blog-detail-page .vh-comment-input,
.blog-detail-page .vh-comment-textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 18, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: #18212d;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.blog-detail-page .vh-comment-input:focus,
.blog-detail-page .vh-comment-textarea:focus {
  border-color: rgba(215, 180, 107, 0.72);
  box-shadow: 0 0 0 4px rgba(215, 180, 107, 0.12);
}

.blog-detail-page .vh-comment-input {
  min-height: 52px;
}

.blog-detail-page .vh-comment-textarea {
  min-height: 132px;
  resize: vertical;
}

.blog-detail-page .vh-comment-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.blog-detail-page .vh-comment-disclaimer {
  margin: 0;
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.55;
}

.blog-detail-page .vh-comment-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.78rem 1.2rem;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffd400, #ffca14);
  color: #171717;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(247, 202, 0, 0.2);
}

.blog-detail-page .vh-comment-message {
  min-height: 1.45rem;
  margin-top: -0.15rem;
  position: relative;
  z-index: 1;
  font-size: 0.93rem;
  font-weight: 700;
}

.blog-detail-page .vh-comment-message[data-tone="success"] {
  color: #157347;
}

.blog-detail-page .vh-comment-message[data-tone="error"] {
  color: #b42318;
}

.blog-detail-page .vh-comments-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.2rem;
  position: relative;
  z-index: 1;
}

.blog-detail-page .vh-comment-empty {
  padding: 1.05rem 1.15rem;
  border-radius: 22px;
  border: 1px dashed rgba(17, 17, 18, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: #5b6470;
}

.blog-detail-page .vh-comment-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 18, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.blog-detail-page .vh-comment-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(35, 47, 62, 0.94);
  color: #f7d165;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.blog-detail-page .vh-comment-body {
  min-width: 0;
}

.blog-detail-page .vh-comment-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
}

.blog-detail-page .vh-comment-name {
  margin: 0;
  font-size: 1rem;
  color: #111318;
}

.blog-detail-page .vh-comment-date {
  color: #7b8491;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.blog-detail-page .vh-comment-copy {
  margin: 0;
  color: #2f3742;
  line-height: 1.75;
  white-space: pre-wrap;
}

@media (min-width: 768px) {
  .blog-detail-page .vh-story-endcap {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
  }

  .blog-detail-page .vh-story-comments-panel {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .blog-detail-page .vh-blog-gallery-grid {
    grid-template-columns: 1fr;
    gap: clamp(1.4rem, 2.8vw, 2.25rem);
  }

  .blog-detail-page .vh-blog-gallery-card {
    display: grid;
    grid-template-columns: minmax(280px, 1.05fr) minmax(300px, 0.95fr);
    align-items: stretch;
    width: min(100%, 920px);
    min-height: 320px;
    border-radius: 30px;
    border: 1px solid rgba(17, 17, 18, 0.06);
    background:
      radial-gradient(circle at top left, rgba(215, 180, 107, 0.12), transparent 38%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 239, 0.96));
    box-shadow: 0 22px 56px rgba(17, 24, 39, 0.1);
    overflow: hidden;
    position: relative;
  }

  .blog-detail-page .vh-blog-gallery-card::after {
    content: "";
    position: absolute;
    inset: auto 1.4rem 1.1rem auto;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(215, 180, 107, 0.22), rgba(215, 180, 107, 0));
    pointer-events: none;
  }

  .blog-detail-page .vh-blog-gallery-card:nth-child(odd) {
    justify-self: start;
    margin-right: clamp(1.4rem, 4vw, 4.5rem);
  }

  .blog-detail-page .vh-blog-gallery-card:nth-child(even) {
    justify-self: end;
    margin-left: clamp(1.4rem, 4vw, 4.5rem);
  }

  .blog-detail-page .vh-blog-gallery-card:nth-child(even) .vh-blog-gallery-media-wrap {
    order: 2;
  }

  .blog-detail-page .vh-blog-gallery-card:nth-child(even) .vh-blog-gallery-body {
    order: 1;
  }

  .blog-detail-page .vh-blog-gallery-media-wrap,
  .blog-detail-page .vh-blog-gallery-body {
    min-width: 0;
  }

  .blog-detail-page .vh-blog-gallery-media-wrap {
    height: 100%;
  }

  .blog-detail-page .vh-blog-gallery-media,
  .blog-detail-page .vh-blog-gallery-media img {
    height: 100%;
  }

  .blog-detail-page .vh-blog-gallery-media img {
    aspect-ratio: auto;
    min-height: 320px;
  }

  .blog-detail-page .vh-blog-gallery-body {
    display: grid;
    grid-auto-rows: max-content;
    align-content: center;
    gap: 1rem;
    padding: clamp(1.4rem, 2.8vw, 2rem);
  }

  .blog-detail-page .vh-blog-gallery-title {
    font-size: clamp(1.22rem, 1.7vw, 1.5rem);
    line-height: 1.24;
    text-wrap: balance;
  }

  .blog-detail-page .vh-blog-gallery-description {
    font-size: 1rem;
    line-height: 1.78;
    color: #404652;
  }

  .blog-detail-page .vh-blog-gallery-cta {
    justify-self: start;
    min-height: 46px;
    padding: 0.75rem 1.15rem;
    box-shadow: 0 12px 24px rgba(247, 202, 0, 0.24);
  }

  .blog-detail-page .vh-blog-gallery-card:nth-child(even) .vh-blog-gallery-cta {
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .vh-nav {
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .vh-nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 0.8rem;
    font-size: 0.94rem;
  }

  .vh-logo img {
    width: 40px;
    height: 40px;
  }

  .vh-hero {
    padding-bottom: 80px;
  }

  .vh-article-shell {
    margin-top: -60px;
    padding-bottom: 72px;
  }
}

@media (max-width: 767.98px) {
  .blog-detail-page .vh-hero {
    margin-top: 10px;
    padding: 0 0.85rem 76px;
  }

  .blog-detail-page .vh-blog-header {
    padding: 0 0.15rem 0.95rem;
    gap: 0.65rem;
  }

  .blog-detail-page .vh-blog-header h1 {
    font-size: clamp(1.88rem, 7.8vw, 2.35rem);
    line-height: 1.06;
    letter-spacing: -0.025em;
  }

  .blog-detail-page .vh-meta-row {
    gap: 0.45rem;
  }

  .blog-detail-page .vh-meta-row > span {
    min-height: 34px;
    font-size: 0.76rem;
  }

  .blog-detail-page .vh-hero-frame {
    margin: 0;
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.14);
  }

  .blog-detail-page .vh-hero img {
    height: clamp(228px, 68vw, 320px);
    min-height: 228px;
  }

  .blog-detail-page .vh-pin-btn {
    top: 12px;
    right: 12px;
    padding: 0.5rem 0.68rem;
    font-size: 0.76rem;
    box-shadow: 0 10px 24px rgba(230, 0, 35, 0.24);
  }

  .blog-detail-page .vh-article-shell {
    margin-top: -44px;
    padding: 0 0.85rem 64px;
  }

  .blog-detail-page .vibe-article-body {
    border-radius: 26px;
    padding: 1.15rem 1rem 1.7rem;
    box-shadow: 0 18px 46px rgba(17, 24, 39, 0.11);
    gap: 1.15rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 246, 239, 0.97));
  }

  .blog-detail-page .vh-article-shell > .container,
  .blog-detail-page #related-posts > .container {
    padding-left: 0.45rem;
    padding-right: 0.45rem;
  }

  .blog-detail-page .blog-lede {
    width: 100%;
    font-size: 1rem;
    line-height: 1.82;
    padding-bottom: 1.05rem;
    color: #2c3139;
  }

  .blog-detail-page .blog-content {
    gap: 1.35rem;
  }

  .blog-detail-page .vh-blog-item-block {
    gap: 0.85rem;
  }

  .blog-detail-page .vh-article-heading {
    font-size: 1.34rem;
    line-height: 1.24;
  }

  .blog-detail-page .vh-blog-item-text-container p,
  .blog-detail-page .vh-blog-item-text-container li {
    font-size: 0.99rem;
    line-height: 1.78;
  }

  .blog-detail-page .vh-blog-item-text-container {
    width: 100%;
  }

  .blog-detail-page .vh-blog-gallery-section {
    gap: 1.05rem;
    margin-top: 0.3rem;
  }

  .blog-detail-page .vh-blog-gallery-header {
    width: 100%;
    display: grid;
    gap: 0.5rem;
  }

  .blog-detail-page .vh-blog-item-text-container ul {
    padding-left: 1rem;
    gap: 0.7rem;
  }

  .blog-detail-page .vh-blog-gallery-grid {
    gap: 1rem;
  }

  .blog-detail-page #article-engagement {
    margin-top: 2.55rem;
  }

  .blog-detail-page .vh-story-endcap {
    margin-top: 0;
    gap: 0.95rem;
  }

  .blog-detail-page .vh-story-brand-panel,
  .blog-detail-page .vh-story-share-panel,
  .blog-detail-page .vh-story-comments-panel {
    border-radius: 24px;
    padding: 0.98rem;
    box-shadow: 0 16px 32px rgba(17, 24, 39, 0.085);
  }

  .blog-detail-page .vh-story-panel-head {
    margin-bottom: 0.75rem;
  }

  .blog-detail-page .vh-story-panel-head h2,
  .blog-detail-page .vh-story-panel-head h3 {
    font-size: 1.12rem;
    line-height: 1.16;
  }

  .blog-detail-page .vh-story-panel-head p {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .blog-detail-page .vh-story-brand-meta {
    gap: 0.55rem;
    margin-bottom: 0.85rem;
  }

  .blog-detail-page .vh-story-brand-chip {
    min-height: 34px;
    font-size: 0.82rem;
  }

  .blog-detail-page .vh-story-brand-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .blog-detail-page .vh-story-brand-link,
  .blog-detail-page .vh-share-card,
  .blog-detail-page .vh-comment-submit {
    min-height: 46px;
  }

  .blog-detail-page .vh-story-share-grid {
    grid-template-columns: 1fr;
  }

  .blog-detail-page .vh-share-card.is-wide {
    grid-column: auto;
  }

  .blog-detail-page .vh-comments-meta {
    align-items: flex-start;
    margin-bottom: 0.8rem;
  }

  .blog-detail-page .vh-comment-fields {
    grid-template-columns: 1fr;
  }

  .blog-detail-page .vh-comment-textarea {
    min-height: 124px;
  }

  .blog-detail-page .vh-comment-form-footer {
    display: grid;
  }

  .blog-detail-page .vh-comment-submit {
    width: 100%;
  }

  .blog-detail-page .vh-comment-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .blog-detail-page .vh-comment-avatar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .blog-detail-page .vh-comment-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .blog-detail-page .vh-blog-gallery-card {
    display: block;
    width: 100%;
    justify-self: stretch;
    border-radius: 24px;
    border: 1px solid rgba(17, 17, 18, 0.05);
    background:
      radial-gradient(circle at top left, rgba(215, 180, 107, 0.1), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 244, 236, 0.98));
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.09);
    overflow: hidden;
    position: relative;
  }

  .blog-detail-page .vh-blog-gallery-card:nth-child(even) {
    justify-self: stretch;
  }

  .blog-detail-page .vh-blog-gallery-card::before {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(215, 180, 107, 0.85), rgba(255, 216, 20, 0.45));
    pointer-events: none;
  }

  .blog-detail-page .vh-blog-gallery-media img {
    aspect-ratio: 4 / 3;
  }

  .blog-detail-page .vh-blog-gallery-body {
    padding: 1.05rem 1rem 1.15rem;
    gap: 0.8rem;
  }

  .blog-detail-page .vh-blog-gallery-title {
    font-size: 1.08rem;
    line-height: 1.3;
  }

  .blog-detail-page .vh-blog-gallery-description {
    font-size: 0.94rem;
    line-height: 1.68;
    color: #444a55;
  }

  .blog-detail-page .vh-blog-gallery-cta {
    width: 100%;
    min-height: 46px;
    box-shadow: 0 10px 22px rgba(247, 202, 0, 0.22);
  }

  .blog-detail-page #related-posts {
    margin-top: 2.8rem;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .blog-detail-page .vh-related {
    margin-top: 0;
  }

  .blog-detail-page .vh-related-heading {
    margin-bottom: 1rem;
  }

  .blog-detail-page .vh-related-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .blog-detail-page .vh-related-card img {
    height: 188px;
  }
}
