
:root {
  --v254sh-bg: #fffaf3;
  --v254sh-card: #ffffff;
  --v254sh-text: #111111;
  --v254sh-muted: #687166;
  --v254sh-green: #55733f;
  --v254sh-green-dark: #344a2b;
  --v254sh-orange: #ff6418;
  --v254sh-orange-soft: #fff0e6;
  --v254sh-border: #eee7dd;
  --v254sh-shadow: 0 18px 50px rgba(31,30,28,.075);
}

html,
body.v254-shell-active {
  overflow-x: hidden !important;
}

body.v254-shell-active {
  background: var(--v254sh-bg) !important;
}

body.v254-shell-active,
body.v254-shell-active * {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.v254sh-icon {
  width: 18px !important;
  height: 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  line-height: 0 !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

.v254sh-icon svg {
  width: 100% !important;
  height: 100% !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.v254sh-icon svg path,
.v254sh-icon svg circle,
.v254sh-icon svg rect {
  fill: none !important;
  stroke: currentColor !important;
}

/* Header */
.v254sh-header {
  width: 100%;
  padding: 18px 0 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,100,24,.08), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(85,115,63,.08), transparent 32%),
    var(--v254sh-bg);
  position: relative;
  z-index: 999;
}

.v254sh-header-inner {
  width: min(1240px, calc(100% - 36px));
  max-width: 1240px;
  min-height: 82px;
  margin: 0 auto;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(238,231,221,.95);
  box-shadow: var(--v254sh-shadow);
  border-radius: 28px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 12px 14px 12px 22px;
}

.v254sh-brand {
  color: var(--v254sh-text) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-weight: 950 !important;
  font-size: 25px !important;
  letter-spacing: -.055em !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.v254sh-brand strong { color: var(--v254sh-green); }

.v254sh-brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  background: var(--v254sh-orange-soft);
  color: var(--v254sh-orange);
  border-radius: 14px;
}

.v254sh-brand-mark .v254sh-icon {
  width: 20px !important;
  height: 20px !important;
}

.v254sh-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  min-width: 0;
}

.v254sh-nav a,
.v254sh-footer a {
  color: #1d211b !important;
  text-decoration: none !important;
  font-weight: 850 !important;
  font-size: 15px !important;
  white-space: nowrap !important;
}

.v254sh-nav a {
  position: relative;
  padding: 8px 0;
}

.v254sh-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--v254sh-orange);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.v254sh-nav a:hover::after { transform: scaleX(1); }

.v254sh-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.v254sh-location {
  background: white;
  border: 1px solid var(--v254sh-border);
  border-radius: 999px;
  padding: 12px 15px;
  font-weight: 850;
  color: #1d211b;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.v254sh-location .v254sh-icon { color: var(--v254sh-orange); }

.v254sh-submit,
.v254sh-mobile-submit {
  border: 0 !important;
  background: var(--v254sh-orange) !important;
  color: white !important;
  font-weight: 950 !important;
  padding: 15px 20px !important;
  border-radius: 17px !important;
  cursor: pointer !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  justify-content: center !important;
  box-shadow: 0 14px 30px rgba(255,100,24,.25) !important;
  white-space: nowrap !important;
}

.v254sh-menu-btn,
.v254sh-close-btn {
  display: none;
  border: 1px solid var(--v254sh-border);
  background: #fff;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  color: var(--v254sh-text);
  cursor: pointer;
}

.v254sh-mobile-panel { display: none; }

/* Footer */
.v254sh-footer {
  width: 100%;
  background:
    radial-gradient(circle at 8% 20%, rgba(255,100,24,.06), transparent 28%),
    radial-gradient(circle at 92% 80%, rgba(85,115,63,.07), transparent 32%),
    var(--v254sh-bg);
  padding: 20px 0 0;
  position: relative;
  z-index: 10;
}

.v254sh-footer-inner {
  width: min(1240px, calc(100% - 36px));
  max-width: 1240px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid var(--v254sh-border);
  border-radius: 32px 32px 0 0;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(150px, .75fr) minmax(150px, .75fr) minmax(220px, .9fr);
  gap: 34px;
  box-shadow: 0 -12px 50px rgba(31,30,28,.04);
  overflow: hidden;
}

.v254sh-footer-brand p {
  color: var(--v254sh-muted) !important;
  max-width: 400px;
  line-height: 1.65 !important;
  margin: 18px 0 !important;
  font-size: 16px;
}

.v254sh-socials {
  display: flex;
  gap: 10px;
}

.v254sh-socials a {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--v254sh-border);
  display: grid;
  place-items: center;
  background: white;
  color: var(--v254sh-green-dark) !important;
}

.v254sh-footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v254sh-footer h4 {
  margin: 0 0 8px !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  color: var(--v254sh-text);
}

.v254sh-footer-col a {
  color: var(--v254sh-muted) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  line-height: 1.2 !important;
}

.v254sh-footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--v254sh-border);
  padding-top: 20px;
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 260px);
  align-items: center;
  gap: 18px;
  color: var(--v254sh-muted);
  font-size: 14px;
}

.v254sh-footer-bottom span:first-child {
  min-width: 0;
}

.v254sh-footer-bottom span:last-child {
  width: 100%;
  max-width: 260px;
  text-align: right;
  white-space: normal;
  justify-self: end;
  transform: translateX(-22px);
}

/* Static page shortcode */
.v254sh-static-page {
  width: 100%;
  max-width: 100%;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,100,24,.08), transparent 28%),
    radial-gradient(circle at 92% 36%, rgba(85,115,63,.08), transparent 34%),
    var(--v254sh-bg);
  padding: 24px 0 18px;
}

.v254sh-static-hero,
.v254sh-static-card {
  width: min(980px, calc(100% - 36px));
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.v254sh-static-wide .v254sh-static-hero,
.v254sh-static-wide .v254sh-static-card {
  width: min(1240px, calc(100% - 36px));
  max-width: 1240px;
}

.v254sh-static-hero {
  border-radius: 34px;
  padding: clamp(34px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.97), rgba(255,250,243,.92)),
    radial-gradient(circle at 92% 0%, rgba(255,100,24,.12), transparent 34%);
  border: 1px solid var(--v254sh-border);
  box-shadow: 0 18px 55px rgba(31,30,28,.06);
  margin-bottom: 16px;
}

.v254sh-kicker {
  margin: 0 0 12px !important;
  color: var(--v254sh-green) !important;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .09em;
  font-size: 13px;
}

.v254sh-static-hero h1 {
  max-width: 860px;
  margin: 0 !important;
  color: var(--v254sh-text);
  font-size: clamp(44px, 5.4vw, 74px);
  line-height: .97;
  letter-spacing: -.07em;
  font-weight: 950;
}

.v254sh-static-hero p:not(.v254sh-kicker) {
  max-width: 760px;
  margin: 18px 0 0 !important;
  font-size: 18px;
  line-height: 1.55;
  color: var(--v254sh-muted);
}

.v254sh-static-card {
  border-radius: 32px;
  padding: clamp(28px, 4.4vw, 52px);
  background: rgba(255,255,255,.96);
  border: 1px solid var(--v254sh-border);
  box-shadow: 0 22px 70px rgba(31,30,28,.07);
  color: #30382d;
  line-height: 1.7;
  font-size: 17px;
}

.v254sh-static-card h2,
.v254sh-static-card h3 {
  color: var(--v254sh-text);
  letter-spacing: -.035em;
}

.v254sh-static-card a {
  color: var(--v254sh-orange);
  font-weight: 850;
}

/* Submit page polish */
body.v254-shell-submit-page .v254np-submit-page.v254-submit-page-empty {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

body.v254-shell-submit-page .v254np-submit-wrap.v254-form-moved-by-shell {
  display: block !important;
  position: relative !important;
  z-index: 5 !important;
  width: min(980px, calc(100% - 36px)) !important;
  max-width: 980px !important;
  margin: 24px auto 10px !important;
  padding: 42px 54px 34px !important;
  border-radius: 34px !important;
  background: rgba(255,255,255,.96) !important;
  border: 1px solid var(--v254sh-border) !important;
  box-shadow: 0 22px 70px rgba(31,30,28,.07) !important;
}

body.v254-shell-submit-page .v254np-submit-wrap.v254-form-moved-by-shell::before {
  content: "Submit your event or experience";
  display: block !important;
  max-width: 760px !important;
  margin: 0 0 16px !important;
  color: #111 !important;
  font-size: clamp(40px, 5vw, 64px) !important;
  font-weight: 950 !important;
  line-height: .98 !important;
  letter-spacing: -.06em !important;
}

body.v254-shell-submit-page .v254np-form {
  display: grid !important;
  gap: 22px !important;
}

body.v254-shell-submit-page .v254np-grid-2 {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 22px !important;
  width: 100% !important;
}

body.v254-shell-submit-page .v254np-field {
  min-width: 0 !important;
  width: 100% !important;
}

body.v254-shell-submit-page .v254np-field input,
body.v254-shell-submit-page .v254np-field select,
body.v254-shell-submit-page .v254np-field textarea {
  width: 100% !important;
  box-sizing: border-box !important;
  min-width: 0 !important;
  border-radius: 18px !important;
  background: #fffdf9 !important;
  border: 1px solid var(--v254sh-border) !important;
}

body.v254-shell-submit-page .v254np-field input,
body.v254-shell-submit-page .v254np-field select {
  min-height: 54px !important;
  padding: 14px 18px !important;
}

body.v254-shell-submit-page .v254np-field textarea {
  min-height: 130px !important;
}

/* Clean up old wrappers */
body.v254-shell-active .v254-submit-shell {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

@media (max-width: 1100px) {
  .v254sh-header-inner {
    grid-template-columns: auto auto;
  }

  .v254sh-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 0;
  }

  .v254sh-actions { justify-content: flex-end; }

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

@media (max-width: 700px) {
  .v254sh-header { padding-top: 12px; }

  .v254sh-header-inner,
  .v254sh-footer-inner {
    width: min(100% - 24px, 1240px);
  }

  .v254sh-header-inner {
    min-height: auto;
    padding: 14px;
    border-radius: 20px;
    grid-template-columns: 1fr auto;
  }

  .v254sh-brand { font-size: 21px !important; }

  .v254sh-nav,
  .v254sh-location,
  .v254sh-submit {
    display: none !important;
  }

  .v254sh-menu-btn,
  .v254sh-close-btn {
    display: inline-grid;
    place-items: center;
  }

  .v254sh-mobile-panel {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(255,250,243,.96);
    backdrop-filter: blur(18px);
    z-index: 1000;
    padding: 18px;
    transform: translateX(100%);
    transition: transform .25s ease;
  }

  body.v254sh-menu-open .v254sh-mobile-panel {
    transform: translateX(0);
  }

  .v254sh-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .v254sh-mobile-nav {
    display: grid;
    gap: 12px;
    margin-top: 34px;
  }

  .v254sh-mobile-nav a {
    background: white;
    border: 1px solid var(--v254sh-border);
    border-radius: 18px;
    padding: 16px;
    color: var(--v254sh-text) !important;
    text-decoration: none !important;
    font-weight: 950;
  }

  .v254sh-footer-inner {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .v254sh-footer-bottom {
    grid-template-columns: 1fr;
  }

  .v254sh-footer-bottom span:last-child {
    max-width: 100%;
    text-align: left;
    justify-self: start;
    transform: none;
  }

  .v254sh-static-page {
    padding-top: 16px;
  }

  .v254sh-static-hero,
  .v254sh-static-card,
  body.v254-shell-submit-page .v254np-submit-wrap.v254-form-moved-by-shell {
    width: min(100% - 24px, 980px) !important;
  }

  .v254sh-static-hero,
  body.v254-shell-submit-page .v254np-submit-wrap.v254-form-moved-by-shell {
    padding: 32px 22px !important;
    border-radius: 26px !important;
  }

  .v254sh-static-card {
    padding: 26px 22px !important;
    border-radius: 26px !important;
  }

  body.v254-shell-submit-page .v254np-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}


/* v0.5 stronger global theme cleanup */
body.v254-shell-active .wp-block-site-title,
body.v254-shell-active .wp-block-site-tagline,
body.v254-shell-active .wp-block-site-logo,
body.v254-shell-active .wp-block-query-title,
body.v254-shell-active .site-title,
body.v254-shell-active .site-description,
body.v254-shell-active .site-branding,
body.v254-shell-active .powered-by,
body.v254-shell-active .theme-credit,
body.v254-shell-active .wp-block-template-part {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

body.v254-shell-active .wp-site-blocks {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.v254-shell-active .wp-site-blocks > * {
  margin-block-start: 0 !important;
}

body.v254-shell-active main {
  margin-top: 0 !important;
}

/* v0.5 archive polish for events/experiences */
body.post-type-archive-vibes_event,
body.post-type-archive-vibes_experience {
  background: var(--v254sh-bg) !important;
}

body.post-type-archive-vibes_event .v254np-archive,
body.post-type-archive-vibes_experience .v254np-archive,
body.archive .v254np-archive {
  width: 100% !important;
  max-width: 100% !important;
  padding-top: 24px !important;
  padding-bottom: 20px !important;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,100,24,.08), transparent 28%),
    radial-gradient(circle at 92% 36%, rgba(85,115,63,.08), transparent 34%),
    var(--v254sh-bg) !important;
}

body.post-type-archive-vibes_event .v254np-archive-hero,
body.post-type-archive-vibes_experience .v254np-archive-hero,
body.archive .v254np-archive-hero,
body.post-type-archive-vibes_event .v254np-empty,
body.post-type-archive-vibes_experience .v254np-empty,
body.archive .v254np-empty {
  width: min(1240px, calc(100% - 36px)) !important;
  max-width: 1240px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.post-type-archive-vibes_event .v254np-empty,
body.post-type-archive-vibes_experience .v254np-empty,
body.archive .v254np-empty {
  background: rgba(255,255,255,.94) !important;
  border: 1px solid var(--v254sh-border) !important;
  border-radius: 30px !important;
  padding: 40px !important;
  box-shadow: 0 22px 70px rgba(31,30,28,.06) !important;
  margin-bottom: 12px !important;
}

body.post-type-archive-vibes_event .v254np-empty h2,
body.post-type-archive-vibes_experience .v254np-empty h2,
body.archive .v254np-empty h2 {
  font-size: clamp(34px, 4vw, 56px) !important;
  line-height: 1 !important;
  letter-spacing: -.06em !important;
  font-weight: 950 !important;
  margin: 0 0 16px !important;
}

body.post-type-archive-vibes_event .v254np-empty p,
body.post-type-archive-vibes_experience .v254np-empty p,
body.archive .v254np-empty p {
  font-size: 18px !important;
  color: var(--v254sh-muted) !important;
  margin: 0 0 22px !important;
}

@media (max-width: 700px) {
  body.post-type-archive-vibes_event .v254np-archive-hero,
  body.post-type-archive-vibes_experience .v254np-archive-hero,
  body.archive .v254np-archive-hero,
  body.post-type-archive-vibes_event .v254np-empty,
  body.post-type-archive-vibes_experience .v254np-empty,
  body.archive .v254np-empty {
    width: min(100% - 24px, 1240px) !important;
  }

  body.post-type-archive-vibes_event .v254np-empty,
  body.post-type-archive-vibes_experience .v254np-empty,
  body.archive .v254np-empty {
    padding: 28px 22px !important;
    border-radius: 24px !important;
  }
}


/* v0.6 automatic blog and host pages */
.v254sh-blog-page,
.v254sh-host-page {
  width: 100%;
  max-width: 100%;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,100,24,.08), transparent 28%),
    radial-gradient(circle at 92% 36%, rgba(85,115,63,.08), transparent 34%),
    var(--v254sh-bg);
  padding: 24px 0 18px;
}

.v254sh-blog-grid {
  width: min(1240px, calc(100% - 36px));
  max-width: 1240px;
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.v254sh-blog-card {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--v254sh-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(31,30,28,.06);
}

.v254sh-blog-image {
  display: block;
  aspect-ratio: 1.25 / 1;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,100,24,.20), transparent 32%),
    radial-gradient(circle at 85% 70%, rgba(85,115,63,.22), transparent 34%),
    #fff0e6;
  overflow: hidden;
  text-decoration: none !important;
  color: var(--v254sh-orange);
}

.v254sh-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v254sh-blog-image span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.v254sh-blog-image .v254sh-icon {
  width: 46px !important;
  height: 46px !important;
}

.v254sh-blog-card-body {
  padding: 24px;
}

.v254sh-blog-meta {
  color: var(--v254sh-green) !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  margin: 0 0 10px !important;
}

.v254sh-blog-card h2 {
  margin: 0 0 12px !important;
  font-size: clamp(22px, 2vw, 30px) !important;
  line-height: 1.05 !important;
  letter-spacing: -.05em !important;
  font-weight: 950 !important;
}

.v254sh-blog-card h2 a {
  color: var(--v254sh-text) !important;
  text-decoration: none !important;
}

.v254sh-blog-card p {
  color: var(--v254sh-muted) !important;
  line-height: 1.55 !important;
  margin: 0 0 16px !important;
}

.v254sh-read-more,
.v254sh-inline-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: var(--v254sh-orange) !important;
  font-weight: 950 !important;
  text-decoration: none !important;
}

.v254sh-host-hero {
  width: min(1240px, calc(100% - 36px));
  max-width: 1240px;
  margin: 0 auto 18px;
  padding: clamp(38px, 5vw, 68px);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,250,243,.92)),
    radial-gradient(circle at 92% 8%, rgba(255,100,24,.12), transparent 34%);
  border: 1px solid var(--v254sh-border);
  box-shadow: 0 22px 70px rgba(31,30,28,.07);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 38px;
  align-items: center;
}

.v254sh-host-hero h1 {
  margin: 0 !important;
  max-width: 830px;
  font-size: clamp(46px, 6vw, 88px);
  line-height: .94;
  letter-spacing: -.075em;
  font-weight: 950;
}

.v254sh-host-hero p {
  color: var(--v254sh-muted) !important;
  font-size: 19px !important;
  line-height: 1.55 !important;
  max-width: 760px;
}

.v254sh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.v254sh-primary-cta,
.v254sh-secondary-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 54px !important;
  padding: 14px 20px !important;
  border-radius: 17px !important;
  font-weight: 950 !important;
  text-decoration: none !important;
}

.v254sh-primary-cta {
  background: var(--v254sh-orange) !important;
  color: white !important;
  box-shadow: 0 14px 30px rgba(255,100,24,.22);
}

.v254sh-secondary-cta {
  background: white !important;
  color: var(--v254sh-text) !important;
  border: 1px solid var(--v254sh-border);
}

.v254sh-host-panel {
  background: var(--v254sh-green-dark);
  color: white;
  border-radius: 28px;
  padding: 34px;
  min-height: 280px;
  box-shadow: 0 22px 55px rgba(52,74,43,.22);
}

.v254sh-host-panel > span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.15);
  color: white;
  margin-bottom: 24px;
}

.v254sh-host-panel h2 {
  margin: 0 0 14px !important;
  color: white;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 950;
}

.v254sh-host-panel p {
  color: rgba(255,255,255,.78) !important;
}

.v254sh-feature-grid {
  width: min(1240px, calc(100% - 36px));
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.v254sh-feature-grid article {
  background: rgba(255,255,255,.94);
  border: 1px solid var(--v254sh-border);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 16px 45px rgba(31,30,28,.05);
}

.v254sh-feature-grid article > span {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--v254sh-orange-soft);
  color: var(--v254sh-orange);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.v254sh-feature-grid h3 {
  margin: 0 0 10px !important;
  font-size: 23px !important;
  line-height: 1.1 !important;
  letter-spacing: -.04em !important;
  font-weight: 950 !important;
}

.v254sh-feature-grid p {
  margin: 0 !important;
  color: var(--v254sh-muted) !important;
  line-height: 1.55 !important;
}

.v254sh-empty-state {
  width: min(980px, calc(100% - 36px));
  max-width: 980px;
  margin: 16px auto 0;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--v254sh-border);
  border-radius: 30px;
  padding: 38px;
  box-shadow: 0 18px 55px rgba(31,30,28,.06);
}

.v254sh-empty-state h2 {
  margin: 0 0 12px !important;
  font-size: clamp(30px, 4vw, 52px) !important;
  line-height: 1 !important;
  letter-spacing: -.06em !important;
  font-weight: 950 !important;
}

.v254sh-empty-state p {
  margin: 0 !important;
  color: var(--v254sh-muted) !important;
  font-size: 18px !important;
}

@media (max-width: 900px) {
  .v254sh-blog-grid,
  .v254sh-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .v254sh-host-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .v254sh-blog-page,
  .v254sh-host-page {
    padding-top: 16px;
  }

  .v254sh-blog-grid,
  .v254sh-feature-grid,
  .v254sh-host-hero,
  .v254sh-empty-state {
    width: min(100% - 24px, 1240px);
  }

  .v254sh-blog-grid,
  .v254sh-feature-grid {
    grid-template-columns: 1fr;
  }

  .v254sh-host-hero {
    padding: 32px 22px;
    border-radius: 26px;
  }

  .v254sh-host-panel {
    min-height: auto;
    padding: 26px;
    border-radius: 24px;
  }
}


/* v0.7: wider desktop layout + reduced top spacing */
body.v254-shell-active {
  background: var(--v254sh-bg) !important;
}

/* Make the global shell wider */
.v254sh-header-inner,
.v254sh-footer-inner {
  width: min(1540px, calc(100% - 28px)) !important;
  max-width: 1540px !important;
}

/* Reduce the visual gap below the header */
.v254sh-header {
  padding-top: 18px !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

body.v254-shell-active .wp-site-blocks,
body.v254-shell-active .wp-site-blocks > main,
body.v254-shell-active main,
body.v254-shell-active article,
body.v254-shell-active .entry-content,
body.v254-shell-active .wp-block-post-content,
body.v254-shell-active .is-layout-constrained,
body.v254-shell-active .is-layout-flow {
  margin-top: 0 !important;
  padding-top: 0 !important;
  --wp--style--block-gap: 0 !important;
}

/* Pull auto-generated Vibes pages closer to the shell header */
.v254sh-blog-page,
.v254sh-host-page,
.v254sh-static-page {
  padding-top: 0 !important;
  margin-top: -118px !important;
}

/* Wider page sections */
.v254sh-static-hero,
.v254sh-static-card,
.v254sh-blog-hero,
.v254sh-host-hero,
.v254sh-blog-grid,
.v254sh-feature-grid,
.v254sh-empty-state {
  width: min(1500px, calc(100% - 48px)) !important;
  max-width: 1500px !important;
}

/* Give the first hero/card a stronger desktop presence */
.v254sh-static-hero,
.v254sh-host-hero {
  border-radius: 36px !important;
}

/* Blog page should feel less boxed and more editorial */
.v254sh-blog-hero {
  padding: clamp(44px, 5vw, 78px) !important;
}

.v254sh-blog-hero h1 {
  max-width: 1120px !important;
}

.v254sh-blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

/* For Hosts hero wider and more balanced */
.v254sh-host-hero {
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 470px) !important;
  gap: 48px !important;
  padding: clamp(44px, 5vw, 78px) !important;
}

.v254sh-host-hero h1 {
  max-width: 980px !important;
}

/* Archive pages also get the wider width */
body.post-type-archive-vibes_event .v254np-archive-hero,
body.post-type-archive-vibes_experience .v254np-archive-hero,
body.archive .v254np-archive-hero,
body.post-type-archive-vibes_event .v254np-empty,
body.post-type-archive-vibes_experience .v254np-empty,
body.archive .v254np-empty {
  width: min(1500px, calc(100% - 48px)) !important;
  max-width: 1500px !important;
}

/* Archive top spacing */
body.post-type-archive-vibes_event .v254np-archive,
body.post-type-archive-vibes_experience .v254np-archive,
body.archive .v254np-archive {
  padding-top: 0 !important;
  margin-top: -118px !important;
}

/* Submit page wider but not too stretched */
body.v254-shell-submit-page .v254np-submit-wrap.v254-form-moved-by-shell {
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: 1180px !important;
  margin-top: -96px !important;
}

/* Footer should not feel like it floats far below content */
.v254sh-footer {
  padding-top: 10px !important;
  margin-top: 0 !important;
}

/* On normal empty pages, avoid huge blank body between shell and footer */
body.v254-shell-active.page .entry-content:empty,
body.v254-shell-active.page .wp-block-post-content:empty {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Tablet */
@media (max-width: 1100px) {
  .v254sh-blog-page,
  .v254sh-host-page,
  .v254sh-static-page,
  body.post-type-archive-vibes_event .v254np-archive,
  body.post-type-archive-vibes_experience .v254np-archive,
  body.archive .v254np-archive {
    margin-top: -72px !important;
  }

  .v254sh-host-hero {
    grid-template-columns: 1fr !important;
  }

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

/* Mobile: do not use negative pulls */
@media (max-width: 700px) {
  .v254sh-header-inner,
  .v254sh-footer-inner,
  .v254sh-static-hero,
  .v254sh-static-card,
  .v254sh-blog-hero,
  .v254sh-host-hero,
  .v254sh-blog-grid,
  .v254sh-feature-grid,
  .v254sh-empty-state,
  body.post-type-archive-vibes_event .v254np-archive-hero,
  body.post-type-archive-vibes_experience .v254np-archive-hero,
  body.archive .v254np-archive-hero,
  body.post-type-archive-vibes_event .v254np-empty,
  body.post-type-archive-vibes_experience .v254np-empty,
  body.archive .v254np-empty {
    width: min(100% - 24px, 1500px) !important;
  }

  .v254sh-blog-page,
  .v254sh-host-page,
  .v254sh-static-page,
  body.post-type-archive-vibes_event .v254np-archive,
  body.post-type-archive-vibes_experience .v254np-archive,
  body.archive .v254np-archive {
    margin-top: 0 !important;
    padding-top: 16px !important;
  }

  body.v254-shell-submit-page .v254np-submit-wrap.v254-form-moved-by-shell {
    width: min(100% - 24px, 1180px) !important;
    margin-top: 16px !important;
  }

  .v254sh-blog-grid,
  .v254sh-feature-grid {
    grid-template-columns: 1fr !important;
  }
}


/* v0.8 magazine-style blog */
.v254sh-blog-page-v08 {
  padding-top: 0 !important;
  margin-top: -126px !important;
  background:
    radial-gradient(circle at 10% 8%, rgba(255,100,24,.08), transparent 28%),
    radial-gradient(circle at 88% 26%, rgba(85,115,63,.08), transparent 34%),
    var(--v254sh-bg) !important;
}

.v254sh-mag-hero,
.v254sh-mag-head,
.v254sh-mag-filters,
.v254sh-mag-grid,
.v254sh-mag-cta {
  width: min(1500px, calc(100% - 48px)) !important;
  max-width: 1500px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.v254sh-mag-hero {
  position: relative;
  min-height: 430px;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 10%, rgba(255,100,24,.18), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(85,115,63,.22), transparent 38%),
    #26331f;
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 26px 80px rgba(31,30,28,.12);
}

.v254sh-mag-hero-image {
  position: absolute;
  inset: 0;
  display: block;
  color: rgba(255,255,255,.78);
}

.v254sh-mag-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.v254sh-mag-hero-image span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.v254sh-mag-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.52)),
    linear-gradient(90deg, rgba(0,0,0,.62), transparent 58%);
  pointer-events: none;
}

.v254sh-mag-hero-overlay {
  position: relative;
  z-index: 2;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding: clamp(28px, 4vw, 48px);
  color: #fff;
}

.v254sh-mag-hero-text {
  max-width: 720px;
}

.v254sh-mag-badge,
.v254sh-mag-card-image em {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-style: normal;
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.v254sh-mag-hero h1 {
  margin: 12px 0 10px !important;
  font-size: clamp(34px, 4.2vw, 68px) !important;
  line-height: .96 !important;
  letter-spacing: -.07em !important;
  font-weight: 950 !important;
  max-width: 760px;
}

.v254sh-mag-hero h1 a {
  color: #fff !important;
  text-decoration: none !important;
}

.v254sh-mag-hero p {
  color: rgba(255,255,255,.82) !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  max-width: 620px;
}

.v254sh-mag-hero-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  color: rgba(255,255,255,.88);
  font-weight: 750;
  font-size: 13px;
  white-space: nowrap;
}

.v254sh-mag-head {
  margin-top: 28px !important;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.v254sh-mag-head h2 {
  margin: 0 0 6px !important;
  color: var(--v254sh-text);
  font-size: clamp(36px, 4vw, 58px) !important;
  line-height: 1 !important;
  letter-spacing: -.065em !important;
  font-weight: 950 !important;
}

.v254sh-mag-head p {
  margin: 0 !important;
  color: var(--v254sh-muted);
  font-size: 16px;
  line-height: 1.5;
  max-width: 720px;
}

.v254sh-mag-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--v254sh-border);
  padding: 12px 15px;
  border-radius: 999px;
  color: var(--v254sh-muted);
  white-space: nowrap;
}

.v254sh-mag-sort strong {
  color: var(--v254sh-text);
}

.v254sh-mag-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 18px 0 12px;
}

.v254sh-mag-filters a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--v254sh-border);
  background: rgba(255,255,255,.84);
  color: #283126 !important;
  font-weight: 850;
  text-decoration: none !important;
  white-space: nowrap;
  font-size: 13px;
}

.v254sh-mag-filters a.is-active,
.v254sh-mag-filters a:hover {
  background: var(--v254sh-green-dark);
  border-color: var(--v254sh-green-dark);
  color: #fff !important;
}

.v254sh-mag-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin-top: 10px !important;
}

.v254sh-mag-card {
  background: transparent;
}

.v254sh-mag-card-image {
  position: relative;
  display: block;
  aspect-ratio: 1.35 / .86;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,100,24,.18), transparent 34%),
    radial-gradient(circle at 85% 72%, rgba(85,115,63,.24), transparent 38%),
    #efe9dd;
  text-decoration: none !important;
  color: var(--v254sh-orange);
}

.v254sh-mag-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.v254sh-mag-card:hover .v254sh-mag-card-image img {
  transform: scale(1.045);
}

.v254sh-mag-card-image span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.v254sh-mag-card-image em {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(0,0,0,.36);
  border: 1px solid rgba(255,255,255,.18);
}

.v254sh-mag-card-body {
  padding: 14px 2px 0;
}

.v254sh-mag-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--v254sh-muted) !important;
  margin: 0 0 8px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.v254sh-mag-card h3 {
  margin: 0 0 8px !important;
  font-size: clamp(21px, 1.7vw, 28px) !important;
  line-height: 1.06 !important;
  letter-spacing: -.045em !important;
  font-weight: 950 !important;
}

.v254sh-mag-card h3 a {
  color: var(--v254sh-text) !important;
  text-decoration: none !important;
}

.v254sh-mag-card p:not(.v254sh-mag-card-meta) {
  margin: 0 0 14px !important;
  color: var(--v254sh-muted) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.v254sh-mag-author {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1f271e;
  font-size: 13px;
  font-weight: 850;
}

.v254sh-mag-author img {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  object-fit: cover;
}

.v254sh-mag-cta {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.45fr);
  gap: 18px;
  margin-top: 44px !important;
  margin-bottom: 10px !important;
}

.v254sh-mag-cta article {
  min-height: 230px;
  border-radius: 14px;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.v254sh-mag-cta-small {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.68)),
    radial-gradient(circle at 20% 0%, rgba(255,100,24,.40), transparent 32%),
    #172216;
}

.v254sh-mag-cta-small > span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.16);
  color: #fff;
  margin-bottom: auto;
}

.v254sh-mag-cta-small h3,
.v254sh-mag-cta-wide h3 {
  margin: 0 0 8px !important;
  font-size: clamp(24px, 2.6vw, 42px) !important;
  line-height: 1.05 !important;
  letter-spacing: -.055em !important;
  font-weight: 950 !important;
}

.v254sh-mag-cta-small p {
  color: rgba(255,255,255,.78) !important;
}

.v254sh-mag-cta-small a {
  margin-top: 12px;
  width: fit-content;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: #111 !important;
  text-decoration: none !important;
  font-weight: 950;
}

.v254sh-mag-cta-wide {
  align-items: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.50)),
    radial-gradient(circle at 70% 20%, rgba(255,100,24,.26), transparent 34%),
    radial-gradient(circle at 25% 70%, rgba(85,115,63,.45), transparent 38%),
    #2b3d25;
}

.v254sh-mag-cta-wide h3 {
  max-width: 680px;
  color: #fff;
}

.v254sh-mag-cta-wide p {
  max-width: 620px;
  color: rgba(255,255,255,.78) !important;
  margin: 0 !important;
}

@media (max-width: 1100px) {
  .v254sh-blog-page-v08 {
    margin-top: -72px !important;
  }

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

  .v254sh-mag-cta {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 700px) {
  .v254sh-blog-page-v08 {
    margin-top: 0 !important;
    padding-top: 16px !important;
  }

  .v254sh-mag-hero,
  .v254sh-mag-head,
  .v254sh-mag-filters,
  .v254sh-mag-grid,
  .v254sh-mag-cta {
    width: min(100% - 24px, 1500px) !important;
  }

  .v254sh-mag-hero,
  .v254sh-mag-hero-overlay {
    min-height: 390px;
  }

  .v254sh-mag-hero-overlay {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .v254sh-mag-hero-meta {
    justify-content: flex-start;
  }

  .v254sh-mag-head {
    display: block;
  }

  .v254sh-mag-sort {
    width: fit-content;
    margin-top: 14px;
  }

  .v254sh-mag-grid {
    grid-template-columns: 1fr !important;
  }
}


/* v0.9: make blog feel full-width and fix dark-on-dark text */

/* Main shell and content should use the full browser width */
body.v254-shell-active,
body.v254-shell-active .wp-site-blocks,
body.v254-shell-active main,
body.v254-shell-active article,
body.v254-shell-active .entry-content,
body.v254-shell-active .wp-block-post-content {
  max-width: none !important;
}

/* Wider global shell */
.v254sh-header-inner,
.v254sh-footer-inner {
  width: min(1720px, calc(100% - 20px)) !important;
  max-width: 1720px !important;
}

/* Blog canvas: closer to full width */
.v254sh-blog-page-v08 {
  margin-top: -132px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.v254sh-mag-hero,
.v254sh-mag-head,
.v254sh-mag-filters,
.v254sh-mag-grid,
.v254sh-mag-cta {
  width: min(1720px, calc(100% - 28px)) !important;
  max-width: 1720px !important;
}

/* Make hero feel closer to reference: wider, taller, more cinematic */
.v254sh-mag-hero {
  min-height: 520px !important;
  border-radius: 14px !important;
}

.v254sh-mag-hero-overlay {
  min-height: 520px !important;
  padding: clamp(34px, 4.5vw, 62px) !important;
}

.v254sh-mag-hero-text {
  max-width: 860px !important;
}

.v254sh-mag-hero h1 {
  max-width: 900px !important;
  font-size: clamp(42px, 5.1vw, 86px) !important;
}

.v254sh-mag-hero p {
  max-width: 760px !important;
  font-size: 18px !important;
}

/* Blog cards can breathe more on wide desktop */
.v254sh-mag-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
}

.v254sh-mag-card-image {
  aspect-ratio: 1.45 / .9 !important;
  border-radius: 14px !important;
}

.v254sh-mag-card h3 {
  font-size: clamp(24px, 1.8vw, 32px) !important;
}

/* FIX: dark card headings must be white */
.v254sh-mag-cta-small,
.v254sh-mag-cta-wide {
  color: #fff !important;
}

.v254sh-mag-cta-small h1,
.v254sh-mag-cta-small h2,
.v254sh-mag-cta-small h3,
.v254sh-mag-cta-small h4,
.v254sh-mag-cta-wide h1,
.v254sh-mag-cta-wide h2,
.v254sh-mag-cta-wide h3,
.v254sh-mag-cta-wide h4 {
  color: #fff !important;
}

.v254sh-mag-cta-small p,
.v254sh-mag-cta-wide p {
  color: rgba(255,255,255,.82) !important;
}

/* Single blog post pages: stop Twenty Twenty-Four from boxing them */
body.v254-shell-single-post {
  background:
    radial-gradient(circle at 10% 8%, rgba(255,100,24,.08), transparent 28%),
    radial-gradient(circle at 88% 26%, rgba(85,115,63,.08), transparent 34%),
    var(--v254sh-bg) !important;
}

body.v254-shell-single-post .wp-site-blocks > main,
body.v254-shell-single-post main,
body.v254-shell-single-post article,
body.v254-shell-single-post .entry-content,
body.v254-shell-single-post .wp-block-post-content {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Hide default post title blocks if theme outputs them */
body.v254-shell-single-post .wp-block-post-title,
body.v254-shell-single-post h1.wp-block-post-title,
body.v254-shell-single-post .entry-title,
body.v254-shell-single-post .wp-block-post-date,
body.v254-shell-single-post .wp-block-post-author,
body.v254-shell-single-post .wp-block-post-terms {
  display: none !important;
}

/* Pull single post closer to header */
body.v254-shell-single-post .wp-block-post-content,
body.v254-shell-single-post .entry-content {
  margin-top: -112px !important;
}

/* Featured image: make it a wide editorial banner */
body.v254-shell-single-post .wp-block-post-featured-image,
body.v254-shell-single-post figure.wp-block-post-featured-image,
body.v254-shell-single-post .post-thumbnail {
  width: min(1320px, calc(100% - 36px)) !important;
  max-width: 1320px !important;
  margin: 0 auto 28px !important;
  border-radius: 30px !important;
  overflow: hidden !important;
  box-shadow: 0 24px 75px rgba(31,30,28,.12) !important;
}

body.v254-shell-single-post .wp-block-post-featured-image img,
body.v254-shell-single-post figure.wp-block-post-featured-image img,
body.v254-shell-single-post .post-thumbnail img {
  width: 100% !important;
  max-width: none !important;
  height: min(560px, 58vw) !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 30px !important;
}

/* Post text content: readable magazine column */
body.v254-shell-single-post .wp-block-post-content > *:not(.wp-block-post-featured-image):not(figure),
body.v254-shell-single-post .entry-content > *:not(.wp-block-post-featured-image):not(figure) {
  width: min(860px, calc(100% - 36px)) !important;
  max-width: 860px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.v254-shell-single-post .wp-block-post-content h1,
body.v254-shell-single-post .wp-block-post-content h2,
body.v254-shell-single-post .wp-block-post-content h3,
body.v254-shell-single-post .entry-content h1,
body.v254-shell-single-post .entry-content h2,
body.v254-shell-single-post .entry-content h3 {
  color: var(--v254sh-text) !important;
  font-weight: 950 !important;
  letter-spacing: -.055em !important;
  line-height: 1.02 !important;
}

body.v254-shell-single-post .wp-block-post-content p,
body.v254-shell-single-post .entry-content p,
body.v254-shell-single-post .wp-block-post-content li,
body.v254-shell-single-post .entry-content li {
  color: #465042 !important;
  font-size: 19px !important;
  line-height: 1.75 !important;
}

body.v254-shell-single-post .wp-block-post-content a,
body.v254-shell-single-post .entry-content a {
  color: var(--v254sh-orange) !important;
  font-weight: 850 !important;
}

/* Add a clean white reading card effect behind post body content */
body.v254-shell-single-post .wp-block-post-content {
  position: relative !important;
  padding-bottom: 40px !important;
}

/* Blog post page footer should not float too far down */
body.v254-shell-single-post .v254sh-footer {
  padding-top: 0 !important;
}

/* Better text contrast anywhere cards are dark */
.v254sh-mag-card-image em,
.v254sh-mag-badge {
  color: #fff !important;
}

/* If a dark section accidentally gets black inherited headings */
[class*="v254sh-mag-cta"] h1,
[class*="v254sh-mag-cta"] h2,
[class*="v254sh-mag-cta"] h3,
[class*="v254sh-mag-cta"] h4,
[class*="v254sh-mag-cta"] strong {
  color: #fff !important;
}

/* Mobile */
@media (max-width: 1100px) {
  .v254sh-blog-page-v08 {
    margin-top: -72px !important;
  }

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

  body.v254-shell-single-post .wp-block-post-content,
  body.v254-shell-single-post .entry-content {
    margin-top: -64px !important;
  }
}

@media (max-width: 700px) {
  .v254sh-header-inner,
  .v254sh-footer-inner,
  .v254sh-mag-hero,
  .v254sh-mag-head,
  .v254sh-mag-filters,
  .v254sh-mag-grid,
  .v254sh-mag-cta {
    width: min(100% - 24px, 1720px) !important;
  }

  .v254sh-blog-page-v08 {
    margin-top: 0 !important;
    padding-top: 16px !important;
  }

  .v254sh-mag-hero,
  .v254sh-mag-hero-overlay {
    min-height: 430px !important;
  }

  .v254sh-mag-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  body.v254-shell-single-post .wp-block-post-content,
  body.v254-shell-single-post .entry-content {
    margin-top: 16px !important;
  }

  body.v254-shell-single-post .wp-block-post-featured-image,
  body.v254-shell-single-post figure.wp-block-post-featured-image,
  body.v254-shell-single-post .post-thumbnail {
    width: min(100% - 24px, 1320px) !important;
    border-radius: 22px !important;
  }

  body.v254-shell-single-post .wp-block-post-featured-image img,
  body.v254-shell-single-post figure.wp-block-post-featured-image img,
  body.v254-shell-single-post .post-thumbnail img {
    height: 310px !important;
    border-radius: 22px !important;
  }

  body.v254-shell-single-post .wp-block-post-content > *:not(.wp-block-post-featured-image):not(figure),
  body.v254-shell-single-post .entry-content > *:not(.wp-block-post-featured-image):not(figure) {
    width: min(100% - 24px, 860px) !important;
  }
}


/* v1.0: wider everywhere + stronger image handling */

/* Stop theme/default blocks from narrowing Vibes pages */
body.v254-shell-active .wp-site-blocks,
body.v254-shell-active .wp-site-blocks > main,
body.v254-shell-active .wp-block-post-content,
body.v254-shell-active .entry-content,
body.v254-shell-active .is-layout-constrained,
body.v254-shell-active .has-global-padding {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Wider shell across all pages */
.v254sh-header-inner,
.v254sh-footer-inner,
.v254sh-mag-hero,
.v254sh-mag-head,
.v254sh-mag-filters,
.v254sh-mag-grid,
.v254sh-mag-cta,
.v254sh-static-hero,
.v254sh-static-card,
.v254sh-host-hero,
.v254sh-feature-grid,
.v254sh-empty-state,
body.post-type-archive-vibes_event .v254np-archive-hero,
body.post-type-archive-vibes_experience .v254np-archive-hero,
body.archive .v254np-archive-hero,
body.post-type-archive-vibes_event .v254np-empty,
body.post-type-archive-vibes_experience .v254np-empty,
body.archive .v254np-empty {
  width: min(1760px, calc(100% - 18px)) !important;
  max-width: 1760px !important;
}

/* Blog layout: less margin, more canvas */
.v254sh-blog-page-v08 {
  margin-top: -138px !important;
}

.v254sh-mag-hero {
  min-height: 560px !important;
  border-radius: 16px !important;
}

.v254sh-mag-hero-overlay {
  min-height: 560px !important;
}

.v254sh-mag-hero::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.62)),
    linear-gradient(90deg, rgba(0,0,0,.70), rgba(0,0,0,.20) 48%, rgba(0,0,0,.36)) !important;
}

.v254sh-mag-hero h1,
.v254sh-mag-hero h1 a,
.v254sh-mag-hero p,
.v254sh-mag-hero-meta,
.v254sh-mag-badge {
  color: #fff !important;
  text-shadow: 0 2px 18px rgba(0,0,0,.18);
}

/* Cards: wider and more useful on mobile */
.v254sh-mag-card-image {
  background:
    linear-gradient(135deg, #26331f, #ff6418) !important;
}

.v254sh-mag-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.20));
  pointer-events: none;
}

.v254sh-mag-card-image em {
  z-index: 2;
  color: #fff !important;
}

/* CTA now supports real featured-image backgrounds from posts */
.v254sh-mag-cta-small,
.v254sh-mag-cta-wide {
  position: relative;
  isolation: isolate;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.72)),
    var(--v254sh-cta-img),
    radial-gradient(circle at 20% 0%, rgba(255,100,24,.40), transparent 32%) !important;
  background-size: cover !important;
  background-position: center !important;
}

.v254sh-mag-cta-wide {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.62)),
    var(--v254sh-cta-img),
    radial-gradient(circle at 70% 20%, rgba(255,100,24,.26), transparent 34%) !important;
}

.v254sh-mag-cta-small::before,
.v254sh-mag-cta-wide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 16, 9, .28);
  z-index: -1;
}

.v254sh-mag-cta-small h3,
.v254sh-mag-cta-wide h3,
.v254sh-mag-cta-small p,
.v254sh-mag-cta-wide p {
  color: #fff !important;
  text-shadow: 0 2px 18px rgba(0,0,0,.22);
}

/* Single blog posts wider */
body.v254-shell-single-post .wp-block-post-content,
body.v254-shell-single-post .entry-content {
  margin-top: -122px !important;
}

body.v254-shell-single-post .wp-block-post-featured-image,
body.v254-shell-single-post figure.wp-block-post-featured-image,
body.v254-shell-single-post .post-thumbnail {
  width: min(1500px, calc(100% - 18px)) !important;
  max-width: 1500px !important;
  border-radius: 26px !important;
}

body.v254-shell-single-post .wp-block-post-featured-image img,
body.v254-shell-single-post figure.wp-block-post-featured-image img,
body.v254-shell-single-post .post-thumbnail img {
  height: min(620px, 58vw) !important;
  border-radius: 26px !important;
}

/* Keep article text readable, but slightly wider */
body.v254-shell-single-post .wp-block-post-content > *:not(.wp-block-post-featured-image):not(figure),
body.v254-shell-single-post .entry-content > *:not(.wp-block-post-featured-image):not(figure) {
  width: min(940px, calc(100% - 24px)) !important;
  max-width: 940px !important;
}

/* Mobile: make every page much wider */
@media (max-width: 700px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  .v254sh-header {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .v254sh-header-inner,
  .v254sh-footer-inner,
  .v254sh-mag-hero,
  .v254sh-mag-head,
  .v254sh-mag-filters,
  .v254sh-mag-grid,
  .v254sh-mag-cta,
  .v254sh-static-hero,
  .v254sh-static-card,
  .v254sh-host-hero,
  .v254sh-feature-grid,
  .v254sh-empty-state,
  body.post-type-archive-vibes_event .v254np-archive-hero,
  body.post-type-archive-vibes_experience .v254np-archive-hero,
  body.archive .v254np-archive-hero,
  body.post-type-archive-vibes_event .v254np-empty,
  body.post-type-archive-vibes_experience .v254np-empty,
  body.archive .v254np-empty,
  body.v254-shell-single-post .wp-block-post-featured-image,
  body.v254-shell-single-post figure.wp-block-post-featured-image,
  body.v254-shell-single-post .post-thumbnail {
    width: calc(100% - 10px) !important;
    max-width: calc(100% - 10px) !important;
  }

  .v254sh-blog-page-v08,
  .v254sh-host-page,
  .v254sh-static-page,
  body.post-type-archive-vibes_event .v254np-archive,
  body.post-type-archive-vibes_experience .v254np-archive,
  body.archive .v254np-archive {
    margin-top: 0 !important;
    padding-top: 8px !important;
  }

  .v254sh-mag-hero,
  .v254sh-mag-hero-overlay {
    min-height: 500px !important;
  }

  .v254sh-mag-hero-overlay {
    padding: 22px !important;
    align-items: end !important;
  }

  .v254sh-mag-hero h1 {
    font-size: clamp(42px, 14vw, 60px) !important;
    line-height: .92 !important;
  }

  .v254sh-mag-hero p {
    font-size: 17px !important;
    line-height: 1.45 !important;
  }

  .v254sh-mag-grid {
    gap: 26px !important;
  }

  .v254sh-mag-card-image {
    aspect-ratio: 1.02 / 1 !important;
    border-radius: 14px !important;
  }

  .v254sh-mag-card-body {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .v254sh-mag-card h3 {
    font-size: clamp(25px, 7.4vw, 34px) !important;
  }

  .v254sh-mag-card p:not(.v254sh-mag-card-meta) {
    font-size: 15.5px !important;
  }

  .v254sh-mag-cta {
    gap: 10px !important;
  }

  .v254sh-mag-cta article {
    min-height: 260px !important;
    padding: 24px !important;
    border-radius: 16px !important;
  }

  body.v254-shell-single-post .wp-block-post-content,
  body.v254-shell-single-post .entry-content {
    margin-top: 8px !important;
  }

  body.v254-shell-single-post .wp-block-post-featured-image img,
  body.v254-shell-single-post figure.wp-block-post-featured-image img,
  body.v254-shell-single-post .post-thumbnail img {
    height: 360px !important;
    border-radius: 20px !important;
  }

  body.v254-shell-single-post .wp-block-post-content > *:not(.wp-block-post-featured-image):not(figure),
  body.v254-shell-single-post .entry-content > *:not(.wp-block-post-featured-image):not(figure) {
    width: calc(100% - 18px) !important;
    max-width: calc(100% - 18px) !important;
  }

  body.v254-shell-single-post .wp-block-post-content p,
  body.v254-shell-single-post .entry-content p,
  body.v254-shell-single-post .wp-block-post-content li,
  body.v254-shell-single-post .entry-content li {
    font-size: 17px !important;
    line-height: 1.68 !important;
  }
}

/* Very small phones */
@media (max-width: 420px) {
  .v254sh-header-inner,
  .v254sh-footer-inner,
  .v254sh-mag-hero,
  .v254sh-mag-head,
  .v254sh-mag-filters,
  .v254sh-mag-grid,
  .v254sh-mag-cta,
  .v254sh-static-hero,
  .v254sh-static-card,
  .v254sh-host-hero,
  .v254sh-feature-grid,
  .v254sh-empty-state {
    width: calc(100% - 6px) !important;
    max-width: calc(100% - 6px) !important;
  }

  .v254sh-mag-hero-overlay {
    padding: 20px !important;
  }

  .v254sh-mag-hero h1 {
    font-size: clamp(38px, 13vw, 54px) !important;
  }
}


/* v1.1: kill stubborn Twenty Twenty-Four blank spacing under Vibes254 navbar */

/* These are the exact wrappers seen in DevTools causing blank space on some pages */
body.v254-shell-active .wp-block-group.has-global-padding.is-layout-constrained:empty,
body.v254-shell-active .wp-block-group.has-global-padding.is-layout-flow:empty,
body.v254-shell-active .entry-content.wp-block-post-content.has-global-padding.is-layout-constrained:empty,
body.v254-shell-active .entry-content.wp-block-post-content.has-global-padding.is-layout-flow:empty {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
}

/* Remove global WP spacing variables on Vibes pages */
body.v254-shell-active {
  --wp--style--root--padding-top: 0px !important;
  --wp--style--root--padding-right: 0px !important;
  --wp--style--root--padding-bottom: 0px !important;
  --wp--style--root--padding-left: 0px !important;
  --wp--style--block-gap: 0px !important;
}

/* Collapse Twenty Twenty-Four flow spacing after our injected shell header */
body.v254-shell-active .wp-site-blocks,
body.v254-shell-active .wp-site-blocks > main,
body.v254-shell-active main.wp-block-group,
body.v254-shell-active main#wp--skip-link--target,
body.v254-shell-active .wp-block-post-content,
body.v254-shell-active .entry-content,
body.v254-shell-active .is-layout-flow,
body.v254-shell-active .is-layout-constrained {
  margin-block-start: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Any first empty/branding group after header should not reserve vertical height */
body.v254-shell-active .wp-site-blocks > main > .wp-block-group:first-child,
body.v254-shell-active main#wp--skip-link--target > .wp-block-group:first-child,
body.v254-shell-active main.wp-block-group > .wp-block-group:first-child {
  margin-top: 0 !important;
}

/* If the first group is basically blank, flatten it */
body.v254-shell-active .wp-site-blocks > main > .wp-block-group:first-child:empty,
body.v254-shell-active main#wp--skip-link--target > .wp-block-group:first-child:empty,
body.v254-shell-active main.wp-block-group > .wp-block-group:first-child:empty {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Main Vibes auto pages: remove artificial top space */
body.v254-shell-blog-page .v254sh-blog-page-v08,
body.page-id-0 .v254sh-blog-page-v08,
body.v254-shell-active .v254sh-blog-page,
body.v254-shell-active .v254sh-host-page,
body.v254-shell-active .v254sh-static-page {
  padding-top: 0 !important;
}

/* Desktop: pull blog hero closer, but not under the header */
@media (min-width: 701px) {
  body.v254-shell-blog-page .v254sh-blog-page-v08,
  body.v254-shell-active .v254sh-blog-page-v08 {
    margin-top: -205px !important;
  }

  body.v254-shell-active .v254sh-host-page,
  body.v254-shell-active .v254sh-static-page,
  body.post-type-archive-vibes_event .v254np-archive,
  body.post-type-archive-vibes_experience .v254np-archive,
  body.archive .v254np-archive {
    margin-top: -190px !important;
  }

  body.v254-shell-submit-page .v254np-submit-wrap.v254-form-moved-by-shell {
    margin-top: -150px !important;
  }
}

/* Make page sections use nearly all available screen width */
.v254sh-header-inner,
.v254sh-footer-inner,
.v254sh-mag-hero,
.v254sh-mag-head,
.v254sh-mag-filters,
.v254sh-mag-grid,
.v254sh-mag-cta,
.v254sh-static-hero,
.v254sh-static-card,
.v254sh-host-hero,
.v254sh-feature-grid,
.v254sh-empty-state,
body.post-type-archive-vibes_event .v254np-archive-hero,
body.post-type-archive-vibes_experience .v254np-archive-hero,
body.archive .v254np-archive-hero,
body.post-type-archive-vibes_event .v254np-empty,
body.post-type-archive-vibes_experience .v254np-empty,
body.archive .v254np-empty {
  width: min(1800px, calc(100% - 12px)) !important;
  max-width: 1800px !important;
}

/* Mobile: wider than before, but no horizontal shake */
@media (max-width: 700px) {
  body.v254-shell-active .wp-site-blocks,
  body.v254-shell-active main,
  body.v254-shell-active .wp-block-post-content,
  body.v254-shell-active .entry-content {
    overflow-x: hidden !important;
  }

  .v254sh-header-inner,
  .v254sh-footer-inner,
  .v254sh-mag-hero,
  .v254sh-mag-head,
  .v254sh-mag-filters,
  .v254sh-mag-grid,
  .v254sh-mag-cta,
  .v254sh-static-hero,
  .v254sh-static-card,
  .v254sh-host-hero,
  .v254sh-feature-grid,
  .v254sh-empty-state,
  body.post-type-archive-vibes_event .v254np-archive-hero,
  body.post-type-archive-vibes_experience .v254np-archive-hero,
  body.archive .v254np-archive-hero,
  body.post-type-archive-vibes_event .v254np-empty,
  body.post-type-archive-vibes_experience .v254np-empty,
  body.archive .v254np-empty {
    width: calc(100% - 4px) !important;
    max-width: calc(100% - 4px) !important;
  }

  body.v254-shell-blog-page .v254sh-blog-page-v08,
  body.v254-shell-active .v254sh-blog-page-v08,
  body.v254-shell-active .v254sh-host-page,
  body.v254-shell-active .v254sh-static-page,
  body.post-type-archive-vibes_event .v254np-archive,
  body.post-type-archive-vibes_experience .v254np-archive,
  body.archive .v254np-archive {
    margin-top: 0 !important;
    padding-top: 4px !important;
  }

  .v254sh-mag-hero {
    border-radius: 12px !important;
  }

  .v254sh-mag-hero-overlay {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}


/* v1.2: Dribbble-inspired single article + pagination */

/* Blog pagination */
.v254sh-mag-pagination {
  width: min(1760px, calc(100% - 18px));
  max-width: 1760px;
  margin: 36px auto 8px;
}

.v254sh-mag-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.v254sh-mag-pagination li {
  list-style: none;
  margin: 0;
}

.v254sh-mag-pagination a,
.v254sh-mag-pagination span {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--v254sh-border);
  color: var(--v254sh-text) !important;
  text-decoration: none !important;
  font-weight: 900;
}

.v254sh-mag-pagination span.current,
.v254sh-mag-pagination a:hover {
  background: var(--v254sh-orange);
  border-color: var(--v254sh-orange);
  color: #fff !important;
}

/* Kill default single post blocks that looked dull */
body.v254-shell-single-post .wp-block-post-featured-image,
body.v254-shell-single-post figure.wp-block-post-featured-image,
body.v254-shell-single-post .post-thumbnail,
body.v254-shell-single-post .post-navigation-link-previous,
body.v254-shell-single-post .post-navigation-link-next,
body.v254-shell-single-post nav.wp-block-post-navigation-link,
body.v254-shell-single-post .wp-block-comments,
body.v254-shell-single-post .comments-area,
body.v254-shell-single-post #comments {
  display: none !important;
}

body.v254-shell-single-post .wp-block-post-content,
body.v254-shell-single-post .entry-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Full article canvas */
.v254sh-single-mag {
  width: 100%;
  margin-top: -138px;
  background:
    radial-gradient(circle at 10% 8%, rgba(255,100,24,.08), transparent 28%),
    radial-gradient(circle at 88% 26%, rgba(85,115,63,.08), transparent 34%),
    var(--v254sh-bg);
  padding: 0 0 22px;
}

.v254sh-single-article {
  width: min(1760px, calc(100% - 18px));
  max-width: 1760px;
  margin: 0 auto;
}

/* Editorial hero */
.v254sh-single-hero {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
  align-items: stretch;
  gap: 18px;
  min-height: 560px;
  margin: 0 0 24px;
}

.v254sh-single-copy,
.v254sh-single-image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--v254sh-border);
  box-shadow: 0 24px 80px rgba(31,30,28,.09);
}

.v254sh-single-copy {
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,250,243,.94)),
    radial-gradient(circle at 20% 10%, rgba(255,100,24,.12), transparent 28%);
  padding: clamp(32px, 4vw, 62px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.v254sh-single-cat {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--v254sh-green-dark);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 18px;
}

.v254sh-single-copy h1 {
  margin: 0 0 18px !important;
  color: var(--v254sh-text) !important;
  font-size: clamp(48px, 5.7vw, 96px) !important;
  line-height: .92 !important;
  letter-spacing: -.082em !important;
  font-weight: 950 !important;
}

.v254sh-single-excerpt {
  margin: 0 0 26px !important;
  max-width: 700px;
  color: var(--v254sh-muted) !important;
  font-size: 19px !important;
  line-height: 1.55 !important;
}

.v254sh-single-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.v254sh-single-meta img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
}

.v254sh-single-meta strong {
  display: block;
  color: var(--v254sh-text);
  font-weight: 950;
  line-height: 1.1;
}

.v254sh-single-meta span {
  display: block;
  color: var(--v254sh-muted);
  font-weight: 750;
  font-size: 13px;
  margin-top: 4px;
}

.v254sh-single-image {
  position: relative;
  margin: 0 !important;
  background:
    linear-gradient(135deg, #25351f, #ff6418);
  min-height: 560px;
}

.v254sh-single-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

.v254sh-single-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.20)),
    radial-gradient(circle at 22% 14%, rgba(255,100,24,.16), transparent 30%);
  pointer-events: none;
}

.v254sh-single-image span {
  width: 100%;
  min-height: 560px;
  display: grid;
  place-items: center;
  color: #fff;
}

/* Article body card */
.v254sh-single-body {
  width: min(980px, calc(100% - 20px));
  max-width: 980px;
  margin: 0 auto 30px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--v254sh-border);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 58px);
  box-shadow: 0 22px 75px rgba(31,30,28,.06);
}

.v254sh-single-body > * {
  max-width: 100% !important;
}

.v254sh-single-body p,
.v254sh-single-body li {
  color: #465042 !important;
  font-size: 19px !important;
  line-height: 1.78 !important;
}

.v254sh-single-body p:first-child {
  font-size: 21px !important;
  color: #2f3a2b !important;
}

.v254sh-single-body h2,
.v254sh-single-body h3,
.v254sh-single-body h4 {
  color: var(--v254sh-text) !important;
  font-weight: 950 !important;
  letter-spacing: -.055em !important;
  line-height: 1.03 !important;
  margin-top: 1.45em !important;
}

.v254sh-single-body h2 {
  font-size: clamp(34px, 3.2vw, 54px) !important;
}

.v254sh-single-body h3 {
  font-size: clamp(28px, 2.5vw, 42px) !important;
}

.v254sh-single-body img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Previous / next cards */
.v254sh-single-nav {
  width: min(980px, calc(100% - 20px));
  max-width: 980px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.v254sh-single-nav-card {
  min-height: 150px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,250,243,.90));
  border: 1px solid var(--v254sh-border);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none !important;
  box-shadow: 0 16px 50px rgba(31,30,28,.05);
}

.v254sh-single-nav-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--v254sh-green);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.v254sh-single-nav-card strong {
  color: var(--v254sh-text);
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 950;
}

.v254sh-single-nav-card.is-next {
  text-align: right;
  align-items: flex-end;
}

/* Comments */
.v254sh-single-comments {
  width: min(980px, calc(100% - 20px));
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--v254sh-border);
  border-radius: 26px;
  padding: clamp(24px, 3.2vw, 44px);
  box-shadow: 0 18px 65px rgba(31,30,28,.05);
}

.v254sh-comments-head h2,
.v254sh-reply-title {
  color: var(--v254sh-text) !important;
  margin: 0 0 18px !important;
  font-size: clamp(34px, 3.5vw, 58px) !important;
  line-height: 1 !important;
  letter-spacing: -.065em !important;
  font-weight: 950 !important;
}

.v254sh-comment-list {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.v254sh-comment {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: #fffaf3;
  border: 1px solid var(--v254sh-border);
}

.v254sh-comment-avatar img {
  border-radius: 999px;
}

.v254sh-comment strong {
  display: block;
  font-weight: 950;
  color: var(--v254sh-text);
}

.v254sh-comment span {
  color: var(--v254sh-muted);
  font-size: 12px;
  font-weight: 800;
}

.v254sh-comment p {
  margin: 8px 0 0 !important;
  color: #465042 !important;
  line-height: 1.55 !important;
}

.v254sh-single-comments label {
  display: block;
  font-weight: 950;
  margin-bottom: 8px;
  color: var(--v254sh-text);
}

.v254sh-single-comments textarea,
.v254sh-single-comments input[type="text"],
.v254sh-single-comments input[type="email"],
.v254sh-single-comments input[type="url"] {
  width: 100%;
  border: 1px solid var(--v254sh-border);
  border-radius: 18px;
  background: #fffaf7;
  padding: 16px;
  font-size: 16px;
  outline: none;
}

.v254sh-single-comments textarea:focus,
.v254sh-single-comments input:focus {
  border-color: var(--v254sh-orange);
  box-shadow: 0 0 0 4px rgba(255,100,24,.10);
}

.v254sh-comment-submit,
.v254sh-single-comments input[type="submit"] {
  border: 0 !important;
  border-radius: 999px !important;
  min-height: 52px !important;
  padding: 14px 22px !important;
  background: var(--v254sh-orange) !important;
  color: #fff !important;
  font-weight: 950 !important;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(255,100,24,.20);
}

/* Hide leftover plain WP previous/next/comments if they come outside content */
body.v254-shell-single-post .wp-block-post-navigation-link,
body.v254-shell-single-post .comment-reply-title:not(.v254sh-reply-title),
body.v254-shell-single-post .navigation.post-navigation {
  display: none !important;
}

@media (max-width: 1100px) {
  .v254sh-single-mag {
    margin-top: -82px;
  }

  .v254sh-single-hero {
    grid-template-columns: 1fr;
  }

  .v254sh-single-image,
  .v254sh-single-image img,
  .v254sh-single-image span {
    min-height: 440px;
  }
}

@media (max-width: 700px) {
  .v254sh-single-mag {
    margin-top: 0;
    padding-top: 6px;
  }

  .v254sh-single-article,
  .v254sh-single-body,
  .v254sh-single-nav,
  .v254sh-single-comments,
  .v254sh-mag-pagination {
    width: calc(100% - 6px) !important;
    max-width: calc(100% - 6px) !important;
  }

  .v254sh-single-hero {
    gap: 8px;
    min-height: auto;
  }

  .v254sh-single-copy {
    border-radius: 16px;
    padding: 28px 18px;
  }

  .v254sh-single-copy h1 {
    font-size: clamp(42px, 13vw, 64px) !important;
  }

  .v254sh-single-image {
    border-radius: 16px;
  }

  .v254sh-single-image,
  .v254sh-single-image img,
  .v254sh-single-image span {
    min-height: 360px;
  }

  .v254sh-single-body {
    border-radius: 18px;
    padding: 24px 18px;
  }

  .v254sh-single-body p,
  .v254sh-single-body li {
    font-size: 17px !important;
    line-height: 1.7 !important;
  }

  .v254sh-single-nav {
    grid-template-columns: 1fr;
  }

  .v254sh-single-nav-card.is-next {
    text-align: left;
    align-items: flex-start;
  }

  .v254sh-single-comments {
    border-radius: 18px;
    padding: 22px 18px;
  }
}


/* v1.3: premium single blog redesign — cinematic hero, no split layout */

/* Reset the v1.2 split hero */
body.v254-shell-single-post .v254sh-single-mag {
  margin-top: -205px !important;
  padding-top: 0 !important;
  background:
    radial-gradient(circle at 8% 12%, rgba(255,100,24,.08), transparent 30%),
    radial-gradient(circle at 92% 24%, rgba(85,115,63,.08), transparent 34%),
    var(--v254sh-bg) !important;
}

body.v254-shell-single-post .v254sh-single-article {
  width: min(1800px, calc(100% - 12px)) !important;
  max-width: 1800px !important;
}

/* Make the single hero work like the Dribbble inspiration: one big image with text over it */
body.v254-shell-single-post .v254sh-single-hero {
  position: relative !important;
  display: block !important;
  min-height: clamp(540px, 72vh, 760px) !important;
  margin: 0 auto 34px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,.72) !important;
  background: #172216 !important;
  box-shadow: 0 30px 95px rgba(31,30,28,.14) !important;
}

/* Image fills the whole hero */
body.v254-shell-single-post .v254sh-single-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background:
    radial-gradient(circle at 22% 14%, rgba(255,100,24,.16), transparent 30%),
    linear-gradient(135deg, #25351f, #ff6418) !important;
}

body.v254-shell-single-post .v254sh-single-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 0 !important;
  filter: saturate(1.06) contrast(1.04) !important;
}

body.v254-shell-single-post .v254sh-single-image::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.18) 38%, rgba(0,0,0,.78) 100%),
    linear-gradient(90deg, rgba(0,0,0,.64), rgba(0,0,0,.18) 52%, rgba(0,0,0,.46)) !important;
}

/* Text now overlays the image at the bottom */
body.v254-shell-single-post .v254sh-single-copy {
  position: absolute !important;
  z-index: 3 !important;
  left: clamp(24px, 4vw, 64px) !important;
  right: clamp(24px, 4vw, 64px) !important;
  bottom: clamp(24px, 4vw, 58px) !important;
  display: block !important;
  max-width: 1050px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #fff !important;
}

/* Category pill */
body.v254-shell-single-post .v254sh-single-cat {
  background: rgba(255,255,255,.18) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  backdrop-filter: blur(14px) !important;
  margin-bottom: 16px !important;
}

/* Huge readable title */
body.v254-shell-single-post .v254sh-single-copy h1 {
  color: #fff !important;
  max-width: 1040px !important;
  margin: 0 0 16px !important;
  font-size: clamp(48px, 6.4vw, 110px) !important;
  line-height: .88 !important;
  letter-spacing: -.085em !important;
  text-shadow: 0 4px 32px rgba(0,0,0,.30) !important;
}

/* Excerpt white, not dull grey */
body.v254-shell-single-post .v254sh-single-excerpt {
  max-width: 780px !important;
  color: rgba(255,255,255,.86) !important;
  font-size: clamp(17px, 1.35vw, 22px) !important;
  line-height: 1.5 !important;
  text-shadow: 0 2px 20px rgba(0,0,0,.28) !important;
  margin-bottom: 22px !important;
}

/* Author meta as glass chip */
body.v254-shell-single-post .v254sh-single-meta {
  width: fit-content !important;
  padding: 10px 14px 10px 10px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.16) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  backdrop-filter: blur(16px) !important;
}

body.v254-shell-single-post .v254sh-single-meta strong,
body.v254-shell-single-post .v254sh-single-meta span {
  color: #fff !important;
}

/* Article body should feel like a polished reading surface */
body.v254-shell-single-post .v254sh-single-body {
  width: min(1040px, calc(100% - 18px)) !important;
  max-width: 1040px !important;
  margin: 0 auto 22px !important;
  background: rgba(255,255,255,.96) !important;
  border-radius: 30px !important;
  padding: clamp(32px, 5vw, 72px) !important;
  box-shadow: 0 24px 90px rgba(31,30,28,.07) !important;
}

body.v254-shell-single-post .v254sh-single-body p,
body.v254-shell-single-post .v254sh-single-body li {
  font-size: 20px !important;
  line-height: 1.78 !important;
  color: #465042 !important;
}

body.v254-shell-single-post .v254sh-single-body p:first-of-type {
  font-size: 23px !important;
  line-height: 1.62 !important;
  color: #2d3729 !important;
}

/* Make headings editorial but not oversized */
body.v254-shell-single-post .v254sh-single-body h2 {
  font-size: clamp(38px, 3.6vw, 62px) !important;
  margin: 1.25em 0 .45em !important;
}

body.v254-shell-single-post .v254sh-single-body h3 {
  font-size: clamp(30px, 2.5vw, 44px) !important;
}

/* Styled images inside article */
body.v254-shell-single-post .v254sh-single-body figure,
body.v254-shell-single-post .v254sh-single-body .wp-block-image {
  margin-left: -24px !important;
  margin-right: -24px !important;
}

body.v254-shell-single-post .v254sh-single-body img {
  border-radius: 24px !important;
  box-shadow: 0 16px 60px rgba(31,30,28,.08) !important;
}

/* Prev/next should look like footer article cards */
body.v254-shell-single-post .v254sh-single-nav,
body.v254-shell-single-post .v254sh-single-comments {
  width: min(1040px, calc(100% - 18px)) !important;
  max-width: 1040px !important;
}

body.v254-shell-single-post .v254sh-single-nav {
  margin-bottom: 18px !important;
}

body.v254-shell-single-post .v254sh-single-nav-card {
  min-height: 170px !important;
  border-radius: 26px !important;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,100,24,.14), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,250,243,.92)) !important;
}

body.v254-shell-single-post .v254sh-single-nav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 70px rgba(31,30,28,.10);
}

/* Comments should not feel like raw WordPress */
body.v254-shell-single-post .v254sh-single-comments {
  border-radius: 30px !important;
  margin-bottom: 22px !important;
}

/* Reduce huge blank area before footer */
body.v254-shell-single-post .v254sh-footer {
  margin-top: 0 !important;
}

/* On desktop, hide any stray horizontal rule or WP nav remnants */
body.v254-shell-single-post .v254sh-single-mag hr,
body.v254-shell-single-post .wp-block-separator,
body.v254-shell-single-post .wp-block-post-comments-form,
body.v254-shell-single-post .comment-respond:not(.v254sh-single-comments .comment-respond) {
  display: none !important;
}

/* Mobile single post: full screen hero, wide content */
@media (max-width: 700px) {
  body.v254-shell-single-post .v254sh-single-mag {
    margin-top: 0 !important;
    padding-top: 6px !important;
  }

  body.v254-shell-single-post .v254sh-single-article {
    width: calc(100% - 4px) !important;
    max-width: calc(100% - 4px) !important;
  }

  body.v254-shell-single-post .v254sh-single-hero {
    min-height: 650px !important;
    border-radius: 14px !important;
    margin-bottom: 10px !important;
  }

  body.v254-shell-single-post .v254sh-single-copy {
    left: 18px !important;
    right: 18px !important;
    bottom: 22px !important;
  }

  body.v254-shell-single-post .v254sh-single-copy h1 {
    font-size: clamp(44px, 14vw, 66px) !important;
    line-height: .88 !important;
    letter-spacing: -.075em !important;
  }

  body.v254-shell-single-post .v254sh-single-excerpt {
    font-size: 17px !important;
    line-height: 1.45 !important;
  }

  body.v254-shell-single-post .v254sh-single-meta {
    max-width: 100% !important;
  }

  body.v254-shell-single-post .v254sh-single-body,
  body.v254-shell-single-post .v254sh-single-nav,
  body.v254-shell-single-post .v254sh-single-comments {
    width: calc(100% - 4px) !important;
    max-width: calc(100% - 4px) !important;
  }

  body.v254-shell-single-post .v254sh-single-body {
    border-radius: 18px !important;
    padding: 24px 18px !important;
  }

  body.v254-shell-single-post .v254sh-single-body p,
  body.v254-shell-single-post .v254sh-single-body li {
    font-size: 17px !important;
    line-height: 1.7 !important;
  }

  body.v254-shell-single-post .v254sh-single-body p:first-of-type {
    font-size: 19px !important;
  }

  body.v254-shell-single-post .v254sh-single-body figure,
  body.v254-shell-single-post .v254sh-single-body .wp-block-image {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* If admin bar makes the hero feel hidden, keep enough top breathing room */
body.admin-bar.v254-shell-single-post .v254sh-single-mag {
  scroll-margin-top: 150px !important;
}


/* v1.4: clean Realnest-inspired single blog article */

/* Hide old single-post wrappers from previous versions if browser still has markup/CSS conflicts */
body.v254-shell-single-post .v254sh-single-mag,
body.v254-shell-single-post .v254sh-single-article,
body.v254-shell-single-post .v254sh-single-hero,
body.v254-shell-single-post .v254sh-single-copy,
body.v254-shell-single-post .v254sh-single-image,
body.v254-shell-single-post .v254sh-single-body {
  display: none !important;
}

/* Single article canvas */
body.v254-shell-single-post .v254sh-single-clean {
  width: 100% !important;
  margin-top: -154px !important;
  padding: 0 0 18px !important;
  background:
    radial-gradient(circle at 8% 10%, rgba(255,100,24,.06), transparent 32%),
    radial-gradient(circle at 92% 20%, rgba(85,115,63,.07), transparent 34%),
    var(--v254sh-bg) !important;
}

body.v254-shell-single-post .v254sh-clean-article {
  width: min(1660px, calc(100% - 28px)) !important;
  max-width: 1660px !important;
  margin: 0 auto !important;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(31,30,28,.06);
  border-radius: 0 0 22px 22px;
  padding: 0 0 28px;
}

/* Title area like the reference */
body.v254-shell-single-post .v254sh-clean-head {
  width: min(980px, calc(100% - 28px)) !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: clamp(34px, 5vw, 72px) 0 clamp(22px, 3vw, 34px) !important;
  text-align: center !important;
}

body.v254-shell-single-post .v254sh-clean-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(85,115,63,.10);
  color: var(--v254sh-green) !important;
  border: 1px solid rgba(85,115,63,.18);
  text-decoration: none !important;
  font-weight: 950;
  font-size: 12px;
  margin-bottom: 18px;
}

body.v254-shell-single-post .v254sh-clean-head h1 {
  margin: 0 auto 14px !important;
  max-width: 950px;
  color: var(--v254sh-text) !important;
  font-size: clamp(42px, 4.6vw, 76px) !important;
  line-height: .98 !important;
  letter-spacing: -.07em !important;
  font-weight: 950 !important;
}

body.v254-shell-single-post .v254sh-clean-excerpt {
  max-width: 720px;
  margin: 0 auto 18px !important;
  color: #596456 !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
}

body.v254-shell-single-post .v254sh-clean-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  color: #61705d;
  font-weight: 800;
  font-size: 13px;
}

body.v254-shell-single-post .v254sh-clean-meta img {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
}

/* Large clean image below title */
body.v254-shell-single-post .v254sh-clean-featured {
  width: min(1500px, calc(100% - 44px)) !important;
  max-width: 1500px !important;
  margin: 0 auto clamp(34px, 5vw, 64px) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,100,24,.18), transparent 34%),
    linear-gradient(135deg, #26331f, #ff6418);
  box-shadow: 0 24px 80px rgba(31,30,28,.12) !important;
}

body.v254-shell-single-post .v254sh-clean-featured img {
  width: 100% !important;
  height: clamp(360px, 54vw, 640px) !important;
  object-fit: cover !important;
  display: block !important;
}

body.v254-shell-single-post .v254sh-clean-featured span {
  min-height: 460px;
  display: grid;
  place-items: center;
  color: #fff;
}

/* Article body: clean, no heavy card */
body.v254-shell-single-post .v254sh-clean-body {
  width: min(1180px, calc(100% - 44px)) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
}

body.v254-shell-single-post .v254sh-clean-body > * {
  max-width: 100% !important;
}

body.v254-shell-single-post .v254sh-clean-body p,
body.v254-shell-single-post .v254sh-clean-body li {
  color: #384235 !important;
  font-size: 17px !important;
  line-height: 1.78 !important;
  margin-bottom: 1.25em !important;
}

body.v254-shell-single-post .v254sh-clean-body p:first-of-type {
  font-size: 18.5px !important;
  line-height: 1.68 !important;
  color: #2c3429 !important;
}

body.v254-shell-single-post .v254sh-clean-body h2,
body.v254-shell-single-post .v254sh-clean-body h3,
body.v254-shell-single-post .v254sh-clean-body h4 {
  color: var(--v254sh-text) !important;
  letter-spacing: -.045em !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  margin: 2em 0 .65em !important;
}

body.v254-shell-single-post .v254sh-clean-body h2 {
  font-size: clamp(26px, 2.4vw, 42px) !important;
}

body.v254-shell-single-post .v254sh-clean-body h3 {
  font-size: clamp(22px, 2vw, 34px) !important;
}

/* Images inside articles should feel like the reference */
body.v254-shell-single-post .v254sh-clean-body figure,
body.v254-shell-single-post .v254sh-clean-body .wp-block-image {
  margin: clamp(32px, 4vw, 54px) 0 !important;
}

body.v254-shell-single-post .v254sh-clean-body img {
  width: 100% !important;
  height: auto !important;
  border-radius: 18px !important;
  box-shadow: 0 16px 60px rgba(31,30,28,.08) !important;
}

/* Latest News & Updates */
body.v254-shell-single-post .v254sh-clean-latest {
  width: min(1340px, calc(100% - 44px)) !important;
  max-width: 1340px !important;
  margin: clamp(52px, 7vw, 90px) auto 34px !important;
  text-align: center;
}

body.v254-shell-single-post .v254sh-clean-latest-head span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(85,115,63,.10);
  color: var(--v254sh-green);
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 12px;
}

body.v254-shell-single-post .v254sh-clean-latest-head h2 {
  margin: 0 0 28px !important;
  color: var(--v254sh-text) !important;
  font-size: clamp(34px, 3.6vw, 58px) !important;
  line-height: 1 !important;
  letter-spacing: -.065em !important;
  font-weight: 950 !important;
}

body.v254-shell-single-post .v254sh-clean-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}

body.v254-shell-single-post .v254sh-clean-latest-card {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--v254sh-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(31,30,28,.06);
}

body.v254-shell-single-post .v254sh-clean-latest-image {
  display: block;
  aspect-ratio: 1.4 / .82;
  background: linear-gradient(135deg, #26331f, #ff6418);
  overflow: hidden;
  color: #fff;
}

body.v254-shell-single-post .v254sh-clean-latest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

body.v254-shell-single-post .v254sh-clean-latest-card:hover img {
  transform: scale(1.045);
}

body.v254-shell-single-post .v254sh-clean-latest-image span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

body.v254-shell-single-post .v254sh-clean-latest-body {
  padding: 15px;
}

body.v254-shell-single-post .v254sh-clean-latest-body p {
  margin: 0 0 8px !important;
  color: #61705d !important;
  font-size: 12px !important;
  font-weight: 850 !important;
}

body.v254-shell-single-post .v254sh-clean-latest-body p em {
  font-style: normal;
  opacity: .7;
}

body.v254-shell-single-post .v254sh-clean-latest-body h3 {
  margin: 0 0 14px !important;
  font-size: 19px !important;
  line-height: 1.15 !important;
  letter-spacing: -.035em !important;
  font-weight: 950 !important;
}

body.v254-shell-single-post .v254sh-clean-latest-body h3 a {
  color: var(--v254sh-text) !important;
  text-decoration: none !important;
}

body.v254-shell-single-post .v254sh-clean-readmore {
  display: inline-flex;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid #161616;
  color: #111 !important;
  text-decoration: none !important;
  font-weight: 900;
  font-size: 12px;
}

/* Navigation and comments */
body.v254-shell-single-post .v254sh-clean-nav,
body.v254-shell-single-post .v254sh-clean-comments {
  width: min(1180px, calc(100% - 44px)) !important;
  max-width: 1180px !important;
}

/* Hide theme leftovers */
body.v254-shell-single-post .wp-block-post-featured-image,
body.v254-shell-single-post figure.wp-block-post-featured-image,
body.v254-shell-single-post .post-thumbnail,
body.v254-shell-single-post .wp-block-post-title,
body.v254-shell-single-post h1.wp-block-post-title,
body.v254-shell-single-post .entry-title,
body.v254-shell-single-post .wp-block-comments,
body.v254-shell-single-post .comments-area,
body.v254-shell-single-post #comments,
body.v254-shell-single-post .navigation.post-navigation {
  display: none !important;
}

@media (max-width: 900px) {
  body.v254-shell-single-post .v254sh-clean-latest-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body.v254-shell-single-post .v254sh-single-clean {
    margin-top: 0 !important;
    padding-top: 6px !important;
  }

  body.v254-shell-single-post .v254sh-clean-article,
  body.v254-shell-single-post .v254sh-clean-head,
  body.v254-shell-single-post .v254sh-clean-featured,
  body.v254-shell-single-post .v254sh-clean-body,
  body.v254-shell-single-post .v254sh-clean-latest,
  body.v254-shell-single-post .v254sh-clean-nav,
  body.v254-shell-single-post .v254sh-clean-comments {
    width: calc(100% - 8px) !important;
    max-width: calc(100% - 8px) !important;
  }

  body.v254-shell-single-post .v254sh-clean-article {
    border-radius: 0 0 16px 16px;
  }

  body.v254-shell-single-post .v254sh-clean-head {
    padding: 30px 8px 22px !important;
  }

  body.v254-shell-single-post .v254sh-clean-head h1 {
    font-size: clamp(36px, 10.5vw, 52px) !important;
    line-height: 1 !important;
  }

  body.v254-shell-single-post .v254sh-clean-excerpt {
    font-size: 15px !important;
  }

  body.v254-shell-single-post .v254sh-clean-featured {
    border-radius: 14px !important;
    margin-bottom: 28px !important;
  }

  body.v254-shell-single-post .v254sh-clean-featured img {
    height: 330px !important;
  }

  body.v254-shell-single-post .v254sh-clean-body {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  body.v254-shell-single-post .v254sh-clean-body p,
  body.v254-shell-single-post .v254sh-clean-body li {
    font-size: 16.5px !important;
    line-height: 1.72 !important;
  }

  body.v254-shell-single-post .v254sh-clean-body p:first-of-type {
    font-size: 17.5px !important;
  }

  body.v254-shell-single-post .v254sh-clean-latest {
    margin-top: 42px !important;
  }
}


/* v1.5: single blog width + bottom spacing fix */

/* Pull the clean single post closer to the navbar and remove long empty vertical space */
body.v254-shell-single-post .v254sh-single-clean {
  margin-top: -190px !important;
  padding-bottom: 0 !important;
}

/* Make the whole article canvas much wider */
body.v254-shell-single-post .v254sh-clean-article {
  width: min(1880px, calc(100% - 10px)) !important;
  max-width: 1880px !important;
  padding-bottom: 0 !important;
}

/* Wider title area, still centered */
body.v254-shell-single-post .v254sh-clean-head {
  width: min(1250px, calc(100% - 24px)) !important;
  max-width: 1250px !important;
  padding-top: clamp(28px, 4vw, 58px) !important;
  padding-bottom: clamp(18px, 2.4vw, 28px) !important;
}

body.v254-shell-single-post .v254sh-clean-head h1 {
  max-width: 1180px !important;
  font-size: clamp(46px, 5.2vw, 88px) !important;
}

/* Wider hero image */
body.v254-shell-single-post .v254sh-clean-featured {
  width: min(1780px, calc(100% - 18px)) !important;
  max-width: 1780px !important;
  margin-bottom: clamp(28px, 4vw, 48px) !important;
}

body.v254-shell-single-post .v254sh-clean-featured img {
  height: clamp(400px, 48vw, 680px) !important;
}

/* Wider article body, closer to the reference */
body.v254-shell-single-post .v254sh-clean-body {
  width: min(1380px, calc(100% - 30px)) !important;
  max-width: 1380px !important;
  margin-bottom: 0 !important;
}

/* Reduce unnecessary margins after the final article element */
body.v254-shell-single-post .v254sh-clean-body > *:last-child {
  margin-bottom: 0 !important;
}

/* If WordPress leaves empty groups/separators after content, hide them */
body.v254-shell-single-post .v254sh-clean-body .wp-block-spacer,
body.v254-shell-single-post .v254sh-clean-body .wp-block-separator,
body.v254-shell-single-post .v254sh-clean-body hr {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Tighten latest section */
body.v254-shell-single-post .v254sh-clean-latest {
  width: min(1560px, calc(100% - 30px)) !important;
  max-width: 1560px !important;
  margin-top: clamp(34px, 4.5vw, 58px) !important;
  margin-bottom: 22px !important;
}

body.v254-shell-single-post .v254sh-clean-latest-head h2 {
  margin-bottom: 20px !important;
}

/* Tighten next/previous cards */
body.v254-shell-single-post .v254sh-clean-nav {
  width: min(1380px, calc(100% - 30px)) !important;
  max-width: 1380px !important;
  margin-top: 0 !important;
  margin-bottom: 18px !important;
}

body.v254-shell-single-post .v254sh-single-nav-card {
  min-height: 126px !important;
}

/* Tighten comments and keep them wide */
body.v254-shell-single-post .v254sh-clean-comments {
  width: min(1380px, calc(100% - 30px)) !important;
  max-width: 1380px !important;
  margin-top: 0 !important;
  margin-bottom: 18px !important;
}

/* Remove extra space created by default comment form paragraphs */
body.v254-shell-single-post .v254sh-clean-comments p:last-child,
body.v254-shell-single-post .v254sh-clean-comments .comment-form p:last-child {
  margin-bottom: 0 !important;
}

/* Stop theme content wrappers from adding empty height before footer */
body.v254-shell-single-post .entry-content,
body.v254-shell-single-post .wp-block-post-content,
body.v254-shell-single-post main,
body.v254-shell-single-post article {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Remove any empty theme wrapper sitting between article and footer */
body.v254-shell-single-post .wp-site-blocks > main > .wp-block-group:empty,
body.v254-shell-single-post main#wp--skip-link--target > .wp-block-group:empty,
body.v254-shell-single-post .entry-content > .wp-block-group:empty,
body.v254-shell-single-post .wp-block-post-content > .wp-block-group:empty {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Footer should start almost immediately after post extras */
body.v254-shell-single-post .v254sh-footer {
  margin-top: 8px !important;
}

/* Admin bar view often exaggerates spacing because viewport is shorter */
body.admin-bar.v254-shell-single-post .v254sh-footer {
  margin-top: 0 !important;
}

/* Mobile: make it almost edge-to-edge */
@media (max-width: 700px) {
  body.v254-shell-single-post .v254sh-single-clean {
    margin-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.v254-shell-single-post .v254sh-clean-article,
  body.v254-shell-single-post .v254sh-clean-head,
  body.v254-shell-single-post .v254sh-clean-featured,
  body.v254-shell-single-post .v254sh-clean-body,
  body.v254-shell-single-post .v254sh-clean-latest,
  body.v254-shell-single-post .v254sh-clean-nav,
  body.v254-shell-single-post .v254sh-clean-comments {
    width: calc(100% - 4px) !important;
    max-width: calc(100% - 4px) !important;
  }

  body.v254-shell-single-post .v254sh-clean-head {
    padding-top: 22px !important;
    padding-bottom: 16px !important;
  }

  body.v254-shell-single-post .v254sh-clean-featured {
    margin-bottom: 22px !important;
  }

  body.v254-shell-single-post .v254sh-clean-latest {
    margin-top: 30px !important;
    margin-bottom: 16px !important;
  }

  body.v254-shell-single-post .v254sh-clean-nav,
  body.v254-shell-single-post .v254sh-clean-comments {
    margin-bottom: 14px !important;
  }
}


/* v1.6: true full-width single blog layout */

/* Remove theme width limits on single posts */
body.v254-shell-single-post,
body.v254-shell-single-post .wp-site-blocks,
body.v254-shell-single-post main,
body.v254-shell-single-post .wp-block-post-content,
body.v254-shell-single-post .entry-content {
  max-width: none !important;
  width: 100% !important;
  overflow-x: hidden !important;
}

/* Full bleed article canvas */
body.v254-shell-single-post .v254sh-single-clean {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-top: -198px !important;
  padding: 0 0 0 !important;
}

/* No boxed article wrapper */
body.v254-shell-single-post .v254sh-clean-article {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}

/* Title section full width with centered readable text */
body.v254-shell-single-post .v254sh-clean-head {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(32px, 5vw, 68px) clamp(18px, 5vw, 80px) clamp(20px, 3vw, 34px) !important;
  text-align: center !important;
}

body.v254-shell-single-post .v254sh-clean-head h1 {
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(48px, 5.8vw, 96px) !important;
}

body.v254-shell-single-post .v254sh-clean-excerpt {
  max-width: 860px !important;
}

/* Featured image should be almost full width */
body.v254-shell-single-post .v254sh-clean-featured {
  width: calc(100vw - 24px) !important;
  max-width: calc(100vw - 24px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: 20px !important;
}

body.v254-shell-single-post .v254sh-clean-featured img {
  height: clamp(440px, 52vw, 760px) !important;
}

/* Article content area full width, text remains readable */
body.v254-shell-single-post .v254sh-clean-body {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 clamp(18px, 8vw, 150px) !important;
}

body.v254-shell-single-post .v254sh-clean-body > p,
body.v254-shell-single-post .v254sh-clean-body > ul,
body.v254-shell-single-post .v254sh-clean-body > ol,
body.v254-shell-single-post .v254sh-clean-body > h1,
body.v254-shell-single-post .v254sh-clean-body > h2,
body.v254-shell-single-post .v254sh-clean-body > h3,
body.v254-shell-single-post .v254sh-clean-body > h4,
body.v254-shell-single-post .v254sh-clean-body > h5,
body.v254-shell-single-post .v254sh-clean-body > h6,
body.v254-shell-single-post .v254sh-clean-body > blockquote {
  width: min(1180px, 100%) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Images inside post can go wider than text */
body.v254-shell-single-post .v254sh-clean-body > figure,
body.v254-shell-single-post .v254sh-clean-body > .wp-block-image {
  width: min(1480px, 100%) !important;
  max-width: 1480px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.v254-shell-single-post .v254sh-clean-body img {
  width: 100% !important;
  max-width: 100% !important;
}

/* Latest posts full width */
body.v254-shell-single-post .v254sh-clean-latest {
  width: 100% !important;
  max-width: none !important;
  margin: clamp(38px, 5vw, 62px) 0 24px !important;
  padding: 0 clamp(18px, 5vw, 80px) !important;
}

body.v254-shell-single-post .v254sh-clean-latest-grid {
  width: 100% !important;
  max-width: 1620px !important;
  margin: 0 auto !important;
}

/* Previous/next and comments full width but controlled inside */
body.v254-shell-single-post .v254sh-clean-nav,
body.v254-shell-single-post .v254sh-clean-comments {
  width: calc(100vw - 24px) !important;
  max-width: 1620px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Footer should be full width too */
body.v254-shell-single-post .v254sh-footer {
  width: calc(100vw - 0px) !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  border-radius: 0 !important;
}

/* Kill bottom gaps aggressively */
body.v254-shell-single-post .v254sh-clean-comments:last-child,
body.v254-shell-single-post .v254sh-clean-nav:last-child,
body.v254-shell-single-post .v254sh-clean-latest:last-child,
body.v254-shell-single-post .v254sh-clean-body:last-child {
  margin-bottom: 0 !important;
}

body.v254-shell-single-post .wp-site-blocks > *:empty,
body.v254-shell-single-post main > *:empty,
body.v254-shell-single-post .entry-content > *:empty,
body.v254-shell-single-post .wp-block-post-content > *:empty {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Mobile: almost edge-to-edge */
@media (max-width: 700px) {
  body.v254-shell-single-post .v254sh-single-clean {
    margin-top: 0 !important;
  }

  body.v254-shell-single-post .v254sh-clean-head {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  body.v254-shell-single-post .v254sh-clean-featured,
  body.v254-shell-single-post .v254sh-clean-nav,
  body.v254-shell-single-post .v254sh-clean-comments {
    width: calc(100vw - 6px) !important;
    max-width: calc(100vw - 6px) !important;
  }

  body.v254-shell-single-post .v254sh-clean-featured {
    border-radius: 14px !important;
  }

  body.v254-shell-single-post .v254sh-clean-featured img {
    height: 340px !important;
  }

  body.v254-shell-single-post .v254sh-clean-body {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  body.v254-shell-single-post .v254sh-clean-latest {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
}


/* v1.7: safe full-width single post — stop title from being cut */

/* The v1.6 negative pull was too aggressive. Keep full width, but don't hide title under header. */
body.v254-shell-single-post .v254sh-single-clean {
  margin-top: -72px !important;
  padding-top: 0 !important;
  overflow: visible !important;
}

/* Prevent the article title from being clipped by any parent wrapper */
body.v254-shell-single-post .v254sh-clean-article,
body.v254-shell-single-post .v254sh-clean-head,
body.v254-shell-single-post .v254sh-clean-body {
  overflow: visible !important;
}

/* Give the title safe breathing room while keeping the page tight */
body.v254-shell-single-post .v254sh-clean-head {
  padding-top: clamp(78px, 8vw, 118px) !important;
  padding-left: clamp(14px, 4vw, 72px) !important;
  padding-right: clamp(14px, 4vw, 72px) !important;
}

/* Slightly reduce the extreme title size so long titles don't crop */
body.v254-shell-single-post .v254sh-clean-head h1 {
  max-width: 1320px !important;
  font-size: clamp(42px, 5vw, 82px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.065em !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

/* Make the excerpt less likely to run into the edge */
body.v254-shell-single-post .v254sh-clean-excerpt {
  max-width: 920px !important;
  padding-left: 8px !important;
  padding-right: 8px !important;
}

/* Fix header button getting cut on the right when viewport is narrow */
body .v254sh-header,
body .v254sh-topbar,
body .v254sh-shell-header,
body .v254sh-navwrap {
  max-width: 100vw !important;
  overflow: hidden !important;
}

body .v254sh-header-inner,
body .v254sh-topbar-inner {
  width: calc(100% - 16px) !important;
  max-width: calc(100vw - 16px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Keep full-width image, but avoid horizontal overflow/cut */
body.v254-shell-single-post .v254sh-clean-featured {
  width: calc(100vw - 18px) !important;
  max-width: calc(100vw - 18px) !important;
}

/* Remove stray block spacing without hiding content */
body.v254-shell-single-post .wp-site-blocks > main,
body.v254-shell-single-post main#wp--skip-link--target,
body.v254-shell-single-post .wp-block-post-content,
body.v254-shell-single-post .entry-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
  overflow: visible !important;
}

/* Mobile safe version */
@media (max-width: 700px) {
  body.v254-shell-single-post .v254sh-single-clean {
    margin-top: 0 !important;
  }

  body.v254-shell-single-post .v254sh-clean-head {
    padding-top: 26px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  body.v254-shell-single-post .v254sh-clean-head h1 {
    font-size: clamp(34px, 10vw, 48px) !important;
    line-height: 1.03 !important;
    letter-spacing: -.055em !important;
  }

  body.v254-shell-single-post .v254sh-clean-featured {
    width: calc(100vw - 6px) !important;
    max-width: calc(100vw - 6px) !important;
  }
}


/* v1.8: stop full-width sections from being cut + remove footer gap */

/* Use border-box everywhere in the shell so 100vw sections do not overflow */
body.v254-shell-single-post .v254sh-single-clean,
body.v254-shell-single-post .v254sh-single-clean *,
body.v254-shell-single-post .v254sh-single-clean *::before,
body.v254-shell-single-post .v254sh-single-clean *::after {
  box-sizing: border-box !important;
}

/* Full width but not horizontally broken */
body.v254-shell-single-post,
body.v254-shell-single-post html,
body.v254-shell-single-post .wp-site-blocks {
  overflow-x: hidden !important;
}

/* Keep full width, but do not use widths that add padding beyond viewport */
body.v254-shell-single-post .v254sh-single-clean {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: -72px !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* Article wrapper should never clip its children vertically */
body.v254-shell-single-post .v254sh-clean-article {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 0 4px !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
}

/* Slightly cleaner top spacing */
body.v254-shell-single-post .v254sh-clean-head {
  padding-top: clamp(76px, 7vw, 106px) !important;
  padding-bottom: 24px !important;
}

/* Featured image remains wide but not overflow-causing */
body.v254-shell-single-post .v254sh-clean-featured {
  width: calc(100% - 24px) !important;
  max-width: 1900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Article body full width but controlled */
body.v254-shell-single-post .v254sh-clean-body {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: clamp(16px, 7vw, 140px) !important;
  padding-right: clamp(16px, 7vw, 140px) !important;
  overflow: visible !important;
}

/* Latest section: prevent right side clipping */
body.v254-shell-single-post .v254sh-clean-latest {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: clamp(16px, 4vw, 64px) !important;
  padding-right: clamp(16px, 4vw, 64px) !important;
  margin-top: 42px !important;
  margin-bottom: 18px !important;
  overflow: visible !important;
}

body.v254-shell-single-post .v254sh-clean-latest-grid {
  width: 100% !important;
  max-width: 1760px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  overflow: visible !important;
}

body.v254-shell-single-post .v254sh-clean-latest-card {
  min-width: 0 !important;
  width: 100% !important;
  overflow: hidden !important;
}

body.v254-shell-single-post .v254sh-clean-latest-body h3,
body.v254-shell-single-post .v254sh-clean-latest-body h3 a {
  overflow-wrap: anywhere !important;
}

/* Previous/Next section: no clipping, better spacing */
body.v254-shell-single-post .v254sh-clean-nav,
body.v254-shell-single-post .v254sh-single-nav {
  width: calc(100% - 32px) !important;
  max-width: 1760px !important;
  margin: 20px auto 18px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
  overflow: visible !important;
}

body.v254-shell-single-post .v254sh-single-nav-card {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 150px !important;
  overflow: hidden !important;
  padding: 26px !important;
}

body.v254-shell-single-post .v254sh-single-nav-card strong {
  display: block !important;
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
}

/* Comments: remove the giant blank area */
body.v254-shell-single-post .v254sh-clean-comments,
body.v254-shell-single-post .v254sh-single-comments {
  width: calc(100% - 32px) !important;
  max-width: 1380px !important;
  margin: 18px auto 8px !important;
  padding-bottom: 28px !important;
  min-height: 0 !important;
  overflow: visible !important;
}

/* Comment form should not create a tall blank block */
body.v254-shell-single-post .v254sh-comment-form-wrap,
body.v254-shell-single-post .v254sh-comment-form-wrap form,
body.v254-shell-single-post .v254sh-clean-comments form {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  min-height: 0 !important;
}

body.v254-shell-single-post .v254sh-clean-comments textarea {
  min-height: 150px !important;
  height: 150px !important;
}

/* If there are no approved comments, keep the section compact */
body.v254-shell-single-post .v254sh-comments-head + .v254sh-comment-form-wrap {
  margin-top: 16px !important;
}

/* Remove empty whitespace before footer from theme wrappers */
body.v254-shell-single-post .wp-site-blocks > main,
body.v254-shell-single-post main#wp--skip-link--target,
body.v254-shell-single-post .entry-content,
body.v254-shell-single-post .wp-block-post-content {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  min-height: 0 !important;
}

body.v254-shell-single-post .wp-site-blocks > main::after,
body.v254-shell-single-post main#wp--skip-link--target::after,
body.v254-shell-single-post .entry-content::after,
body.v254-shell-single-post .wp-block-post-content::after {
  display: none !important;
  content: none !important;
}

/* Footer should sit closer and full width without overflow */
body.v254-shell-single-post .v254sh-footer {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* Hide raw theme comment area and separators if they still appear */
body.v254-shell-single-post .wp-block-separator,
body.v254-shell-single-post hr.wp-block-separator,
body.v254-shell-single-post .post-navigation,
body.v254-shell-single-post nav.navigation,
body.v254-shell-single-post .wp-block-post-navigation-link {
  display: none !important;
}

/* Tablet: two cards */
@media (max-width: 1100px) {
  body.v254-shell-single-post .v254sh-clean-latest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Mobile: one card, edge-to-edge but safe */
@media (max-width: 700px) {
  body.v254-shell-single-post .v254sh-single-clean {
    margin-top: 0 !important;
  }

  body.v254-shell-single-post .v254sh-clean-head {
    padding-top: 26px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  body.v254-shell-single-post .v254sh-clean-featured {
    width: calc(100% - 8px) !important;
  }

  body.v254-shell-single-post .v254sh-clean-body {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  body.v254-shell-single-post .v254sh-clean-latest {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  body.v254-shell-single-post .v254sh-clean-latest-grid,
  body.v254-shell-single-post .v254sh-clean-nav,
  body.v254-shell-single-post .v254sh-single-nav {
    grid-template-columns: 1fr !important;
  }

  body.v254-shell-single-post .v254sh-clean-nav,
  body.v254-shell-single-post .v254sh-single-nav,
  body.v254-shell-single-post .v254sh-clean-comments,
  body.v254-shell-single-post .v254sh-single-comments {
    width: calc(100% - 8px) !important;
  }
}
