.rm-production {
  --rm-ink: #171515;
  --rm-paper: #fff;
  --rm-soft: #f4f1ed;
  --rm-line: #d9d3cc;
  --rm-muted: #6d6762;
  --rm-wine: #72151c;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  color: var(--rm-ink);
  background: var(--rm-paper);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.6;
}

.rm-production *,
.rm-production *::before,
.rm-production *::after {
  box-sizing: border-box;
}

.rm-production img {
  display: block;
  width: 100%;
  height: auto;
}

.rm-production figure,
.rm-production h2,
.rm-production h3,
.rm-production h4,
.rm-production p,
.rm-production ol,
.rm-production dl,
.rm-production dd,
.rm-production blockquote {
  margin: 0;
}

.rm-production h2,
.rm-production h3,
.rm-production h4 {
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.06;
}

.rm-production h2 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  letter-spacing: -.05em;
}

.rm-production h3 {
  font-size: clamp(1.8rem, 3.6vw, 3.4rem);
  letter-spacing: -.045em;
}

.rm-production-kicker {
  color: var(--rm-wine);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.rm-production-intro {
  max-width: 940px;
  margin: 0 auto;
  padding: 100px 28px 80px;
  text-align: center;
}

.rm-production-intro h2 {
  margin-top: 18px;
}

.rm-production-intro > p:last-child {
  max-width: 700px;
  margin: 28px auto 0;
  color: var(--rm-muted);
  font-size: 1.05rem;
}

.rm-production-hero {
  overflow: hidden;
  background: var(--rm-soft);
}

.rm-production-hero img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.rm-production-process {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 64px;
  padding: 110px 28px;
  border-bottom: 1px solid var(--rm-line);
}

.rm-production-process-heading {
  align-self: start;
  position: sticky;
  top: 30px;
}

.rm-production-process-heading h3 {
  margin-top: 14px;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.rm-production-process ol {
  padding: 0;
  list-style: none;
}

.rm-production-process li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--rm-line);
}

.rm-production-process li > p:empty {
  display: none;
}

.rm-production-process li:last-child {
  border-bottom: 1px solid var(--rm-line);
}

.rm-production-process li > span {
  color: var(--rm-wine);
  font-family: Georgia, "Times New Roman", serif;
}

.rm-production-process h4 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.rm-production-process li p,
.rm-production-copy > p:not(.rm-production-kicker),
.rm-production-copy dd {
  color: var(--rm-muted);
}

.rm-production-process li p {
  font-size: .92rem;
}

.rm-production-feature {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 680px;
  margin-top: 100px;
  background: var(--rm-soft);
}

.rm-production-feature + .rm-production-feature {
  margin-top: 0;
}

.rm-production-feature-reverse figure {
  order: 2;
}

.rm-production-feature figure {
  overflow: hidden;
  background: #ece7e1;
}

.rm-production-feature figure img {
  height: 100%;
  object-fit: cover;
}

.rm-production-copy {
  align-self: center;
  padding: clamp(42px, 6vw, 82px);
}

.rm-production-copy h3 {
  margin: 12px 0 28px;
}

.rm-production-copy > p:not(.rm-production-kicker) {
  margin-bottom: 34px;
}

.rm-production-copy dl div {
  padding: 17px 0;
  border-top: 1px solid var(--rm-line);
}

.rm-production-copy dt {
  margin-bottom: 5px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rm-production-copy dd {
  font-size: .9rem;
}

.rm-production-copy blockquote {
  padding: 24px 0 0 24px;
  color: var(--rm-wine);
  border-left: 2px solid var(--rm-wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.5;
}

.rm-production-copy blockquote::before,
.rm-production-copy blockquote::after {
  display: none;
  content: none;
}

.rm-production-ko h2 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
}

.rm-production-ko h3 {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
}

.rm-production-ko .rm-production-process-heading h3 {
  font-size: clamp(1.6rem, 2.7vw, 2.4rem);
}

@media (max-width: 900px) {
  .rm-production-process {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .rm-production-process-heading {
    position: static;
  }

  .rm-production-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .rm-production-feature-reverse figure {
    order: initial;
  }

  .rm-production-feature figure img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 680px) {
  .rm-production-intro {
    padding: 70px 18px 58px;
  }

  .rm-production-intro > p:last-child {
    font-size: .96rem;
  }

  .rm-production-hero img {
    aspect-ratio: 4 / 3;
    object-position: 58% center;
  }

  .rm-production-process {
    padding: 72px 18px;
  }

  .rm-production-process li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .rm-production-feature {
    margin-top: 64px;
  }

  .rm-production-copy {
    padding: 42px 22px;
  }
}
