.model-spotlight-section {
  --model-spotlight-accent-rgb: 98 106 92;
  --model-spotlight-accent-strong: #48523f;
  --model-spotlight-heading-color: #111111;
  --model-spotlight-subtitle-color: rgba(17, 17, 17, 0.38);
  --model-spotlight-surface: linear-gradient(180deg, #fbfbfb 0%, #f0f1ed 100%);
  --model-spotlight-panel: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 244, 0.94));
  --model-spotlight-shadow: 0 24px 54px rgba(17, 17, 17, 0.08);
  min-width: 0;
  padding: 28px 0 48px;
}

.model-spotlight-head {
  margin-bottom: 24px;
}

.model-spotlight-head span {
  display: block;
  color: var(--model-spotlight-heading-color);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
}

.model-spotlight-head h2 {
  margin: 2px 0 0;
  color: var(--model-spotlight-subtitle-color);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.model-spotlight-head p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.8;
}

.model-spotlight__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: stretch;
}

.model-spotlight__card,
.model-spotlight__reviews {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--model-spotlight-shadow);
}

.model-spotlight__card {
  align-self: start;
  display: flex;
  flex-direction: column;
  padding: 18px 16px 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.9), transparent 26%),
    radial-gradient(circle at bottom left, rgb(var(--model-spotlight-accent-rgb) / 0.1), transparent 32%),
    var(--model-spotlight-surface);
}

.model-spotlight__card::before,
.model-spotlight__reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.model-spotlight__card::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), transparent 18%, transparent 74%, rgb(var(--model-spotlight-accent-rgb) / 0.16)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), transparent 20%);
}

.model-spotlight__kicker,
.model-spotlight__review-label {
  margin: 0;
  color: var(--model-spotlight-accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.model-spotlight__review-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.model-spotlight__review-label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgb(var(--model-spotlight-accent-rgb)), var(--model-spotlight-accent-strong));
  box-shadow: 0 0 0 5px rgb(var(--model-spotlight-accent-rgb) / 0.08);
}

.model-spotlight__kicker::after,
.model-spotlight__review-label::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(var(--model-spotlight-accent-rgb)), rgb(var(--model-spotlight-accent-rgb) / 0.16));
}

.model-spotlight__card img {
  display: block;
  width: 100%;
  height: 320px;
  margin-top: 46px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.54) inset,
    0 18px 30px rgba(0, 0, 0, 0.05);
}

.model-spotlight__card-copy {
  margin-top: 14px;
  padding-top: 0;
}

.model-spotlight__eyebrow {
  margin: 0 0 10px;
  color: rgba(17, 17, 17, 0.54);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.model-spotlight__title {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 0;
  line-height: 0.94;
}

.model-spotlight__title span {
  color: #111111;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 900;
}

.model-spotlight__title strong {
  font-family: var(--headline);
  font-size: clamp(3.3rem, 5vw, 4.6rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: transparent;
  background: linear-gradient(180deg, rgb(var(--model-spotlight-accent-rgb)) 0%, var(--model-spotlight-accent-strong) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.model-spotlight__note {
  margin: 14px 0 0;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.75;
}

.model-spotlight__reviews {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.92), transparent 22%),
    radial-gradient(circle at bottom left, rgb(var(--model-spotlight-accent-rgb) / 0.12), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 42%),
    var(--model-spotlight-panel);
}

.model-spotlight__reviews::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), transparent 20%, transparent 76%, rgb(var(--model-spotlight-accent-rgb) / 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent 24%);
}

.model-spotlight__reviews-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgb(var(--model-spotlight-accent-rgb) / 0.12);
}

.model-spotlight__reviews-copy h3 {
  margin: 14px 0 0;
  color: #111111;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.model-spotlight__reviews-copy p {
  margin: 10px 0 0;
  color: rgba(17, 17, 17, 0.64);
  line-height: 1.75;
}

.model-spotlight__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgb(var(--model-spotlight-accent-rgb)), var(--model-spotlight-accent-strong));
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 18px 32px rgb(var(--model-spotlight-accent-rgb) / 0.2);
}

.model-spotlight__review-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.model-spotlight__review-grid--single {
  grid-template-columns: 1fr;
}

.model-spotlight__review-card {
  min-height: 210px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgb(var(--model-spotlight-accent-rgb) / 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 246, 0.84)),
    radial-gradient(circle at top right, rgb(var(--model-spotlight-accent-rgb) / 0.14), transparent 34%);
  box-shadow:
    0 18px 34px rgb(var(--model-spotlight-accent-rgb) / 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.model-spotlight__review-card h4 {
  margin: 0;
  max-width: 28rem;
  color: var(--model-spotlight-accent-strong);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.model-spotlight__review-card p {
  margin: 14px 0 0;
  color: rgba(17, 17, 17, 0.82);
  line-height: 1.8;
}

.model-spotlight__review-card footer {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 18px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.48);
  font-size: 0.82rem;
  font-weight: 700;
  background: rgb(var(--model-spotlight-accent-rgb) / 0.08);
}

.model-spotlight__review-card--single {
  min-height: 0;
  padding: 24px 24px 22px;
  position: relative;
}

.model-spotlight__review-card--single > p {
  font-size: 1rem;
}

.model-spotlight__review-card--single::before {
  content: "“";
  position: absolute;
  top: 14px;
  right: 18px;
  color: rgb(var(--model-spotlight-accent-rgb) / 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
}

.model-spotlight__memo-sections {
  margin-top: 18px;
}

.model-spotlight__memo-block + .model-spotlight__memo-block {
  margin-top: 12px;
}

.model-spotlight__memo-block h5 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--model-spotlight-accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: rgb(var(--model-spotlight-accent-rgb) / 0.08);
}

.model-spotlight__memo-block p {
  margin: 10px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 250, 247, 0.78)),
    radial-gradient(circle at top right, rgb(var(--model-spotlight-accent-rgb) / 0.08), transparent 34%);
  border: 1px solid rgb(var(--model-spotlight-accent-rgb) / 0.08);
  font-size: 0.98rem;
  line-height: 1.8;
}

.model-spotlight--deepmomi {
  --model-spotlight-accent-rgb: 71 93 100;
  --model-spotlight-accent-strong: #24424c;
}

.model-spotlight--fascia {
  --model-spotlight-accent-rgb: 121 142 63;
  --model-spotlight-accent-strong: #5b7230;
}

.model-spotlight--shoulder-blade {
  --model-spotlight-accent-rgb: 159 89 73;
  --model-spotlight-accent-strong: #7c4135;
}

@media (max-width: 1100px) {
  .model-spotlight__layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .model-spotlight-section {
    padding: 20px 0 38px;
  }

  .model-spotlight__reviews-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .model-spotlight__button {
    width: 100%;
  }

  .model-spotlight__review-grid {
    grid-template-columns: 1fr;
  }

  .model-spotlight__card img {
    height: 270px;
    margin-top: 40px;
  }

  .model-spotlight__title strong {
    font-size: 3.6rem;
  }
}
