.recipe-timeline {
  margin: 1rem 0;
}

.recipe-timeline-heading {
  max-width: 580px;
  margin-bottom: 1.7rem;
}

.recipe-timeline-label {
  color: #8b4513;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.recipe-timeline-heading h2 {
  margin: .25rem 0 .55rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.25;
}

.recipe-timeline-heading > p:last-child {
  color: #5a3d26;
  font-size: .98rem;
  line-height: 1.65;
}

.recipe-timeline-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.25rem;
  border-top: 1px solid #d8c5aa;
  border-bottom: 1px solid #d8c5aa;
}

.recipe-timeline-summary div {
  padding: .7rem .9rem .75rem 0;
}

.recipe-timeline-summary div + div {
  padding-left: .9rem;
  border-left: 1px solid #d8c5aa;
}

.recipe-timeline-summary dt {
  color: #76583e;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.recipe-timeline-summary dd {
  margin-top: .08rem;
  color: #2e1d0e;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
}

.recipe-timeline-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  overflow: hidden;
  background: #d8c5aa;
  border: 1px solid #d8c5aa;
  list-style: none;
}

.recipe-timeline-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  min-height: 170px;
  padding: 1.35rem;
  background: #f8f2e7;
}

.recipe-timeline-steps li:last-child {
  grid-column: 1 / -1;
  min-height: 0;
  background: #efe2cd;
}

.recipe-timeline-number {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #8b4513;
  border-radius: 50%;
  color: #8b4513;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
}

.recipe-timeline-number::before,
.recipe-timeline-number::after {
  content: "";
  position: absolute;
}

.timeline-icon-slice::before {
  width: 17px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor;
}

.timeline-icon-slice::after {
  width: 2px;
  height: 17px;
  background: currentColor;
  transform: rotate(35deg);
}

.timeline-icon-pot::before {
  width: 17px;
  height: 10px;
  border: 1px solid currentColor;
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

.timeline-icon-pot::after {
  top: 10px;
  width: 21px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.timeline-icon-layers::before {
  width: 17px;
  height: 11px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: skewY(-18deg);
}

.timeline-icon-layers::after {
  width: 17px;
  height: 1px;
  background: currentColor;
  transform: skewY(-18deg);
}

.timeline-icon-oven::before {
  width: 18px;
  height: 17px;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.timeline-icon-oven::after {
  top: 13px;
  width: 12px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.timeline-icon-rest::before {
  width: 14px;
  height: 16px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  clip-path: polygon(0 0,100% 0,65% 50%,100% 100%,0 100%,35% 50%);
  background: linear-gradient(to bottom,transparent 44%,currentColor 45%,currentColor 55%,transparent 56%);
}

.recipe-timeline-time {
  color: #8b4513;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.recipe-timeline-copy h3 {
  margin: .12rem 0 .45rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.25;
}

.recipe-timeline-copy > p:last-child {
  color: #4a3020;
  font-size: .9rem;
  line-height: 1.5;
}

@media (max-width: 680px) {
  .recipe-timeline-heading h2 {
    font-size: 1.5rem;
  }

  .recipe-timeline-steps {
    grid-template-columns: 1fr;
  }

  .recipe-timeline-summary {
    grid-template-columns: 1fr;
  }

  .recipe-timeline-summary div,
  .recipe-timeline-summary div + div {
    padding: .55rem 0;
    border-left: 0;
  }

  .recipe-timeline-summary div + div {
    border-top: 1px solid #e2d5c3;
  }

  .recipe-timeline-steps li,
  .recipe-timeline-steps li:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 1.1rem;
  }

  .recipe-timeline-copy > p:last-child {
    font-size: .94rem;
  }
}
