:root {
  --iypce-ink: #191918;
  --iypce-paper: #f7f4ee;
  --iypce-paper-deep: #efeae1;
  --iypce-rose: #c79489;
  --iypce-rose-dark: #9f6f66;
  --iypce-muted: #6e6961;
  --iypce-line: rgba(25, 25, 24, 0.14);
}

.iypce-root,
.iypce-root * {
  box-sizing: border-box;
}

.iypce-root {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  color: var(--iypce-ink);
  background: var(--iypce-paper);
  overflow: clip;
}

.iypce-root :is(h1, h2, h3, p, blockquote, figcaption, legend, label, button, a) {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.iypce-root button,
.iypce-root input,
.iypce-root textarea,
.iypce-root select {
  font: inherit;
}

.iypce-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.iypce-kicker {
  margin: 0 0 24px;
  color: var(--iypce-rose-dark);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.iypce-hero {
  position: relative;
  min-height: 720px;
  padding: clamp(76px, 9vw, 138px) 0 clamp(72px, 8vw, 116px);
  background:
    linear-gradient(90deg, var(--iypce-paper) 0 49%, rgba(247, 244, 238, 0.2) 70%),
    var(--iypce-paper);
}

.iypce-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--iypce-line);
  content: "";
}

.iypce-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
  gap: clamp(56px, 7vw, 104px);
  align-items: center;
}

.iypce-hero__copy {
  position: relative;
  z-index: 2;
}

.iypce-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--iypce-ink);
  font-size: clamp(52px, 6.2vw, 92px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.iypce-hero h1 em {
  color: var(--iypce-rose);
  font-weight: 400;
}

.iypce-hero__lead {
  max-width: 610px;
  margin: 32px 0 0;
  color: #58544e;
  font-size: 17px;
  line-height: 1.75;
}

.iypce-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
}

.iypce-button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms cubic-bezier(.2,.8,.2,1), box-shadow 180ms ease;
}

.iypce-button:hover {
  transform: translateY(-2px);
}

.iypce-button:focus-visible,
.iypce-text-link:focus-visible,
.iypce-fragment__button:focus-visible,
.iypce-dialog__close:focus-visible,
.iypce-form :is(input, textarea, button):focus-visible {
  outline: 3px solid rgba(199, 148, 137, 0.55);
  outline-offset: 3px;
}

.iypce-button--dark {
  color: #fff !important;
  background: var(--iypce-ink);
  box-shadow: 0 10px 24px rgba(25, 25, 24, 0.16);
}

.iypce-button--dark:hover {
  color: #fff !important;
  background: #302f2c;
  box-shadow: 0 14px 30px rgba(25, 25, 24, 0.22);
}

.iypce-button--rose {
  color: #fff !important;
  background: var(--iypce-rose-dark);
  box-shadow: 0 10px 24px rgba(159, 111, 102, 0.2);
}

.iypce-button--rose:hover {
  color: #fff !important;
  background: #895b53;
}

.iypce-text-link {
  display: inline-flex;
  padding: 8px 0 6px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--iypce-ink) !important;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-decoration: none !important;
  text-transform: uppercase;
  cursor: pointer;
}

.iypce-text-link span {
  transition: transform 180ms cubic-bezier(.2,.8,.2,1);
}

.iypce-text-link:hover span {
  transform: translateX(4px);
}

.iypce-count {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  max-width: 420px;
  margin: 42px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--iypce-line);
  color: var(--iypce-muted);
  font-size: 13px;
  line-height: 1.45;
}

.iypce-count strong {
  grid-row: 1 / span 2;
  color: var(--iypce-ink);
  font-size: 25px;
  font-weight: 400;
}

.iypce-hero__field {
  position: relative;
  min-height: 540px;
}

.iypce-hero__fragment,
.iypce-placeholder {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: var(--iypce-paper-deep);
  box-shadow: 18px 22px 44px rgba(39, 35, 31, 0.14);
}

.iypce-hero__fragment img,
.iypce-hero__fragment video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iypce-hero__fragment figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 9px 12px;
  color: #fff;
  background: rgba(25, 25, 24, 0.84);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.iypce-hero__fragment--1,
.iypce-placeholder--one {
  inset: 0 19% 23% 0;
}

.iypce-hero__fragment--2,
.iypce-placeholder--two {
  top: 13%;
  right: -4%;
  width: 40%;
  height: 48%;
}

.iypce-hero__fragment--3,
.iypce-placeholder--three {
  right: 2%;
  bottom: 0;
  width: 52%;
  height: 39%;
}

.iypce-placeholder {
  display: grid;
  place-items: center;
  border: 1px solid rgba(25, 25, 24, 0.12);
  background:
    linear-gradient(135deg, transparent 49.6%, rgba(25,25,24,.12) 49.8%, rgba(25,25,24,.12) 50.2%, transparent 50.4%),
    linear-gradient(45deg, transparent 49.6%, rgba(25,25,24,.12) 49.8%, rgba(25,25,24,.12) 50.2%, transparent 50.4%),
    #ebe5db;
}

.iypce-placeholder span {
  padding: 8px 10px;
  color: #6d665e;
  background: rgba(247, 244, 238, 0.88);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.iypce-proof {
  background: var(--iypce-ink);
}

.iypce-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.iypce-proof__grid > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  min-height: 118px;
  padding: 28px clamp(20px, 3vw, 42px);
  align-items: center;
  border-right: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.72);
}

.iypce-proof__grid > div:first-child {
  border-left: 1px solid rgba(255,255,255,.16);
}

.iypce-proof__mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  color: #fff;
}

.iypce-proof p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.iypce-proof strong {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.iypce-gallery-section {
  padding: clamp(90px, 11vw, 154px) 0;
  background: #fff;
}

.iypce-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 64px;
  align-items: end;
  margin-bottom: 54px;
}

.iypce-section-heading h2,
.iypce-share h2 {
  margin: 0;
  color: var(--iypce-ink);
  font-size: clamp(46px, 5.4vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.iypce-section-heading > p {
  max-width: 65ch;
  margin: 0 0 8px;
  color: var(--iypce-muted);
  font-size: 15px;
  line-height: 1.75;
}

.iypce-fragment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.iypce-fragment {
  min-width: 0;
  margin: 0;
}

.iypce-fragment__button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: #fff;
  background: #d9d3ca;
  cursor: zoom-in;
}

.iypce-fragment__media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}

.iypce-fragment__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(16,15,14,.56));
  content: "";
  opacity: .72;
  transition: opacity 240ms ease;
}

.iypce-fragment__media img,
.iypce-fragment__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1), filter 320ms ease;
}

.iypce-fragment__button:hover .iypce-fragment__media img,
.iypce-fragment__button:hover .iypce-fragment__media video {
  transform: scale(1.045);
}

.iypce-fragment__button:hover .iypce-fragment__media::after {
  opacity: 1;
}

.iypce-fragment__caption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.iypce-dialog {
  width: min(1120px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: auto;
  border: 0;
  color: var(--iypce-ink);
  background: var(--iypce-paper);
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}

.iypce-dialog::backdrop {
  background: rgba(18, 17, 16, .82);
  backdrop-filter: blur(6px);
}

.iypce-dialog__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
  min-height: min(720px, calc(100vh - 32px));
}

.iypce-dialog__close {
  position: fixed;
  z-index: 4;
  width: 46px;
  height: 46px;
  margin: 16px 0 0 16px;
  border: 0;
  color: #fff;
  background: rgba(25,25,24,.88);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.iypce-dialog__media {
  display: grid;
  align-content: start;
  gap: 2px;
  background: #111;
}

.iypce-dialog__media figure {
  margin: 0;
}

.iypce-dialog__media :is(img, video) {
  display: block;
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: #111;
}

.iypce-dialog__story {
  position: sticky;
  top: 0;
  align-self: start;
  padding: clamp(52px, 6vw, 82px) clamp(34px, 5vw, 62px);
}

.iypce-dialog__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-bottom: 38px;
}

.iypce-stars {
  color: var(--iypce-rose-dark);
  font-size: 15px;
  letter-spacing: .12em;
}

.iypce-verified {
  padding: 6px 9px;
  color: #354738;
  background: #e6eee7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.iypce-dialog h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.03em;
}

.iypce-dialog__location {
  margin: 18px 0 0;
  color: var(--iypce-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.iypce-dialog blockquote {
  margin: 44px 0 0;
  padding: 0;
  border: 0;
  color: #4f4b45;
  font-size: 22px;
  font-style: normal;
  line-height: 1.55;
}

.iypce-dialog blockquote p {
  margin: 0 0 18px;
}

.iypce-dialog__author {
  margin: 30px 0 0;
  color: var(--iypce-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.iypce-empty {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
  padding: clamp(44px, 7vw, 90px);
  border: 1px solid var(--iypce-line);
  background: var(--iypce-paper);
}

.iypce-empty__frame {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  aspect-ratio: 1;
}

.iypce-empty__frame span {
  position: relative;
  background: #e8e2d8;
}

.iypce-empty__frame span::before,
.iypce-empty__frame span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(25,25,24,.16);
  content: "";
  transform: translate(-50%, -50%);
}

.iypce-empty__frame span::before {
  width: 42%;
  height: 1px;
}

.iypce-empty__frame span::after {
  width: 1px;
  height: 42%;
}

.iypce-empty h3 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.03em;
}

.iypce-empty p:not(.iypce-kicker) {
  max-width: 58ch;
  margin: 24px 0 32px;
  color: var(--iypce-muted);
  font-size: 15px;
  line-height: 1.75;
}

.iypce-share {
  padding: clamp(92px, 11vw, 158px) 0;
  background: var(--iypce-paper-deep);
}

.iypce-share__grid {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: clamp(64px, 9vw, 132px);
  align-items: start;
}

.iypce-share__intro {
  position: sticky;
  top: 120px;
}

.iypce-share__intro > p:not(.iypce-kicker, .iypce-privacy-note) {
  max-width: 52ch;
  margin: 28px 0 0;
  color: var(--iypce-muted);
  font-size: 15px;
  line-height: 1.75;
}

.iypce-share__steps {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--iypce-line);
}

.iypce-share__steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--iypce-line);
}

.iypce-share__steps li > span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid var(--iypce-line);
  border-radius: 50%;
  color: var(--iypce-rose-dark);
  font-size: 14px;
}

.iypce-share__steps p {
  margin: 0;
  color: var(--iypce-muted);
  font-size: 12px;
  line-height: 1.5;
}

.iypce-share__steps strong {
  color: var(--iypce-ink);
  font-size: 13px;
  font-weight: 600;
}

.iypce-privacy-note {
  margin: 26px 0 0;
  padding: 18px 20px;
  color: #4c4741;
  background: rgba(255,255,255,.56);
  font-size: 12px;
  line-height: 1.65;
}

.iypce-form-wrap {
  min-width: 0;
  padding: clamp(28px, 5vw, 62px);
  background: #fff;
  box-shadow: 18px 24px 50px rgba(47, 42, 37, .11);
}

.iypce-alert {
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 1px solid;
  font-size: 13px;
  line-height: 1.55;
}

.iypce-alert strong {
  display: block;
  margin-bottom: 4px;
}

.iypce-alert p {
  margin: 0;
}

.iypce-alert--success {
  border-color: #9bb59e;
  color: #253b29;
  background: #edf4ee;
}

.iypce-alert--error {
  border-color: #ca9991;
  color: #5d2821;
  background: #faeeec;
}

.iypce-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.iypce-form__step > legend {
  display: flex;
  width: 100%;
  margin: 0 0 38px;
  align-items: center;
  gap: 15px;
  color: var(--iypce-ink);
  font-size: 30px;
  line-height: 1.2;
}

.iypce-form__step > legend span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--iypce-line);
  border-radius: 50%;
  color: var(--iypce-rose-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.iypce-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 22px;
}

.iypce-field {
  display: grid;
  gap: 9px;
  min-width: 0;
  margin: 0;
}

.iypce-field > span,
.iypce-rating > legend {
  color: #2f2d29;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.4;
}

.iypce-field b,
.iypce-rating b,
.iypce-consent b {
  color: var(--iypce-rose-dark);
}

.iypce-field input,
.iypce-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid #bdb7ad;
  border-radius: 0;
  color: var(--iypce-ink);
  background: transparent;
  box-shadow: none;
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 160ms ease;
}

.iypce-field textarea {
  min-height: 130px;
  resize: vertical;
}

.iypce-field input::placeholder,
.iypce-field textarea::placeholder {
  color: #8a857d;
  opacity: 1;
}

.iypce-field input:focus,
.iypce-field textarea:focus {
  border-color: var(--iypce-ink);
  outline: 0;
}

.iypce-field small {
  color: var(--iypce-muted);
  font-size: 10px;
  line-height: 1.5;
}

.iypce-field--full {
  grid-column: 1 / -1;
}

.iypce-rating {
  display: grid;
  gap: 10px;
}

.iypce-rating__choices {
  display: inline-flex;
  width: fit-content;
  flex-direction: row-reverse;
  gap: 4px;
}

.iypce-rating__choices input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.iypce-rating__choices label {
  color: #d1cbc1;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: color 140ms ease, transform 140ms ease;
}

.iypce-rating__choices label:hover,
.iypce-rating__choices label:hover ~ label,
.iypce-rating__choices input:checked ~ label {
  color: var(--iypce-rose-dark);
}

.iypce-rating__choices label:hover {
  transform: translateY(-2px);
}

.iypce-rating__choices input:focus-visible + label {
  outline: 3px solid rgba(199,148,137,.5);
  outline-offset: 3px;
}

.iypce-next {
  margin-top: 36px;
}

.iypce-upload {
  position: relative;
}

.iypce-upload > label {
  display: grid;
  min-height: 190px;
  padding: 28px;
  place-items: center;
  align-content: center;
  gap: 7px;
  border: 1px dashed #9b948a;
  color: var(--iypce-muted);
  background: #fbfaf7;
  text-align: center;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.iypce-upload > label:hover {
  border-color: var(--iypce-rose-dark);
  background: #f8f1ee;
}

.iypce-upload > label strong {
  color: var(--iypce-ink);
  font-size: 14px;
}

.iypce-upload > label span:not(.iypce-upload__icon) {
  font-size: 11px;
  line-height: 1.45;
}

.iypce-upload__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--iypce-line);
  border-radius: 50%;
  color: var(--iypce-rose-dark);
  font-size: 22px;
  line-height: 1;
}

.iypce-upload > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.iypce-upload__preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.iypce-preview-item {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  overflow: hidden;
  place-items: center;
  color: #fff;
  background: #292825;
}

.iypce-preview-item img,
.iypce-preview-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iypce-preview-item span {
  position: absolute;
  right: 5px;
  bottom: 5px;
  max-width: calc(100% - 10px);
  padding: 4px 6px;
  overflow: hidden;
  color: #fff;
  background: rgba(25,25,24,.78);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.iypce-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 13px;
  align-items: start;
  padding: 20px;
  color: #4c4842;
  background: var(--iypce-paper);
  font-size: 11px;
  line-height: 1.65;
}

.iypce-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--iypce-rose-dark);
}

.iypce-form__actions {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.iypce-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.iypce-invalid {
  border-color: #a94c3e !important;
}

.iypce-field-error {
  margin: 0;
  color: #8e3026;
  font-size: 11px;
  line-height: 1.45;
}

.iypce-form.is-sending {
  opacity: .72;
  pointer-events: none;
}

@media (max-width: 980px) {
  .iypce-hero {
    min-height: auto;
  }

  .iypce-hero__grid,
  .iypce-share__grid {
    grid-template-columns: 1fr;
  }

  .iypce-hero__field {
    min-height: 500px;
  }

  .iypce-share__intro {
    position: static;
  }

  .iypce-fragment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .iypce-dialog__panel {
    grid-template-columns: 1fr;
  }

  .iypce-dialog__story {
    position: static;
  }
}

@media (max-width: 720px) {
  .iypce-shell {
    width: min(100% - 28px, 1180px);
  }

  .iypce-hero {
    padding-top: 68px;
  }

  .iypce-hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .iypce-hero__lead {
    font-size: 15px;
  }

  .iypce-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .iypce-button {
    width: 100%;
  }

  .iypce-text-link {
    width: fit-content;
  }

  .iypce-hero__field {
    min-height: 390px;
  }

  .iypce-hero__fragment--1,
  .iypce-placeholder--one {
    inset: 0 17% 22% 0;
  }

  .iypce-proof__grid {
    grid-template-columns: 1fr;
  }

  .iypce-proof__grid > div,
  .iypce-proof__grid > div:first-child {
    min-height: 88px;
    border-right: 1px solid rgba(255,255,255,.16);
    border-bottom: 1px solid rgba(255,255,255,.16);
    border-left: 1px solid rgba(255,255,255,.16);
  }

  .iypce-section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .iypce-section-heading h2,
  .iypce-share h2 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .iypce-fragment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .iypce-fragment__caption {
    right: 10px;
    bottom: 9px;
    left: 10px;
    font-size: 8px;
  }

  .iypce-fragment__caption span:last-child {
    display: none;
  }

  .iypce-dialog {
    width: 100vw;
    max-height: 100dvh;
  }

  .iypce-dialog__panel {
    min-height: 100dvh;
  }

  .iypce-dialog__media :is(img, video) {
    max-height: 62vh;
  }

  .iypce-dialog__story {
    padding: 42px 24px 58px;
  }

  .iypce-empty {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .iypce-fields {
    grid-template-columns: 1fr;
  }

  .iypce-field--full {
    grid-column: auto;
  }

  .iypce-form-wrap {
    padding: 28px 20px;
  }

  .iypce-form__actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .iypce-form__actions .iypce-text-link {
    align-self: center;
  }

  .iypce-upload__preview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .iypce-root *,
  .iypce-root *::before,
  .iypce-root *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
