/* ==========================================================================
   hustle.css — Hustle Platform Case Study page
   Page-specific additions on top of the shared case-study styles (kikku.css)
   ========================================================================== */

/* --------------------------------------------------------------------------
   RESEARCH SUMMARY — override shared intro text size/color for this page
   -------------------------------------------------------------------------- */
.cs-intro-text {
  font-size: 28px;
  color: #4B5563;
}

/* --------------------------------------------------------------------------
   RESEARCH SUMMARY — Key Insights: vertically-stacked stat list, mobile only.
   The "key insights.png" image stays for desktop/tablet; on mobile it's
   swapped for real markup so each stat reads clearly in a single column.
   -------------------------------------------------------------------------- */
.hs-ki-list {
  display: none;
}

.hs-ki-label {
  display: none;
}

.hs-ki-m-img {
  display: none;
}

.hs3-reflections-m-img {
  display: none;
}

/* --------------------------------------------------------------------------
   NEXT PROJECT — override the shared .cs-next-project card for this page
   to match the Figma spec: padding+gap inside the card instead of the
   mockup image bleeding edge-to-edge, and an uncropped icon.
   -------------------------------------------------------------------------- */
.cs-next-project__card {
  align-items: center;
  padding: 16px 32px;
  gap: 20px;
}

.cs-next-project__image {
  background: transparent;
  align-self: stretch;
  border-radius: var(--radius-xl);
}

.cs-next-project__icon {
  width: 64px;
  height: 64px;
  border-radius: 0;
  overflow: visible;
}

.cs-next-project__icon-img {
  object-fit: contain;
}

@media (max-width: 900px) {
  .cs-next-project__card {
    padding: 16px;
    gap: 16px;
  }
}

/* --------------------------------------------------------------------------
   SOLUTIONS — image LEFT (35%), text + numbered points RIGHT (65%). No card.
   -------------------------------------------------------------------------- */
.sol-columns {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 32px;
  align-items: start;
}

.sol-columns__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.sol-columns__content {
  display: flex;
  flex-direction: column;
}

.sol-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sol-text p {
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #1C1C1C;
  line-height: 1.7;
  margin: 0;
}

.sol-num-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 60px 0 0;
  padding: 0;
  list-style: none;
}

.sol-num-list__item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.sol-num-list__num {
  font-family: 'Emilys Candy', cursive;
  font-weight: 700;
  font-size: 45px;
  color: #7D52F4;
  flex-shrink: 0;
}

.sol-num-list__text {
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .sol-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sol-columns__image {
    order: -1;
  }
}

.cs-full-image--mt {
  margin-top: 32px;
}

/* --------------------------------------------------------------------------
   HIGHLIGHTS — two stacked frames
   -------------------------------------------------------------------------- */
.cs-highlights__frame + .cs-highlights__frame {
  margin-top: 30px;
}

/* --------------------------------------------------------------------------
   KEY FEATURES — header sits 60px above the mockup frame
   -------------------------------------------------------------------------- */
#key-features .cs-section__header {
  margin-bottom: 60px;
}

/* --------------------------------------------------------------------------
   CHALLENGES — no card wrapper; text and image sit on the page background
   -------------------------------------------------------------------------- */
.ch-label {
  font-family: 'Urbanist', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #5C5C5C;
  margin: 0 0 32px;
}

.ch-label--spotlight {
  margin: 40px 0 16px;
}

.ch-columns {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 32px;
  align-items: start;
}

.ch-columns__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.ch-columns__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ch-columns__text p {
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #1C1C1C;
  line-height: 1.7;
  margin: 0;
}

.ch-num-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ch-num-list__item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.ch-num-list__num {
  font-family: 'Emilys Candy', cursive;
  font-weight: 700;
  font-size: 45px;
  color: #7D52F4;
  flex-shrink: 0;
}

.ch-num-list__text {
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .ch-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ch-columns__image {
    order: -1;
  }
}

/* --------------------------------------------------------------------------
   USER PERSONAS — meta/photo card + summary/frustrations/needs cards
   -------------------------------------------------------------------------- */
.hp-personas-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hp-persona {
  display: grid;
  grid-template-columns: 427fr 783fr;
  gap: 50px;
}

.hp-persona--reversed {
  grid-template-columns: 783fr 427fr;
}

.hp-persona--reversed .hp-persona__right {
  order: -1;
}

.hp-persona__left {
  display: flex;
  flex-direction: column;
  background: #F5F5F5;
  border-radius: 20px;
  overflow: hidden;
}

.hp-persona__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hp-persona__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 24px 24px 16px;
}

.hp-persona__meet {
  font-family: 'Urbanist', sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin: 0;
}

.hp-persona__name {
  font-family: 'Urbanist', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.hp-persona__detail {
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin: 0;
}

/* age/role line (2nd <p> in .hp-persona__meta, after "Meet") */
.hp-persona__detail:nth-of-type(2) {
  font-size: 24px;
}

/* income line (3rd <p> in .hp-persona__meta) */
.hp-persona__detail:nth-of-type(3) {
  font-size: 20px;
}

.hp-persona__photo {
  width: 100%;
  flex: 1;
  min-height: 220px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hp-persona__summary {
  background: #F7F7F7;
  border-radius: 20px;
  padding: 24px;
}

.hp-persona__summary p {
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #4B5563;
  line-height: 1.6;
  margin: 0;
}

.hp-persona__panels {
  display: flex;
  gap: 32px;
}

.hp-persona__panel {
  flex: 1;
  background: #F5F5F5;
  border-radius: 20px;
  padding: 24px;
}

.hp-persona__panel .hp-persona__panel-title {
  text-align: center;
}

.hp-persona__panel-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #1C1C1C;
  margin: 0 0 12px;
}

.hp-persona__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.hp-persona__list li {
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #4B5563;
  line-height: 1.5;
}

.hp-persona__list strong {
  font-weight: 600;
  color: #1C1C1C;
}

@media (max-width: 1024px) {
  .hp-persona,
  .hp-persona--reversed {
    grid-template-columns: 1fr;
  }

  .hp-persona--reversed .hp-persona__right {
    order: 0;
  }

  .hp-persona__panels {
    flex-direction: column;
  }

  .hp-persona__photo {
    min-height: 280px;
  }
}

/* ==========================================================================
   HUSTLE SECTION TWO — Design Deep Dive
   Annotated feature breakdown, nested inside .cs-main-content (alongside
   sections 1-7) so the sticky Contents sidebar has room to track it.
   Horizontal padding is 0 — spacing comes from .case-study-layout itself.
   ========================================================================== */

.hs2-section {
  padding: 100px 0 140px;
}

/* Each numbered feature block */
.hs2-block {
  margin-bottom: 120px;
}

.hs2-block:last-child {
  margin-bottom: 0;
}

/* ── Optional "Job summary / Client Details" labels above phone pair ────── */
.hs2-labels-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin-bottom: 16px;
}

.hs2-label {
  font-family: 'Urbanist', sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #292929;
  letter-spacing: 0.52px;
}

.hs2-label--right {
  text-align: right;
}

/* ── Three-column phone / annotation grid ─────────────────────────────── */
.hs2-phones {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 40px;
}

.hs2-phone__img {
  display: block;
  width: 100%;
  height: auto;
}

/* Raw screenshot (no device frame baked in) – add soft frame + shadow */
.hs2-phone__img--raw {
  border-radius: 30px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.12);
}

/* ── Annotation column (sits between the two phones) ─────────────────── */
.hs2-annotations {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-self: stretch;
  padding: 48px 28px;
  gap: 16px;
}

.hs2-annotation {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

/* Dashed connecting line from phone edge to label */
.hs2-annotation__line {
  width: 52px;
  height: 0;
  border-top: 1.5px dashed #292929;
  flex-shrink: 0;
}

.hs2-annotation__label {
  font-family: 'Urbanist', sans-serif;
  font-size: 21px;
  font-weight: 500;
  color: #292929;
  letter-spacing: 0.42px;
}

/* ── Description card ─────────────────────────────────────────────────── */
.hs2-desc {
  background: #f7f7f7;
  border-radius: 30px;
  padding: 28px 32px;
  max-width: 680px;
}

.hs2-desc--right {
  margin-left: auto;
}

/* Numbered section title uses Emily's Candy exactly like the Figma */
.hs2-desc__title-list {
  font-family: 'Emilys Candy', cursive;
  font-size: 32px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.64px;
  margin: 0 0 12px;
  padding-left: 44px;
}

.hs2-desc__divider {
  height: 1px;
  background: #D0D0D0;
  border: none;
  margin: 0 0 20px;
}

.hs2-desc__text {
  font-family: 'Urbanist', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #292929;
  line-height: 1.6;
  letter-spacing: 0.44px;
  margin: 0 0 12px;
}

.hs2-desc__text:last-child {
  margin-bottom: 0;
}

.hs2-desc__list {
  font-family: 'Urbanist', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #292929;
  line-height: 1.6;
  letter-spacing: 0.44px;
  margin: 0;
  padding-left: 28px;
}

.hs2-desc__list li {
  margin-bottom: 8px;
}

.hs2-desc__list li:last-child {
  margin-bottom: 0;
}

/* ── Full-width construction worker photo break ───────────────────────── */
.hs2-photo-break {
  margin-bottom: 120px;
  border-radius: 30px;
  overflow: hidden;
}

.hs2-photo-break__img {
  display: block;
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center 20%;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .hs2-section {
    padding: 80px 0 100px;
  }

  .hs2-annotation__label {
    font-size: 18px;
  }

  .hs2-label {
    font-size: 22px;
  }
}

@media (max-width: 1024px) {
  .hs2-section {
    padding: 60px 0 80px;
  }

  .hs2-phones {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    row-gap: 32px;
  }

  /* On medium screens, annotations span both columns and collapse to tags */
  .hs2-annotations {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    gap: 10px;
  }

  .hs2-annotation__line {
    display: none;
  }

  .hs2-annotation__label {
    background: rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 16px;
    white-space: normal;
  }

  .hs2-labels-row {
    grid-template-columns: 1fr 1fr;
  }

  .hs2-labels-row > :nth-child(2) {
    display: none;
  }

  .hs2-desc,
  .hs2-desc--right {
    max-width: 100%;
    margin-left: 0;
  }

  .hs2-photo-break__img {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .hs2-section {
    padding: 48px 0 60px;
  }

  .hs2-phones {
    grid-template-columns: 1fr;
  }

  .hs2-labels-row {
    grid-template-columns: 1fr;
  }

  .hs2-labels-row .hs2-label--right {
    display: none;
  }

  .hs2-desc__title-list {
    font-size: 26px;
  }

  .hs2-desc__text,
  .hs2-desc__list {
    font-size: 18px;
  }

  .hs2-photo-break__img {
    height: 240px;
  }

  .hs2-block {
    margin-bottom: 80px;
  }
}

/* ── Mobile-only Design Deep Dive replacement (hidden on desktop) ───────── */
.hs2-mobile {
  display: none;
}

/* ── Mobile-only Impact layout (hidden on desktop) ──────────────────────── */
.hs3-impact-m {
  display: none;
}

/* ==========================================================================
   HUSTLE SECTION THREE — Visual Designs, Style Guide, Impact & Reflections
   Nested inside .cs-main-content (see note on .hs2-section above) so these
   four sections are tracked by the sticky Contents sidebar.
   ========================================================================== */

.hs3-section {
  /* No bottom padding — .case-study-layout already adds trailing space
     before the Next Project section. */
  padding: 0;
}

/* Each block is a real .cs-section so the Contents nav can pick it up;
   the default .cs-section top padding is replaced by this section's own
   margin-bottom rhythm to avoid double spacing. */
.hs3-block.cs-section {
  padding-top: 0;
}

.hs3-block {
  margin-bottom: 100px;
}

.hs3-block:last-child {
  margin-bottom: 0;
}

.hs3-style-img {
  margin-top: 32px;
}

/* Reflections mobile text — hidden on desktop */
.hs3-reflections__text {
  display: none;
}

.hs3-impact-intro {
  margin-bottom: 40px;
}

.hs3-impact-img + .hs3-impact-img {
  margin-top: 32px;
}

/* Visually-hidden live header — keeps a real heading for the Contents
   sidebar to read, without showing a second title on top of an image
   that already has the heading baked in. */
.cs-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .hs3-block {
    margin-bottom: 72px;
  }
}

@media (max-width: 640px) {
  .hs3-block {
    margin-bottom: 56px;
  }
}

/* --------------------------------------------------------------------------
   RESPONSIVE — Mobile (≤ 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {

  /* ── Page title & subtitle ── */
  .cs-page-title {
    font-size: 16px;
    margin: 0 0 8px;
  }

  .cs-page-subtitle {
    font-size: 12px;
  }

  /* ── Section spacing: 24px between all sections ── */
  .cs-section {
    padding: 24px 0 0;
  }

  /* ── Section heading → first content gap ── */
  .cs-section__header {
    gap: 4px;
    margin-bottom: 16px;
    overflow: visible;
  }

  .cs-section__title {
    font-size: 16px;
  }

  /* ── Hero image bottom gap ── */
  .cs-hero-image-wrap {
    margin-bottom: 0;
  }

  /* ── Overview ── */
  .cs-overview {
    gap: 12px;
  }

  .cs-overview__item {
    gap: 4px;
  }

  .cs-overview__label,
  .cs-overview__value {
    font-size: 16px;
  }

  /* ── Research intro text — hidden on mobile; replaced by Key Insights label ── */
  #research-summary .cs-intro-text {
    display: none;
  }

  .hs-ki-label {
    display: block;
  }

  /* ── Key Insights: swap flat image for mobile image ── */
  .hs-ki-image {
    display: none;
  }

  .hs-ki-list {
    display: none;
  }

  .hs-ki-m-img {
    display: block;
    width: 100%;
    height: auto;
  }

  .hs-ki-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
  }

  /* Donut progress ring — conic-gradient fill, percentage centered in the hole */
  .hs-ki-ring {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: conic-gradient(#1E3FAE calc(var(--pct, 50) * 1%), #AEC9FB 0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-bottom: -28px;
  }

  .hs-ki-ring::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: var(--color-page-bg);
  }

  .hs-ki-ring__pct {
    position: relative;
    z-index: 1;
    font-family: 'Urbanist', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #1C1C1C;
  }

  /* Gray card with a scalloped notch cut into its top edge for the ring to sit in */
  .hs-ki-card {
    width: 100%;
    background: #F5F5F5;
    border-radius: 20px;
    padding: 44px 20px 24px;
    -webkit-mask-image: radial-gradient(circle 70px at 50% 0%, transparent 99%, black 100%);
    mask-image: radial-gradient(circle 70px at 50% 0%, transparent 99%, black 100%);
  }

  .hs-ki-item__desc {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4B5563;
    line-height: 1.5;
    text-align: center;
    margin: 0;
  }

  /* ── Challenges ── */
  .ch-label {
    font-size: 16px;
    margin: 0 0 12px;
  }

  .ch-label--spotlight {
    margin-top: 16px;
  }

  .ch-columns__image {
    order: -1;
  }

  .ch-columns__text p {
    font-size: 16px;
  }

  .ch-num-list__item {
    align-items: center;
  }

  .ch-num-list__text {
    font-size: 16px;
  }

  /* ── Solutions ── */
  .sol-columns__image {
    order: -1;
  }

  .sol-text p {
    font-size: 16px;
  }

  .sol-num-list {
    margin: 24px 0 0;
  }

  .sol-num-list__item {
    align-items: center;
  }

  .sol-num-list__text {
    font-size: 16px;
  }

  /* ── User Personas — text sizes ── */
  .hp-persona__meet {
    font-size: 16px;
  }

  .hp-persona__name {
    font-size: 16px;
  }

  .hp-persona__detail:nth-of-type(2),
  .hp-persona__detail:nth-of-type(3) {
    font-size: 16px;
  }

  .hp-persona__panel-title {
    font-size: 16px;
  }

  .hp-persona__summary p {
    font-size: 16px;
  }

  .hp-persona__list li {
    font-size: 16px;
  }

  /* Image on top for reversed persona ── */
  .hp-persona--reversed .hp-persona__left {
    order: -1;
  }

  /* ── Design Deep Dive (Section 2) — hidden; replaced by .hs2-mobile ── */
  .hs2-section {
    display: none;
  }

  /* ── Mobile-only Design Deep Dive ── */
  .hs2-mobile {
    display: block;
    padding: 24px 0 0;
  }

  .hs2m-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
  }

  .hs2m-block:last-child {
    margin-bottom: 0;
  }

  .hs2m-img,
  .hs2m-card,
  .hs2m-combined {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Client Details image — constrained so heading text reads at ~12px */
  .hs2m-img--sm {
    width: 60%;
    margin: 0 auto;
  }

  .hs2m-photo-break {
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
  }

  .hs2m-photo-break__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center 15%;
    display: block;
  }

  .hs2-block {
    margin-bottom: 48px;
  }

  .hs2-phones {
    grid-template-columns: 1fr;
  }

  .hs2-labels-row {
    grid-template-columns: 1fr;
  }

  .hs2-labels-row .hs2-label--right {
    display: none;
  }

  .hs2-label {
    font-size: 16px;
  }

  .hs2-desc__title-list {
    font-size: 16px;
  }

  .hs2-desc__text,
  .hs2-desc__list {
    font-size: 16px;
  }

  .hs2-photo-break__img {
    height: 200px;
  }

  /* ── Section 3 block spacing: padding-top handles the gap, not margin-bottom ── */
  .hs3-block {
    margin-bottom: 0;
  }

  .hs3-block.cs-section {
    padding-top: 24px;
  }

  /* ── Impact — hide wide landscape images, show mobile layout ── */
  .hs3-impact-intro {
    display: none;
  }

  .hs3-impact-img {
    display: none;
  }

  .hs3-impact-m {
    display: block;
    width: 100%;
  }

  .hs3-impact-m__img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hs3-impact-m__img + .hs3-impact-m__img {
    margin-top: 32px;
  }

  .hs3-im-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  /* Crop the right half of each landscape image to reveal illustration + labels */
  .hs3-im-illus {
    width: 100%;
    height: 180px;
    overflow: hidden;
  }

  .hs3-im-illus__img {
    display: block;
    width: 200%;
    height: auto;
    margin-left: -100%;
  }

  .hs3-im-card {
    box-sizing: border-box;
    width: 100%;
    background: #F7F7F7;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .hs3-im-pct {
    font-family: 'Emilys Candy', cursive;
    font-size: 26px;
    font-weight: 400;
    color: #262626;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin: 0;
  }

  .hs3-im-cat {
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin: 0;
  }

  .hs3-im-desc {
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin: 0;
  }

  /* ── Reflections — mobile layout ── */

  /* Un-hide the live "★ Reflections" heading on mobile */
  #reflections .hs3-reflections__header {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: normal;
    margin: 0 0 16px;
    padding: 0;
  }

  /* Frame — hidden on mobile; replaced by hs3-reflections-m-img */
  .hs3-reflections__frame {
    display: none;
  }

  /* Text — hidden on mobile; content is in the replacement image */
  .hs3-reflections__text {
    display: none;
  }

  .hs3-reflections-m-img {
    display: block;
    width: 100%;
    height: auto;
  }

  .hs3-reflections__text p {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #333333;
    line-height: 1.5;
    margin: 0;
  }

  /* ── Next Project section — mirrors Sparkles mobile ── */
  .cs-next-project {
    padding: 24px 16px 40px;
  }

  .cs-next-project__label {
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
  }

  .cs-next-project__star {
    width: 14px;
    height: 14px;
  }

  .cs-next-project__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 8px;
    gap: 10.81px;
    width: 100%;
    max-width: 355px;
    height: auto;
    border-radius: 17.2986px;
    flex: none;
    align-self: stretch;
    flex-grow: 0;
    margin: 0 auto;
    overflow: hidden;
  }

  .cs-next-project__image {
    width: 100%;
    flex: none;
    height: 256px;
    background: #EBEBEB;
    border-radius: 13px;
    overflow: hidden;
  }

  .cs-next-project__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .cs-next-project__text {
    flex: none;
    padding: 0 8px;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .cs-next-project__title-row {
    gap: 8px;
  }

  .cs-next-project__icon {
    width: 28px;
    height: 28px;
  }

  .cs-next-project__title {
    font-size: 16px;
  }

  .cs-next-project__category {
    font-size: 12px;
    margin-top: 6px;
  }

  .cs-next-project__description {
    font-size: 12px;
    line-height: 1.6;
    margin-top: 8px;
  }

  .cs-next-project__btn {
    margin-top: 10.81px;
    align-self: stretch;
    text-align: center;
    padding: 12px 16px;
    font-size: 16px;
    width: 100%;
    background: #7D52F4;
    border-width: 0.5px 4px 4px 0.5px;
    border-style: solid;
    border-color: #171717;
    border-radius: 8px;
    color: #F7F7F7;
  }
}
