/* ── Global divider (from base.css — include here or confirm it loads globally) ── */
.section-divider {
  width: 100%;
  height: 1px;
  background: #ffffff;
  opacity: 0.5;
  margin: 38px 0 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

/* ── Weekly Obsession section override of .section-divider ── */
.bbb-home-obsession .section-divider {
  margin: 0 0 34px;
  background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,138,199,.72), rgba(255,255,255,.08));
  opacity: 1;
  box-shadow: 0 1px 0 rgba(255,138,199,.15);
}

/* ── Section shell ── */
.bbb-home-obsession {
  background: #0b0b0b;
  color: #f6f6f6;
  padding: 18px 20px 34px;
}

.bbb-home-obsession__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 34px;
}

/* Pink accent bar after inner content */
.bbb-home-obsession__inner::after {
  content: "";
  display: block;
  width: min(62%, 620px);
  height: 8px;
  min-height: 8px;
  margin: 34px 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,138,199,.78) 28%, rgba(255,138,199,1) 100%);
  box-shadow: 0 0 26px rgba(255,138,199,.28);
  transform: rotate(-1.2deg);
  transform-origin: right center;
}

/* ── Sparkles overlay ── */
.bbb-home-obsession__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: .82;
}

.bbb-home-obsession__sparkles span {
  position: absolute;
  color: rgba(255,255,255,.6);
  text-shadow: 0 0 14px rgba(255,255,255,.18);
  animation: bbbHomeObsessionSparkle 4.8s ease-in-out infinite;
}

.bbb-home-obsession__sparkles span:nth-child(1)  { top: 8px;  left: 3%;   font-size: 13px; animation-delay: .1s;  }
.bbb-home-obsession__sparkles span:nth-child(2)  { top: 34px; left: 13%;  font-size: 11px; animation-delay: .8s;  }
.bbb-home-obsession__sparkles span:nth-child(3)  { top: 14px; left: 28%;  font-size: 10px; animation-delay: 1.6s; }
.bbb-home-obsession__sparkles span:nth-child(4)  { top: 54px; left: 44%;  font-size: 12px; animation-delay: 2.2s; }
.bbb-home-obsession__sparkles span:nth-child(5)  { top: 12px; right: 20%; font-size: 11px; animation-delay: 2.9s; }
.bbb-home-obsession__sparkles span:nth-child(6)  { top: 46px; right: 6%;  font-size: 9px;  animation-delay: 3.5s; }
.bbb-home-obsession__sparkles span:nth-child(7)  { top: 36%;  left: 8%;   font-size: 11px; animation-delay: 1.1s; }
.bbb-home-obsession__sparkles span:nth-child(8)  { top: 42%;  left: 31%;  font-size: 9px;  animation-delay: 2.7s; }
.bbb-home-obsession__sparkles span:nth-child(9)  { top: 51%;  right: 16%; font-size: 12px; animation-delay: 3.1s; }
.bbb-home-obsession__sparkles span:nth-child(10) { top: 66%;  left: 18%;  font-size: 10px; animation-delay: .6s;  }
.bbb-home-obsession__sparkles span:nth-child(11) { top: 74%;  left: 56%;  font-size: 11px; animation-delay: 1.9s; }
.bbb-home-obsession__sparkles span:nth-child(12) { top: 82%;  right: 7%;  font-size: 9px;  animation-delay: 2.4s; }

/* ── Head block ── */
.bbb-home-obsession__head {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0 0 22px;
  text-align: left;
}

.bbb-home-obsession__head::before {
  content: "";
  display: block;
  width: 68px;
  height: 1px;
  margin: 0 0 16px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 0 14px rgba(255,255,255,.12);
}

.bbb-home-obsession__sectionKicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: lowercase;
  color: rgba(246,246,246,.62);
}

.bbb-home-obsession__sectionTitle {
  margin: 8px 0 0;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 400;
  line-height: 1.04;
}

.bbb-home-obsession__sectionSub {
  margin: 10px 0 0;
  max-width: 42ch;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(246,246,246,.72);
}

/* ── 2-col row ── */
.bbb-home-obsession__row {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(320px, 560px);
  gap: clamp(48px, 8vw, 132px);
  align-items: center;
  justify-content: center;
  max-width: 1160px;
  margin: 0 auto;
}

.bbb-home-obsession__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  min-width: 0;
  width: 100%;
}

/* ── Cover link ── */
.bbb-home-obsession__coverLink {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-top: 18px;
  justify-self: center;
  width: min(100%, 360px);
  transition: transform .24s ease, filter .24s ease;
}

.bbb-home-obsession__coverLink:hover,
.bbb-home-obsession__coverLink:focus-visible {
  transform: translateY(-4px);
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.22));
}

/* ── Cover wrap ── */
.bbb-home-obsession__coverWrap {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 54px rgba(0,0,0,.34);
  transition: border-color .24s ease, box-shadow .24s ease;
}

.bbb-home-obsession__coverLink:hover .bbb-home-obsession__coverWrap,
.bbb-home-obsession__coverLink:focus-visible .bbb-home-obsession__coverWrap {
  border-color: rgba(255,138,199,.28);
  box-shadow: 0 28px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(255,138,199,.08);
}

/* Dark gradient overlay on cover */
.bbb-home-obsession__coverWrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.22));
  pointer-events: none;
}

/* ── Cover image ── */
.bbb-home-obsession__cover {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  filter: none;
  transform: none;
}

/* ── Spice badge ── */
.bbb-home-obsession__spice {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(27,27,27,.88);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 24px rgba(0,0,0,.24);
  font-size: 15px;
  line-height: 1;
}

/* ── Meta (shelf + tropes) ── */
.bbb-home-obsession__meta {
  margin-top: 22px;
  width: 100%;
  max-width: 430px;
  text-align: center;
  transition: transform .24s ease;
}

.bbb-home-obsession__shelf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: lowercase;
  color: rgba(246,246,246,.66);
}

.bbb-home-obsession__line {
  width: 34px;
  height: 1px;
  background: #ff8ac7;
  opacity: .8;
}

/* ── Trope pills ── */
.bbb-home-obsession__tropes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 14px;
  justify-content: center;
}

.bbb-home-obsession__trope {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: rgba(246,246,246,.76);
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform .22s ease, color .22s ease;
}

.bbb-home-obsession__trope .bbb-custom-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45em;
  height: 1.45em;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 4px;
  vertical-align: -.28em;
}

a.bbb-home-obsession__trope:hover,
a.bbb-home-obsession__trope:focus-visible {
  transform: translateY(-1px);
  color: #ffb0d8;
}

/* ── Copy column ── */
.bbb-home-obsession__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-self: center;
  max-width: 560px;
  padding-top: 0;
}

.bbb-home-obsession__kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: lowercase;
  color: rgba(246,246,246,.62);
}

.bbb-home-obsession__title {
  margin: 10px 0 0;
  max-width: 12ch;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(3rem, 5.6vw, 5.2rem);
  font-weight: 400;
  line-height: .98;
}

.bbb-home-obsession__memberLink,
.sss-wo__memberLink {
  display: inline-flex;
  margin-top: 12px;
  color: #ffb0d8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.35;
  text-decoration: none;
  text-transform: lowercase;
  text-underline-offset: 4px;
}

.bbb-home-obsession__memberLink:hover,
.bbb-home-obsession__memberLink:focus-visible,
.sss-wo__memberLink:hover,
.sss-wo__memberLink:focus-visible {
  text-decoration: underline;
}

.bbb-home-obsession__sub {
  margin: 12px 0 0;
  max-width: 33ch;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(246,246,246,.72);
}

.bbb-home-obsession__ratings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.bbb-home-obsession__ratings span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  color: rgba(246,246,246,.82);
  font-size: 12px;
  line-height: 1;
}

.bbb-home-obsession__ratings strong {
  color: #ffb0d8;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: lowercase;
}

.bbb-home-obsession__quote {
  margin: 18px 0 0;
  max-width: 38ch;
  color: rgba(246,246,246,.84);
  font-family: "Libre Baskerville", serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
}

.bbb-home-obsession__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.bbb-home-obsession__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.14);
  color: #f6f6f6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: lowercase;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}

.bbb-home-obsession__button:hover,
.bbb-home-obsession__button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(0,0,0,.24);
}

.bbb-home-obsession__button--primary {
  background: #ff8ac7;
  border-color: #ff8ac7;
  color: #0b0b0b;
}

.bbb-home-obsession__button--ghost {
  background: rgba(255,138,199,.08);
  border-color: rgba(255,138,199,.42);
  color: #ffb0d8;
}

/* ── Mobile (≤749px) ── */
@media (max-width: 749px) {
  .bbb-home-obsession {
    padding: 14px 16px 28px;
  }

  .bbb-home-obsession__row {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: center;
  }

  .bbb-home-obsession__head {
    margin: 0 0 14px;
  }

  .bbb-home-obsession__head::before {
    margin: 0 0 14px;
  }

  .bbb-home-obsession__sectionTitle {
    font-size: clamp(1.7rem, 9vw, 2.3rem);
  }

  .bbb-home-obsession__sectionSub {
    font-size: 13px;
    line-height: 1.65;
  }

  /* On mobile: copy goes above cover */
  .bbb-home-obsession__feature {
    order: 2;
    width: min(100%, 330px);
  }

  .bbb-home-obsession__coverLink {
    margin-top: 10px;
    justify-self: center;
    width: 100%;
  }

  .bbb-home-obsession__copy {
    order: 1;
    align-items: center;
    text-align: center;
    padding-top: 12px;
    justify-self: center;
  }

  .bbb-home-obsession__title {
    max-width: 100%;
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .bbb-home-obsession__sub {
    max-width: 24ch;
    font-size: 14px;
  }

  .bbb-home-obsession__actions {
    width: 100%;
  }

  .bbb-home-obsession__button {
    flex: 1 1 128px;
    min-width: 0;
    padding: 0 10px;
    font-size: 9px;
    letter-spacing: .1em;
  }

  .bbb-home-obsession__cover {
    filter: none;
  }

  .bbb-home-obsession__meta {
    margin-top: 18px;
  }

  .bbb-home-obsession__tropes {
    gap: 8px;
  }

  .bbb-home-obsession__inner {
    padding-bottom: 24px;
  }

  /* Pink bar: left-origin on mobile */
  .bbb-home-obsession__inner::after {
    width: 72%;
    margin: 20px auto 0 0;
    transform: rotate(-1deg);
    transform-origin: left center;
  }
}

/* ── Sparkle keyframes ── */
@keyframes bbbHomeObsessionSparkle {
  0%, 100% {
    opacity: .2;
    transform: translateY(0) scale(.92) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px) scale(1.06) rotate(8deg);
  }
}

.sss-wo {
  padding: 44px 20px;
  background: #0b0b0b;
  color: #f6f6f6;
}

.sss-wo__wrap {
  position: relative;
  z-index: 1;
}

.sss-wo__pageHead {
  display: block;
  max-width: none;
  width: 100%;
  margin-bottom: 24px;
  text-align: left;
}

.sss-lib--weekly-obsession .sss-lib__head {
  max-width: none;
  width: 100%;
  flex: none;
}

.sss-wo__pageHead .sss-lib__title,
.sss-wo__pageHead .sss-lib__sub {
  display: block;
  width: 100%;
  text-align: right;
  margin-left: auto;
  max-width: 48rem;
}

.sss-wo__introLine {
  margin: 8px 0 14px;
  max-width: 56ch;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(246,246,246,.74);
}

.sss-wo__masthead {
  margin-left: auto;
  width: min(48rem, 100%);
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  position: relative;
}

.sss-wo__mastDivider {
  display: none;
}

.sss-wo__masthead::before {
  content: "";
  display: block;
  width: min(12.5rem, 44%);
  height: 6px;
  min-height: 6px;
  margin: 0 0 10px auto;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6fb8 0%, #ff8ac7 48%, #ffc3df 100%);
  box-shadow: 0 0 0 1px rgba(255,138,199,.14), 0 0 22px rgba(255,138,199,.28);
  transform: rotate(-1.35deg);
  transform-origin: right center;
}

.sss-wo__memberLink {
  align-self: flex-end;
}

.sss-wo__hero {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
  animation: sssWoFadeUp .8s ease-out both;
}

.sss-wo__coverFrame {
  position: relative;
  padding: 16px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
}

.sss-wo__heroBook,
.sss-wo__heroBook .sss-lib__book,
.sss-wo__heroBook .sss-lib__coverWrap {
  width: 100%;
}

.sss-wo__heroBook .sss-lib__under {
  margin-top: 12px;
}

.sss-wo__copyCol {
  min-width: 0;
  animation: sssWoFadeUp .8s ease-out both;
  animation-delay: .12s;
}

.sss-wo__stamp {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: lowercase;
  color: rgba(246,246,246,.82);
  animation: sssWoStampPulse 2.6s ease-in-out infinite;
  text-decoration: none;
}

.sss-wo__bookMetaCard {
  margin-top: 8px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.sss-wo__bookMetaHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.sss-wo__bookMetaStamp,
.sss-wo__bookMetaDate,
.sss-wo__detailKicker,
.sss-wo__quoteKicker,
.sss-wo__sectionKicker {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: lowercase;
  color: rgba(246,246,246,.62);
}

.sss-wo__detailKicker,
.sss-wo__quoteKicker,
.sss-wo__sectionKicker {
  font-size: 11px;
  letter-spacing: .18em;
  color: #c8c8c8;
}

.sss-wo__bookMeta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sss-wo__bookLine {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
}

.sss-wo__bookLabel {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: lowercase;
  color: rgba(246,246,246,.58);
}

.sss-wo__bookValue {
  font-size: 16px;
  line-height: 1.35;
}

.sss-wo__statusValue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sss-wo__statusBox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}

.sss-wo__statusValue.is-yes {
  color: #dbffe4;
}

.sss-wo__statusValue.is-yes .sss-wo__statusBox {
  color: #0c1b0f;
  background: #8fe0a3;
  border-color: #8fe0a3;
  box-shadow: 0 0 16px rgba(143,224,163,.18);
}

.sss-wo__statusValue.is-no {
  color: rgba(246,246,246,.76);
}

.sss-wo__statusValue.is-no .sss-wo__statusBox {
  color: #f1c4d5;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}

.sss-wo__editorial {
  margin-top: 20px;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(246,246,246,.78);
}

.sss-wo__editorial p {
  margin: 0;
}

.sss-wo__detailBlock,
.sss-wo__boyfriend {
  margin-top: 22px;
}

.sss-wo__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px;
}

.sss-wo__chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: rgba(246,246,246,.78);
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform .2s ease, color .2s ease;
}

.sss-wo__chip .bbb-custom-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45em;
  height: 1.45em;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 4px;
  vertical-align: -.28em;
}

.sss-wo__chip:hover,
.sss-wo__chip:focus-visible {
  transform: translateY(-1px);
  color: #ffb0d8;
}

.sss-wo__chip--rose {
  background: transparent;
  border: 0;
  color: rgba(246,246,246,.78);
}

.sss-wo__chip--berry {
  background: transparent;
  border: 0;
  color: rgba(246,246,246,.78);
}

.sss-wo__chip--plum {
  background: transparent;
  border: 0;
  color: rgba(246,246,246,.78);
}

.sss-wo__chip--blush {
  background: transparent;
  border: 0;
  color: rgba(246,246,246,.78);
}

.sss-wo__chip--pearl {
  background: transparent;
  border: 0;
  color: rgba(246,246,246,.78);
}

.sss-wo__chip--ink {
  background: transparent;
  border: 0;
  color: rgba(246,246,246,.78);
}

.sss-wo__boyfriendName {
  margin-top: 10px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1;
  color: #f6f6f6;
}

.sss-wo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.sss-wo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.14);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: lowercase;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease, filter .2s ease;
}

.sss-wo__btn:hover,
.sss-wo__btn:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(0,0,0,.26);
  filter: brightness(1.04);
}

.sss-wo__btn--primary {
  background: #ff8ac7;
  color: #0b0b0b;
  border-color: #ff8ac7;
  box-shadow: 0 14px 26px rgba(255,138,199,.18);
}

.sss-wo__btn--ghost {
  color: #ff8ac7;
  background: rgba(255,138,199,.08);
  border-color: rgba(255,138,199,.42);
}

.sss-wo__quoteBlock {
  margin-top: 26px;
  padding: 28px 30px 22px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  animation: sssWoFadeUp .8s ease-out both;
  animation-delay: .18s;
}

.sss-wo__nativeIssue {
  margin-top: 26px;
  padding: 28px 30px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.035);
  animation: sssWoFadeUp .8s ease-out both;
  animation-delay: .16s;
}

.sss-wo__nativeHead {
  max-width: 68ch;
  margin-bottom: 20px;
}

.sss-wo__nativeHead h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 400;
  line-height: 1;
  text-transform: lowercase;
}

.sss-wo__nativeHead p:last-child {
  margin: 12px 0 0;
  color: rgba(246,246,246,.72);
  font-size: 14px;
  line-height: 1.7;
}

.sss-wo__nativeBody {
  max-width: 74ch;
  color: rgba(246,246,246,.82);
  font-size: 16px;
  line-height: 1.85;
}

.sss-wo__nativeBody > *:first-child {
  margin-top: 0;
}

.sss-wo__nativeBody a {
  color: #ffb0d8;
  text-underline-offset: 4px;
}

.sss-wo__nativeBody img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border: 1px solid rgba(255,255,255,.10);
}

.sss-wo__nativeBody blockquote {
  margin: 22px 0;
  padding-left: 18px;
  border-left: 3px solid #ff8ac7;
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-size: 20px;
  line-height: 1.65;
}

.sss-wo__nativeActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sss-wo__quote {
  margin: 14px 0 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.45;
  text-wrap: balance;
}

.sss-wo__quoteMeta {
  margin-top: 16px;
  text-align: right;
  font-size: 12px;
  color: rgba(246,246,246,.68);
  letter-spacing: .05em;
}

.sss-wo__moreLikeThis {
  margin-top: 18px;
  padding: 12px 0 0;
  animation: sssWoFadeUp .8s ease-out both;
  animation-delay: .24s;
}

.sss-wo__sectionTitle {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  font-weight: 400;
  text-transform: lowercase;
}

.sss-wo__sectionSub {
  margin: 12px 0 0;
  max-width: 52ch;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(246,246,246,.72);
}

.sss-wo__relatedRow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.sss-wo__relatedItem {
  display: flex;
  justify-content: center;
}

.sss-wo__relatedItem .sss-lib__book {
  width: min(100%, 168px);
  flex: 0 0 auto;
}

.sss-wo__relatedItem .sss-lib__coverWrap {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
}

.sss-wo__relatedItem .sss-lib__cover {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
}

.sss-wo__empty {
  padding: 40px 22px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.03);
}

.sss-wo__emptyTitle {
  margin: 10px 0 0;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  text-transform: lowercase;
}

.sss-wo__emptySub {
  margin: 12px 0 0;
  max-width: 46ch;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(246,246,246,.72);
}

@keyframes sssWoFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sssWoStampPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255,138,199,0);
    border-color: rgba(255,255,255,.10);
    color: rgba(246,246,246,.82);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(255,138,199,.08);
    border-color: rgba(255,138,199,.34);
    color: #ffb7d9;
  }
}

@media (max-width: 900px) {
  .sss-wo__hero,
  .sss-wo__bookMeta {
    grid-template-columns: 1fr;
  }

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

@media (min-width: 641px) and (max-width: 900px) {
  .sss-wo__hero {
    grid-template-columns: minmax(210px, 300px) minmax(0, 1fr);
    gap: 22px;
    padding: 22px;
  }

  .sss-wo__coverCol {
    min-width: 0;
  }

  .sss-wo__coverFrame {
    padding: 12px;
  }

  .sss-wo__copyCol {
    align-self: start;
  }

  .sss-wo__bookMeta {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sss-wo__bookLine {
    padding: 10px 12px;
  }

  .sss-wo__editorial,
  .sss-wo__detailBlock,
  .sss-wo__boyfriend,
  .sss-wo__actions {
    margin-top: 16px;
  }

  .sss-wo__relatedRow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 100%;
  }

  .sss-wo__relatedItem .sss-lib__book {
    width: min(100%, 148px);
  }
}

@media (max-width: 640px) {
  .sss-wo {
    margin-top: 0;
    padding: 48px 10px 32px;
  }

  .sss-wo__masthead,
  .sss-wo__pageHead .sss-lib__title,
  .sss-wo__pageHead .sss-lib__sub {
    align-items: flex-start;
    text-align: left;
    margin-left: 0;
    max-width: none;
  }

  .sss-wo__masthead::before {
    width: 56%;
    margin: 0 0 8px;
    transform: rotate(-1deg);
    transform-origin: left center;
  }

  .sss-wo__hero {
    gap: 20px;
    padding: 18px 16px 20px;
  }

  .sss-wo__coverFrame {
    padding: 12px;
  }

  .sss-wo__heroBook {
    width: 190px;
    margin: 0 auto;
  }

  .sss-wo__actions {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .sss-wo__nativeIssue {
    padding: 22px 16px;
  }

  .sss-wo__nativeBody {
    font-size: 15px;
    line-height: 1.75;
  }

  .sss-wo__nativeActions {
    gap: 8px;
  }

  .sss-wo__btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 44px;
    padding: 0 8px;
    font-size: 9px;
    letter-spacing: .09em;
    text-align: center;
    white-space: nowrap;
  }

  .sss-wo__relatedRow {
    display: flex;
    grid-template-columns: none;
    gap: 8px;
    max-width: none;
    overflow-x: auto;
    padding: 4px 0 14px;
    margin-left: 0;
    margin-right: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .sss-wo__relatedRow::-webkit-scrollbar {
    display: none;
  }

  .sss-wo__relatedItem {
    flex: 0 0 168px;
    scroll-snap-align: start;
  }

  .sss-wo__relatedItem .sss-lib__book {
    width: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sss-wo__stamp,
  .sss-wo__hero,
  .sss-wo__copyCol,
  .sss-wo__nativeIssue,
  .sss-wo__quoteBlock,
  .sss-wo__moreLikeThis {
    animation: none;
  }
}

/* Pull quotes should preserve editorial capitalization. */
.bbb-home-obsession__quote,
.sss-wo__quote,
.sss-wo__quoteMeta {
  text-transform: none !important;
}
