/*
 * v2.13.1 — rebuilt compact hero for long idea titles.
 * The page is an inspiring editorial layout tied directly to PAN/OPAN products.
 */

body.single-stavros_project {
  background: #f8f3eb;
}

.sp-idea-detail {
  --idea-bg: #f8f3eb;
  --idea-card: #fffdf9;
  --idea-ink: #262019;
  --idea-muted: #726b62;
  --idea-line: #e5dbce;
  --idea-green: #174f36;
  --idea-green-dark: #103b28;
  --idea-accent: #bd5b3a;
  --idea-radius: 22px;
  overflow: clip;
  background:
    radial-gradient(circle at 80% 9%, rgba(185, 137, 84, .09), transparent 24rem),
    var(--idea-bg);
  color: var(--idea-ink);
}

.sp-idea-detail .sp-container {
  width: min(1480px, calc(100% - 48px));
}

.sp-idea-detail h1,
.sp-idea-detail h2,
.sp-idea-detail h3 {
  color: var(--idea-ink);
}

.sp-idea-detail__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 22px;
  color: var(--idea-muted);
  font-size: .77rem;
}

.sp-idea-detail__breadcrumbs a:hover {
  color: var(--idea-green);
}

.sp-idea-detail__hero {
  padding: 20px 0 22px;
}

.sp-idea-detail__hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--idea-line);
  border-radius: 28px;
  background: var(--idea-card);
  box-shadow: 0 22px 70px rgba(55, 41, 26, .08);
}

.sp-idea-detail__hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, .65fr);
  grid-template-areas:
    "eyebrow eyebrow"
    "title lead"
    "title actions"
    "title honesty";
  column-gap: clamp(34px, 4vw, 72px);
  align-items: start;
  padding: clamp(36px, 4.5vw, 66px);
}

.sp-idea-detail__hero-copy .sp-eyebrow {
  grid-area: eyebrow;
  margin: 0 0 18px;
  color: var(--idea-accent);
}

.sp-idea-detail__hero-copy h1 {
  grid-area: title;
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.35rem, 4.65vw, 5.35rem);
  line-height: .97;
  letter-spacing: -.047em;
  text-wrap: balance;
}

.sp-idea-detail__lead {
  grid-area: lead;
  max-width: 520px;
  margin: 4px 0 22px;
  color: #514b43;
  font-size: 1.02rem;
  line-height: 1.62;
}

.sp-idea-detail__hero-actions {
  grid-area: actions;
  display: grid;
  gap: 10px;
  width: min(100%, 360px);
}

.sp-idea-detail__hero-actions .sp-btn {
  width: 100%;
  min-height: 52px;
}

.sp-idea-detail__hero-actions .sp-icon {
  width: 16px;
  margin-left: 5px;
}

.sp-idea-detail__honesty {
  grid-area: honesty;
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  max-width: 520px;
  margin: 20px 0 0;
  color: #6f685f;
  font-size: .76rem;
  line-height: 1.5;
}

.sp-idea-detail__honesty .sp-icon {
  width: 18px;
  color: var(--idea-green);
}

.sp-idea-detail__hero-media {
  position: relative;
  width: 100%;
  min-height: clamp(470px, 41vw, 650px);
  margin: 0;
  overflow: hidden;
  background: #d9cbb9;
}

.sp-idea-detail__hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(22, 14, 9, .46));
  pointer-events: none;
}

.sp-idea-detail__hero-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 48%;
}

.sp-idea-detail__hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 26px;
  display: grid;
  gap: 4px;
  width: min(390px, calc(100% - 52px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 15px;
  color: #fff;
  background: rgba(27, 21, 16, .48);
  backdrop-filter: blur(12px);
}

.sp-idea-detail__hero-media figcaption span {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sp-idea-detail__hero-media figcaption strong {
  font-size: 1rem;
}

.sp-idea-detail__specs {
  padding: 0 0 18px;
}

.sp-idea-detail__spec-grid {
  display: grid;
  grid-template-columns: .85fr repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--idea-line);
  border-radius: 18px;
  background: var(--idea-line);
  box-shadow: 0 13px 38px rgba(55, 41, 26, .045);
}

.sp-idea-spec {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  min-height: 92px;
  padding: 15px 16px;
  color: inherit;
  background: var(--idea-card);
}

.sp-idea-spec:hover {
  background: #fbf6ee;
}

.sp-idea-spec img,
.sp-idea-spec > span {
  width: 54px;
  height: 54px;
  border-radius: 11px;
  object-fit: cover;
  background: #f0e7dc;
}

.sp-idea-spec > span {
  display: grid;
  place-items: center;
  color: var(--idea-green);
}

.sp-idea-spec > span .sp-icon,
.sp-idea-spec > .sp-icon {
  width: 24px;
  height: 24px;
}

.sp-idea-spec div {
  min-width: 0;
}

.sp-idea-spec small,
.sp-idea-spec strong,
.sp-idea-spec div > span {
  display: block;
}

.sp-idea-spec small {
  margin-bottom: 3px;
  color: var(--idea-muted);
  font-size: .65rem;
}

.sp-idea-spec strong {
  overflow: hidden;
  font-size: .88rem;
  text-overflow: ellipsis;
}

.sp-idea-spec div > span {
  overflow: hidden;
  margin-top: 3px;
  color: var(--idea-muted);
  font-size: .66rem;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.sp-idea-spec--intro {
  grid-template-columns: 38px minmax(0, 1fr);
}

.sp-idea-spec--intro > span {
  width: 38px;
  height: 38px;
  border: 1px solid #d9e4dc;
  background: #f5faf7;
}

.sp-idea-spec--intro > span .sp-icon {
  width: 19px;
}

.sp-idea-detail__section-head {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}

.sp-idea-detail__section-head h2 {
  margin: 3px 0 0;
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.sp-idea-detail__section-head > p {
  max-width: 620px;
  margin: 0;
  color: var(--idea-muted);
  line-height: 1.65;
}

.sp-idea-detail__why {
  padding-top: 62px;
  padding-bottom: 62px;
}

.sp-idea-detail__why-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--idea-line);
  border-radius: var(--idea-radius);
  background: var(--idea-card);
  box-shadow: 0 20px 60px rgba(55, 41, 26, .065);
}

.sp-idea-detail__why-media {
  min-height: 500px;
  margin: 0;
  overflow: hidden;
}

.sp-idea-detail__why-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.sp-idea-detail__why-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 74px);
  background:
    radial-gradient(circle at 94% 14%, rgba(185, 137, 84, .08), transparent 12rem),
    var(--idea-card);
}

.sp-idea-detail__why-copy h2 {
  max-width: 720px;
  margin: 5px 0 28px;
  font-size: clamp(2.6rem, 4.4vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.sp-idea-detail__why-copy ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sp-idea-detail__why-copy li {
  display: grid;
  grid-template-columns: 23px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: #4c4740;
  line-height: 1.6;
}

.sp-idea-detail__why-copy li .sp-icon {
  width: 20px;
  margin-top: 2px;
  color: var(--idea-green);
}

.sp-idea-detail__gallery-section {
  padding-top: 24px;
}

.sp-idea-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(180px, 15vw, 250px);
  gap: 14px;
}

.sp-idea-gallery__item {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #ddcbb5;
  cursor: zoom-in;
}

.sp-idea-gallery__item::after {
  content: '';
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(180deg, transparent, rgba(23, 15, 10, .58));
}

.sp-idea-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.sp-idea-gallery__item:hover img {
  transform: scale(1.035);
}

.sp-idea-gallery__item span {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  text-align: left;
}

.sp-idea-gallery__item--1 {
  grid-column: span 2;
  grid-row: span 2;
}

.sp-idea-gallery__item--4 {
  grid-row: span 2;
}

.sp-idea-gallery__item:nth-child(8n + 7) {
  grid-column: span 2;
}

.sp-idea-detail__repeat {
  padding-top: 38px;
  padding-bottom: 54px;
}

.sp-idea-repeat {
  display: grid;
  grid-template-columns: minmax(250px, .75fr) minmax(0, 1.45fr);
  gap: 28px 42px;
  padding: 34px;
  border: 1px solid var(--idea-line);
  border-radius: 22px;
  background: linear-gradient(135deg, #fffdf9 0%, #f8efe3 100%);
  box-shadow: 0 22px 58px rgba(55, 41, 26, .075);
}

.sp-idea-repeat__intro {
  grid-row: 1 / 3;
  padding-right: 18px;
  border-right: 1px solid var(--idea-line);
}

.sp-idea-repeat__intro h2 {
  margin: 6px 0 15px;
  font-size: clamp(2.5rem, 3.8vw, 4rem);
  line-height: .98;
}

.sp-idea-repeat__intro p:last-child {
  margin: 0;
  color: var(--idea-muted);
  line-height: 1.65;
}

.sp-idea-repeat__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sp-idea-repeat__items > * {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  gap: 2px 12px;
  min-width: 0;
  padding: 14px;
  border: 1px solid #eadfd1;
  border-radius: 14px;
  color: inherit;
  background: rgba(255, 255, 255, .72);
}

.sp-idea-repeat__items img {
  grid-row: 1 / 4;
  width: 58px;
  height: 58px;
  border-radius: 10px;
  object-fit: cover;
}

.sp-idea-repeat__items small {
  color: var(--idea-muted);
  font-size: .64rem;
}

.sp-idea-repeat__items strong {
  font-size: .9rem;
}

.sp-idea-repeat__items span {
  overflow: hidden;
  color: var(--idea-muted);
  font-size: .67rem;
  line-height: 1.35;
}

.sp-idea-repeat__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.sp-idea-repeat__actions .sp-btn {
  width: 100%;
  min-height: 50px;
}

.sp-btn--accent {
  border-color: var(--idea-accent) !important;
  color: #fff !important;
  background: var(--idea-accent) !important;
}

.sp-btn--accent:hover {
  border-color: #9f482c !important;
  background: #9f482c !important;
}

.sp-idea-detail__adapt {
  padding-top: 50px;
  background: #fffdf9;
}

.sp-idea-adapt-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sp-idea-adapt-grid article {
  overflow: hidden;
  border: 1px solid var(--idea-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(55, 41, 26, .045);
}

.sp-idea-adapt-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.sp-idea-adapt-grid article > div {
  padding: 21px;
}

.sp-idea-adapt-grid h3 {
  margin: 0 0 10px;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
}

.sp-idea-adapt-grid p {
  min-height: 84px;
  margin: 0 0 16px;
  color: var(--idea-muted);
  font-size: .82rem;
  line-height: 1.55;
}

.sp-idea-adapt-grid a {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  color: var(--idea-green);
  font-size: .74rem;
  font-weight: 800;
}

.sp-idea-adapt-grid a .sp-icon {
  width: 14px;
}


.sp-idea-detail__editorial {
  padding-top: 62px;
  background: #fffdf9;
}

.sp-idea-editorial-card {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, .58fr);
  overflow: hidden;
  border: 1px solid var(--idea-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(55, 41, 26, .055);
}

.sp-idea-detail__longread {
  max-width: none !important;
  padding: clamp(30px, 4vw, 56px);
  columns: 2 330px;
  column-gap: 48px;
}

.sp-idea-detail__longread > * {
  break-inside: avoid;
}

.sp-idea-detail__longread h2,
.sp-idea-detail__longread h3 {
  margin-top: .3em;
  margin-bottom: .5em;
}

.sp-idea-detail__longread h2 {
  font-size: clamp(2rem, 2.7vw, 3rem);
}

.sp-idea-detail__longread p,
.sp-idea-detail__longread li {
  color: #514c45;
  font-size: .95rem;
  line-height: 1.75;
}

.sp-idea-editorial-gallery {
  min-width: 0;
  padding: 28px;
  border-left: 1px solid var(--idea-line);
  background: linear-gradient(180deg, #f8f1e7 0%, #f4eadc 100%);
}

.sp-idea-editorial-gallery__head {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
}

.sp-idea-editorial-gallery__head .sp-eyebrow {
  margin: 0 0 5px;
}

.sp-idea-editorial-gallery__head h3 {
  margin: 0;
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.75rem, 2.3vw, 2.45rem);
  font-weight: 500;
  line-height: 1.02;
}

.sp-idea-editorial-gallery__head > span {
  color: var(--idea-muted);
  font-size: .72rem;
  line-height: 1.45;
}

.sp-idea-editorial-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 10px;
}

.sp-idea-editorial-gallery__item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #d8c7b2;
  cursor: zoom-in;
  isolation: isolate;
}

.sp-idea-editorial-gallery__item::after {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(25, 17, 11, .62));
  pointer-events: none;
}

.sp-idea-editorial-gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 148px;
  object-fit: cover;
  transition: transform .42s ease, filter .42s ease;
}

.sp-idea-editorial-gallery__item:hover img,
.sp-idea-editorial-gallery__item:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

.sp-idea-editorial-gallery__item--1,
.sp-idea-editorial-gallery__item--6 {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.sp-idea-editorial-gallery__item:not(.sp-idea-editorial-gallery__item--1):not(.sp-idea-editorial-gallery__item--6) {
  aspect-ratio: 1 / 1;
}

.sp-idea-editorial-gallery__zoom {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
  color: #fff;
  background: rgba(32, 24, 18, .62);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.sp-idea-editorial-gallery__caption {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 11px;
  left: 12px;
  color: #fff;
  font-size: .67rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
}

.sp-idea-detail__request {
  padding-top: 70px;
  background: #fffdf9;
}

.sp-idea-request {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--idea-line);
  border-radius: 24px;
  background: linear-gradient(145deg, #f6eadb 0%, #fffdf9 52%, #fff 100%);
  box-shadow: 0 22px 64px rgba(55, 41, 26, .08);
}

.sp-idea-request__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
  border-right: 1px solid var(--idea-line);
}

.sp-idea-request__intro h2 {
  margin: 5px 0 16px;
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  line-height: .98;
}

.sp-idea-request__intro > p:not(.sp-eyebrow) {
  margin: 0 0 26px;
  color: var(--idea-muted);
  line-height: 1.68;
}

.sp-idea-request__promise {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(23, 79, 54, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .68);
}

.sp-idea-request__promise > .sp-icon {
  width: 23px;
  margin: 8px auto 0;
  color: var(--idea-green);
}

.sp-idea-request__promise strong,
.sp-idea-request__promise span,
.sp-idea-request__promise a {
  display: block;
}

.sp-idea-request__promise span {
  margin: 4px 0 7px;
  color: var(--idea-muted);
  font-size: .76rem;
  line-height: 1.45;
}

.sp-idea-request__promise a {
  color: var(--idea-green);
  font-weight: 800;
}

.sp-idea-request__form-wrap {
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, .72);
}

.sp-idea-request__notice {
  margin-bottom: 16px;
  padding: 13px 15px;
  border-radius: 11px;
  font-size: .83rem;
  line-height: 1.45;
}

.sp-idea-request__notice.is-success {
  border: 1px solid #bed8c6;
  color: #21583c;
  background: #edf8f0;
}

.sp-idea-request__notice.is-error {
  border: 1px solid #e8c5bb;
  color: #813a28;
  background: #fff2ee;
}

.sp-idea-request__form {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 18px;
}

.sp-idea-request__upload {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 260px;
  padding: 24px;
  border: 1px dashed #cdbba7;
  border-radius: 16px;
  text-align: center;
  background: #fffaf3;
  cursor: pointer;
}

.sp-idea-request__upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.sp-idea-request__upload > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--idea-accent);
  background: #fae9df;
}

.sp-idea-request__upload .sp-icon {
  width: 25px;
}

.sp-idea-request__upload strong {
  max-width: 170px;
  font-size: .92rem;
}

.sp-idea-request__upload small {
  margin-top: 7px;
  color: var(--idea-muted);
  font-size: .68rem;
}

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

.sp-idea-request__fields label {
  display: grid;
  gap: 6px;
}

.sp-idea-request__fields label > span {
  color: #4d4841;
  font-size: .72rem;
  font-weight: 750;
}

.sp-idea-request__fields input,
.sp-idea-request__fields textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #ded4c8;
  border-radius: 10px;
  color: var(--idea-ink);
  background: #fff;
}

.sp-idea-request__comment {
  grid-column: 1 / -1;
}

.sp-idea-request__comment textarea {
  min-height: 86px;
}

.sp-idea-request__consent,
.sp-idea-request__form > .sp-btn {
  grid-column: 2;
}

.sp-idea-request__consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--idea-muted);
  font-size: .71rem;
}

.sp-idea-request__consent input {
  margin-top: 2px;
}

.sp-idea-request__form > .sp-btn {
  width: 100%;
  min-height: 52px;
}

.sp-idea-detail__similar {
  padding-top: 70px;
  background: #fffdf9;
}

.sp-idea-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sp-idea-related-card {
  overflow: hidden;
  border: 1px solid var(--idea-line);
  border-radius: 17px;
  color: inherit;
  background: #fff;
  box-shadow: 0 12px 34px rgba(55, 41, 26, .045);
  transition: transform .22s ease, box-shadow .22s ease;
}

.sp-idea-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(55, 41, 26, .09);
}

.sp-idea-related-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e6d8c7;
}

.sp-idea-related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.sp-idea-related-card:hover img {
  transform: scale(1.035);
}

.sp-idea-related-card__media em {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(23, 79, 54, .9);
  font-size: .64rem;
  font-style: normal;
  font-weight: 800;
}

.sp-idea-related-card__body {
  display: grid;
  gap: 13px;
  padding: 18px;
}

.sp-idea-related-card__body strong {
  min-height: 48px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.15rem;
  line-height: 1.18;
}

.sp-idea-related-card__body small {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  color: var(--idea-green);
  font-weight: 800;
}

.sp-idea-related-card__body .sp-icon {
  width: 14px;
}

.sp-idea-detail__faq {
  padding-top: 64px;
  padding-bottom: 74px;
  background: #fffdf9;
}

.sp-idea-detail__faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: 56px;
  align-items: start;
}

.sp-idea-detail__faq-grid h2 {
  margin: 5px 0 15px;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1;
}

.sp-idea-detail__faq-grid > div:first-child > p:last-child {
  color: var(--idea-muted);
  line-height: 1.65;
}

.sp-idea-detail__faq-list {
  border-top: 1px solid var(--idea-line);
}

.sp-idea-detail__faq-list details {
  border-bottom: 1px solid var(--idea-line);
}

.sp-idea-detail__faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 19px 0;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.sp-idea-detail__faq-list summary::-webkit-details-marker {
  display: none;
}

.sp-idea-detail__faq-list summary span {
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform .2s ease;
}

.sp-idea-detail__faq-list details[open] summary span {
  transform: rotate(45deg);
}

.sp-idea-detail__faq-list details p {
  max-width: 760px;
  margin: -4px 0 20px;
  color: var(--idea-muted);
  line-height: 1.65;
}

.sp-idea-lightbox[hidden] {
  display: none;
}

.sp-idea-lightbox {
  position: fixed;
  z-index: 100000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
}

.sp-idea-lightbox__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(20, 15, 11, .82);
  cursor: zoom-out;
}

.sp-idea-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, 94vw);
  max-height: 92vh;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}

.sp-idea-lightbox__dialog img {
  display: block;
  width: 100%;
  min-height: clamp(300px, 58vh, 620px);
  max-height: calc(92vh - 70px);
  border-radius: 12px;
  object-fit: contain;
  background: #eee5d9;
}

.sp-idea-lightbox__meta {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 9px 8px 1px;
}

.sp-idea-lightbox__meta p {
  margin: 0;
  color: var(--idea-muted);
  font-size: .8rem;
}

.sp-idea-lightbox__meta span {
  flex: 0 0 auto;
  color: #7c736a;
  font-size: .74rem;
  font-weight: 800;
}

.sp-idea-lightbox__close {
  position: absolute;
  z-index: 4;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  color: #fff;
  background: rgba(25, 18, 13, .62);
  font-size: 1.65rem;
  cursor: pointer;
}

.sp-idea-lightbox__nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0 0 4px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 50%;
  color: #fff;
  background: rgba(25, 18, 13, .64);
  font-size: 2.35rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.sp-idea-lightbox__nav:hover,
.sp-idea-lightbox__nav:focus-visible,
.sp-idea-lightbox__close:hover,
.sp-idea-lightbox__close:focus-visible {
  background: rgba(25, 18, 13, .86);
}

.sp-idea-lightbox__nav--prev {
  left: 24px;
}

.sp-idea-lightbox__nav--next {
  right: 24px;
}

.sp-idea-lightbox__nav[hidden] {
  display: none;
}

body.sp-idea-lightbox-open {
  overflow: hidden;
}

.sp-idea-mobile-cta {
  display: none;
}

@media (max-width: 1240px) {
  .sp-idea-detail .sp-container {
    width: min(1180px, calc(100% - 36px));
  }

  .sp-idea-detail__hero-copy {
    grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
    column-gap: 38px;
    padding: 44px;
  }

  .sp-idea-detail__hero-copy h1 {
    font-size: clamp(3.15rem, 4.7vw, 4.65rem);
  }

  .sp-idea-detail__hero-media {
    min-height: clamp(430px, 46vw, 590px);
  }

  .sp-idea-detail__spec-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sp-idea-adapt-grid,
  .sp-idea-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .sp-idea-editorial-card {
    grid-template-columns: 1fr;
  }

  .sp-idea-editorial-gallery {
    border-top: 1px solid var(--idea-line);
    border-left: 0;
  }

  .sp-idea-editorial-gallery__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sp-idea-editorial-gallery__item--1,
  .sp-idea-editorial-gallery__item--6 {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }

  .sp-idea-editorial-gallery__item:not(.sp-idea-editorial-gallery__item--1):not(.sp-idea-editorial-gallery__item--6) {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 980px) {
  .sp-idea-detail__why-grid,
  .sp-idea-request,
  .sp-idea-detail__faq-grid {
    grid-template-columns: 1fr;
  }

  .sp-idea-detail__hero-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "lead"
      "actions"
      "honesty";
    padding: 40px;
  }

  .sp-idea-detail__hero-copy h1 {
    max-width: 840px;
    margin-bottom: 22px;
    font-size: clamp(3rem, 7vw, 4.6rem);
  }

  .sp-idea-detail__lead,
  .sp-idea-detail__honesty {
    max-width: 720px;
  }

  .sp-idea-detail__hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 600px);
  }

  .sp-idea-detail__hero-media {
    min-height: clamp(390px, 62vw, 540px);
  }

  .sp-idea-detail__why-media,
  .sp-idea-detail__why-media img {
    min-height: 410px;
  }

  .sp-idea-detail__section-head {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .sp-idea-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .sp-idea-gallery__item,
  .sp-idea-gallery__item--1,
  .sp-idea-gallery__item--4 {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .sp-idea-repeat {
    grid-template-columns: 1fr;
  }

  .sp-idea-repeat__intro {
    grid-row: auto;
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--idea-line);
  }

  .sp-idea-request__intro {
    border-right: 0;
    border-bottom: 1px solid var(--idea-line);
  }
}

@media (max-width: 720px) {
  body.single-stavros_project {
    padding-bottom: 74px;
  }

  .sp-idea-detail .sp-container {
    width: min(100% - 24px, 680px);
  }

  .sp-idea-detail__breadcrumbs {
    padding-top: 13px;
    font-size: .68rem;
  }

  .sp-idea-detail__hero {
    padding-top: 12px;
  }

  .sp-idea-detail__hero-grid {
    border-radius: 18px;
  }

  .sp-idea-detail__hero-copy {
    padding: 26px 22px 28px;
  }

  .sp-idea-detail__hero-copy .sp-eyebrow {
    margin-bottom: 12px;
  }

  .sp-idea-detail__hero-copy h1 {
    margin-bottom: 16px;
    font-size: clamp(2.25rem, 10.8vw, 3.35rem);
    line-height: 1;
  }

  .sp-idea-detail__lead {
    font-size: .93rem;
  }

  .sp-idea-detail__hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .sp-idea-detail__hero-actions .sp-btn {
    width: 100%;
  }

  .sp-idea-detail__hero-media {
    min-height: 300px;
  }

  .sp-idea-detail__hero-media figcaption {
    right: 13px;
    bottom: 13px;
    left: 13px;
    width: calc(100% - 26px);
    padding: 13px 14px;
  }

  .sp-idea-detail__spec-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sp-idea-spec {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 84px;
    padding: 12px;
  }

  .sp-idea-spec img,
  .sp-idea-spec > span {
    width: 44px;
    height: 44px;
  }

  .sp-idea-detail__why,
  .sp-idea-detail__gallery-section,
  .sp-idea-detail__adapt,
  .sp-idea-detail__editorial,
  .sp-idea-detail__request,
  .sp-idea-detail__similar,
  .sp-idea-detail__faq {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .sp-idea-detail__why-grid {
    border-radius: 18px;
  }

  .sp-idea-detail__why-media,
  .sp-idea-detail__why-media img {
    min-height: 310px;
  }

  .sp-idea-detail__why-copy {
    padding: 28px 22px;
  }

  .sp-idea-detail__why-copy h2,
  .sp-idea-detail__section-head h2,
  .sp-idea-request__intro h2,
  .sp-idea-detail__faq-grid h2 {
    font-size: clamp(2.3rem, 10vw, 3.3rem);
  }

  .sp-idea-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sp-idea-gallery__item {
    aspect-ratio: 16 / 10;
    border-radius: 13px;
  }

  .sp-idea-repeat {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .sp-idea-repeat__items,
  .sp-idea-repeat__actions,
  .sp-idea-adapt-grid,
  .sp-idea-related-grid {
    grid-template-columns: 1fr;
  }

  .sp-idea-adapt-grid p {
    min-height: 0;
  }

  .sp-idea-editorial-card {
    border-radius: 17px;
  }

  .sp-idea-detail__longread {
    padding: 24px 20px;
    columns: auto;
  }

  .sp-idea-editorial-gallery {
    padding: 22px 18px;
  }

  .sp-idea-editorial-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sp-idea-editorial-gallery__item--1,
  .sp-idea-editorial-gallery__item--6 {
    grid-column: 1 / -1;
  }

  .sp-idea-editorial-gallery__item img {
    min-height: 128px;
  }

  .sp-idea-lightbox {
    padding: 12px;
  }

  .sp-idea-lightbox__dialog {
    width: 100%;
    padding: 8px;
    border-radius: 14px;
  }

  .sp-idea-lightbox__dialog img {
    min-height: 52vh;
  }

  .sp-idea-lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }

  .sp-idea-lightbox__nav--prev {
    left: 14px;
  }

  .sp-idea-lightbox__nav--next {
    right: 14px;
  }

  .sp-idea-lightbox__close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .sp-idea-request {
    border-radius: 18px;
  }

  .sp-idea-request__intro,
  .sp-idea-request__form-wrap {
    padding: 26px 20px;
  }

  .sp-idea-request__form {
    grid-template-columns: 1fr;
  }

  .sp-idea-request__upload {
    min-height: 190px;
  }

  .sp-idea-request__fields {
    grid-template-columns: 1fr;
  }

  .sp-idea-request__comment,
  .sp-idea-request__consent,
  .sp-idea-request__form > .sp-btn {
    grid-column: 1;
  }

  .sp-idea-detail__faq-grid {
    gap: 22px;
  }

  .sp-idea-mobile-cta {
    position: fixed;
    z-index: 9999;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid #ded4c8;
    background: rgba(255, 253, 249, .95);
    box-shadow: 0 -10px 30px rgba(40, 31, 22, .1);
    backdrop-filter: blur(14px);
  }

  .sp-idea-mobile-cta .sp-btn {
    min-height: 46px;
    padding-inline: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sp-idea-gallery__item img,
  .sp-idea-related-card,
  .sp-idea-related-card img,
  .sp-idea-detail__faq-list summary span {
    transition: none !important;
  }
}

/*
 * v2.13.3 — visual editorial funnel.
 * More project photography inside the practical content, connected PAN/OPAN
 * micro-conversions, selectable adaptation and a shorter request form.
 */

.sp-idea-detail__sample-nudge {
  padding: 0 0 30px;
}

.sp-idea-sample-nudge {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border: 1px solid rgba(189, 91, 58, .22);
  border-radius: 18px;
  background: linear-gradient(120deg, #fffaf3, #f7eadc);
  box-shadow: 0 14px 36px rgba(55, 41, 26, .055);
}

.sp-idea-sample-nudge__copy {
  display: grid;
  gap: 5px;
  max-width: 820px;
}

.sp-idea-sample-nudge__copy .sp-eyebrow {
  margin: 0 0 2px;
}

.sp-idea-sample-nudge__copy strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 500;
  line-height: 1.12;
}

.sp-idea-sample-nudge__copy span {
  color: var(--idea-muted);
  font-size: .86rem;
  line-height: 1.55;
}

.sp-idea-sample-nudge__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.sp-idea-repeat__note {
  grid-column: 2;
  margin: -14px 0 0;
  color: var(--idea-muted);
  font-size: .7rem;
  line-height: 1.45;
}

.sp-idea-adapt-grid article {
  position: relative;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.sp-idea-adapt-grid article.is-selected {
  border-color: var(--idea-green);
  box-shadow: 0 18px 44px rgba(23, 79, 54, .14);
  transform: translateY(-3px);
}

.sp-idea-adapt-grid article.is-selected::after {
  content: 'Выбрано';
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--idea-green);
  font-size: .62rem;
  font-weight: 800;
}

.sp-idea-adapt-grid button {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 0;
  border: 0;
  color: var(--idea-green);
  background: transparent;
  font-size: .74rem;
  font-weight: 800;
  cursor: pointer;
}

.sp-idea-adapt-grid button:hover,
.sp-idea-adapt-grid button:focus-visible {
  color: var(--idea-accent);
}

.sp-idea-adapt-grid button .sp-icon {
  width: 14px;
}

.sp-idea-adapt-selection {
  width: fit-content;
  margin: 20px 0 0;
  padding: 10px 14px;
  border-radius: 999px;
  color: #174f36;
  background: #edf6f0;
  font-size: .75rem;
  font-weight: 800;
}

.sp-idea-detail__editorial {
  padding-bottom: 70px;
}

.sp-idea-story {
  display: grid;
  gap: 22px;
}

.sp-idea-story__chapter {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--idea-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 15px 42px rgba(55, 41, 26, .052);
}

.sp-idea-story__chapter--reverse .sp-idea-story__copy {
  order: 2;
}

.sp-idea-story__chapter--reverse .sp-idea-story__visual {
  order: 1;
}

.sp-idea-story__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
}

.sp-idea-story__number {
  position: absolute;
  top: 26px;
  right: 30px;
  color: rgba(189, 91, 58, .23);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
}

.sp-idea-story__copy h3 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 0 20px;
  font-size: clamp(2.25rem, 3.35vw, 4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.sp-idea-story__text {
  max-width: 680px !important;
}

.sp-idea-story__text p,
.sp-idea-story__text li {
  color: #514c45;
  font-size: .98rem;
  line-height: 1.78;
}

.sp-idea-story__text p:first-child {
  margin-top: 0;
}

.sp-idea-story__text p:last-child,
.sp-idea-story__text ul:last-child {
  margin-bottom: 0;
}

.sp-idea-story__visual {
  position: relative;
  min-width: 0;
  margin: 0;
  background: #ded0be;
}

.sp-idea-story__visual > button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.sp-idea-story__visual > button::after {
  content: '';
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(180deg, transparent, rgba(24, 16, 11, .62));
}

.sp-idea-story__visual img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  transition: transform .48s ease, filter .48s ease;
}

.sp-idea-story__visual:hover img {
  filter: saturate(1.04);
  transform: scale(1.025);
}

.sp-idea-story__zoom {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  color: #fff;
  background: rgba(28, 20, 14, .58);
  font-size: 1.55rem;
  font-weight: 300;
  backdrop-filter: blur(9px);
}

.sp-idea-story__visual figcaption {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  gap: 12px;
  align-items: end;
  justify-content: space-between;
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  pointer-events: none;
}

.sp-idea-story__visual figcaption small {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, .72);
  font-size: .62rem;
  font-weight: 500;
}

.sp-idea-story__product-link {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--idea-green);
  border-radius: 0 12px 12px 0;
  background: #f2f7f3;
}

.sp-idea-story__product-link strong {
  font-size: .84rem;
}

.sp-idea-story__product-link a {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  color: var(--idea-green);
  font-size: .74rem;
  font-weight: 800;
}

.sp-idea-story__product-link .sp-icon {
  width: 14px;
}

.sp-idea-story__conversion {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 26px 30px;
  border: 1px solid rgba(189, 91, 58, .22);
  border-radius: 18px;
  background: linear-gradient(110deg, #fbefe4, #fffaf4);
}

.sp-idea-story__conversion .sp-eyebrow {
  margin: 0 0 5px;
}

.sp-idea-story__conversion strong {
  display: block;
  max-width: 760px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.18;
}

.sp-idea-story__final-cta {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 32px 36px;
  border: 1px solid rgba(23, 79, 54, .19);
  border-radius: 20px;
  background: linear-gradient(120deg, #edf4ee, #fffdf9);
}

.sp-idea-story__final-cta h3 {
  margin: 4px 0 8px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
}

.sp-idea-story__final-cta p:last-child {
  max-width: 780px;
  margin: 0;
  color: var(--idea-muted);
}

.sp-idea-request__config {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -10px 0 22px;
}

.sp-idea-request__config span {
  padding: 7px 10px;
  border: 1px solid #dfd4c7;
  border-radius: 999px;
  color: #5b544b;
  background: rgba(255,255,255,.72);
  font-size: .66rem;
  font-weight: 800;
}

.sp-idea-request__more {
  grid-column: 1 / -1;
  border: 1px solid #e1d7cb;
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
}

.sp-idea-request__more summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  color: var(--idea-green);
  font-size: .74rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.sp-idea-request__more summary::-webkit-details-marker {
  display: none;
}

.sp-idea-request__more[open] summary span {
  transform: rotate(45deg);
}

.sp-idea-request__more > div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 12px;
  padding: 0 14px 14px;
}

.sp-idea-request__more label {
  display: grid;
  gap: 6px;
}

.sp-idea-request__more label > span {
  color: #4d4841;
  font-size: .72rem;
  font-weight: 750;
}

.sp-idea-request__more input,
.sp-idea-request__more textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #ded4c8;
  border-radius: 10px;
  color: var(--idea-ink);
  background: #fff;
}

.sp-idea-request__more textarea {
  min-height: 72px;
}

.sp-idea-request__submit {
  grid-column: 2;
  display: grid;
  gap: 8px;
}

.sp-idea-request__submit .sp-btn {
  width: 100%;
  min-height: 52px;
}

.sp-idea-request__submit small {
  color: var(--idea-muted);
  font-size: .66rem;
  line-height: 1.45;
}

.sp-idea-detail__trust {
  padding: 0 0 18px;
  background: #fffdf9;
}

.sp-idea-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--idea-line);
  border-radius: 16px;
  background: #fff;
}

.sp-idea-trust-strip > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 19px 20px;
  border-right: 1px solid var(--idea-line);
}

.sp-idea-trust-strip > div:last-child {
  border-right: 0;
}

.sp-idea-trust-strip .sp-icon {
  width: 25px;
  color: var(--idea-green);
}

.sp-idea-trust-strip strong,
.sp-idea-trust-strip small {
  display: block;
}

.sp-idea-trust-strip strong {
  font-size: .78rem;
}

.sp-idea-trust-strip small {
  margin-top: 3px;
  color: var(--idea-muted);
  font-size: .65rem;
  line-height: 1.35;
}

.sp-idea-related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sp-idea-related-card__media {
  aspect-ratio: 16 / 9;
}

.sp-idea-related-card__body {
  padding: 22px;
}

.sp-idea-related-card__body strong {
  min-height: 0;
  font-size: clamp(1.28rem, 1.6vw, 1.65rem);
}

.sp-idea-related-card__body em {
  color: var(--idea-muted);
  font-size: .7rem;
  font-style: normal;
  line-height: 1.4;
}

.sp-idea-detail__sample-final {
  padding-top: 32px;
  padding-bottom: 82px;
}

.sp-idea-sample-final {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 1px solid var(--idea-line);
  border-radius: 24px;
  background: linear-gradient(125deg, #f0dfca, #fffaf3 62%);
  box-shadow: 0 22px 62px rgba(55, 41, 26, .08);
}

.sp-idea-sample-final figure {
  min-height: 430px;
  margin: 0;
  overflow: hidden;
}

.sp-idea-sample-final figure img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.sp-idea-sample-final > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 68px);
}

.sp-idea-sample-final h2 {
  margin: 6px 0 15px;
  font-size: clamp(2.55rem, 4vw, 4.5rem);
  line-height: .98;
}

.sp-idea-sample-final > div > p:not(.sp-eyebrow) {
  max-width: 760px;
  color: var(--idea-muted);
  line-height: 1.68;
}

.sp-idea-sample-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.sp-idea-sample-final ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.sp-idea-sample-final li {
  position: relative;
  padding-left: 17px;
  color: #5a534b;
  font-size: .72rem;
  font-weight: 700;
}

.sp-idea-sample-final li::before {
  content: '';
  position: absolute;
  top: .45em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--idea-green);
}

.sp-idea-lightbox__meta > div:first-child small {
  display: block;
  margin-top: 3px;
  color: #827970;
  font-size: .65rem;
}

.sp-idea-lightbox__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sp-idea-lightbox__actions a {
  color: var(--idea-green);
  font-size: .7rem;
  font-weight: 800;
}

.sp-idea-lightbox__actions a:nth-child(2) {
  padding: 7px 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--idea-green);
}

@media (max-width: 1080px) {
  .sp-idea-story__chapter {
    grid-template-columns: 1fr 1fr;
  }

  .sp-idea-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sp-idea-trust-strip > div:nth-child(2) {
    border-right: 0;
  }

  .sp-idea-trust-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--idea-line);
  }
}

@media (max-width: 820px) {
  .sp-idea-sample-nudge,
  .sp-idea-story__conversion,
  .sp-idea-story__final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .sp-idea-sample-nudge__actions {
    width: 100%;
  }

  .sp-idea-sample-nudge__actions .sp-btn {
    flex: 1 1 0;
  }

  .sp-idea-story__chapter,
  .sp-idea-sample-final {
    grid-template-columns: 1fr;
  }

  .sp-idea-story__chapter--reverse .sp-idea-story__copy,
  .sp-idea-story__chapter--reverse .sp-idea-story__visual {
    order: initial;
  }

  .sp-idea-story__visual {
    min-height: 390px;
  }

  .sp-idea-story__visual > button {
    position: absolute;
  }

  .sp-idea-story__visual img {
    min-height: 390px;
  }

  .sp-idea-related-grid {
    grid-template-columns: 1fr;
  }

  .sp-idea-related-card__media {
    aspect-ratio: 16 / 8.5;
  }

  .sp-idea-sample-final figure,
  .sp-idea-sample-final figure img {
    min-height: 340px;
  }
}

@media (max-width: 720px) {
  .sp-idea-detail__sample-nudge {
    padding-bottom: 12px;
  }

  .sp-idea-sample-nudge {
    padding: 20px;
    border-radius: 15px;
  }

  .sp-idea-sample-nudge__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sp-idea-repeat__note {
    grid-column: 1;
    margin-top: 0;
  }

  .sp-idea-story {
    gap: 14px;
  }

  .sp-idea-story__chapter {
    min-height: 0;
    border-radius: 17px;
  }

  .sp-idea-story__copy {
    padding: 28px 21px 30px;
  }

  .sp-idea-story__number {
    top: 18px;
    right: 20px;
    font-size: 3.2rem;
  }

  .sp-idea-story__copy h3 {
    padding-right: 46px;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .sp-idea-story__text p,
  .sp-idea-story__text li {
    font-size: .91rem;
    line-height: 1.68;
  }

  .sp-idea-story__visual,
  .sp-idea-story__visual img {
    min-height: 270px;
  }

  .sp-idea-story__visual figcaption {
    right: 15px;
    bottom: 14px;
    left: 15px;
  }

  .sp-idea-story__visual figcaption small {
    display: none;
  }

  .sp-idea-story__conversion,
  .sp-idea-story__final-cta {
    padding: 22px 20px;
    border-radius: 15px;
  }

  .sp-idea-story__conversion .sp-btn,
  .sp-idea-story__final-cta .sp-btn {
    width: 100%;
  }

  .sp-idea-request__more > div {
    grid-template-columns: 1fr;
  }

  .sp-idea-request__submit,
  .sp-idea-request__consent {
    grid-column: 1;
  }

  .sp-idea-trust-strip {
    grid-template-columns: 1fr;
  }

  .sp-idea-trust-strip > div,
  .sp-idea-trust-strip > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--idea-line);
  }

  .sp-idea-trust-strip > div:last-child {
    border-bottom: 0;
  }

  .sp-idea-related-card__media {
    aspect-ratio: 16 / 10;
  }

  .sp-idea-sample-final {
    border-radius: 18px;
  }

  .sp-idea-sample-final figure,
  .sp-idea-sample-final figure img {
    min-height: 260px;
  }

  .sp-idea-sample-final > div {
    padding: 28px 21px 32px;
  }

  .sp-idea-sample-final h2 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .sp-idea-sample-final__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .sp-idea-lightbox__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .sp-idea-lightbox__actions {
    width: 100%;
    justify-content: space-between;
  }
}

/* v2.13.4 — every idea page uses only its own editorial photographs. */
.sp-idea-detail__why-grid--text-only {
  grid-template-columns: minmax(0, 1fr);
}
.sp-idea-detail__why-grid--text-only .sp-idea-detail__why-copy {
  min-height: 420px;
}
.sp-idea-detail__why-media {
  position: relative;
}
.sp-idea-detail__why-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 10px;
  color: #fff;
  background: rgba(36, 27, 21, .72);
  backdrop-filter: blur(8px);
  font-size: .76rem;
  line-height: 1.35;
}
.sp-idea-adapt-grid__media {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #eee4d7;
  cursor: zoom-in;
}
.sp-idea-adapt-grid__media img {
  transition: transform .4s ease;
}
.sp-idea-adapt-grid__media:hover img,
.sp-idea-adapt-grid__media:focus-visible img {
  transform: scale(1.035);
}
.sp-idea-adapt-card--text-only {
  display: flex;
  min-height: 280px;
  align-items: flex-end;
  background:
    linear-gradient(145deg, rgba(249, 244, 236, .96), rgba(239, 227, 210, .72));
}
.sp-idea-adapt-card--text-only > div {
  width: 100%;
}
.sp-idea-story__chapter--text-only {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
}
.sp-idea-story__chapter--text-only .sp-idea-story__copy {
  max-width: 1000px;
  min-height: 360px;
}
@media (max-width: 760px) {
  .sp-idea-detail__why-grid--text-only .sp-idea-detail__why-copy,
  .sp-idea-story__chapter--text-only .sp-idea-story__copy {
    min-height: 0;
  }
}

/* 2.13.8 — preserved previous illustrations shown only below the main funnel. */
.sp-idea-detail__other-visuals {
  border-top: 1px solid rgba(87, 68, 52, .12);
  background: #f7f1e8;
}
.sp-idea-other-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.sp-idea-other-gallery__item {
  appearance: none;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(88, 67, 50, .16);
  border-radius: 18px;
  background: #fff;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
  box-shadow: 0 12px 34px rgba(59, 43, 31, .06);
}
.sp-idea-other-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease;
}
.sp-idea-other-gallery__item:hover img,
.sp-idea-other-gallery__item:focus-visible img {
  transform: scale(1.035);
}
.sp-idea-other-gallery__item span {
  display: block;
  padding: 13px 15px 15px;
  font-size: 14px;
  line-height: 1.4;
  color: #5f5146;
}
@media (max-width: 900px) {
  .sp-idea-other-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .sp-idea-other-gallery { grid-template-columns: 1fr; gap: 14px; }
}
