.memory-story-section {
  position: relative;
  overflow: hidden;
}

.memory-story-section::before,
.memory-story-section::after {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(184, 128, 42, 0.2);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.memory-story-section::before {
  top: -150px;
  left: -110px;
}

.memory-story-section::after {
  right: -120px;
  bottom: -155px;
}

.memory-story-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding-block: clamp(54px, 7vw, 90px);
}

.memory-video-panel {
  width: min(100%, 430px);
  justify-self: center;
}

.memory-video-frame {
  position: relative;
  padding: 9px;
  border: 1px solid #c79542;
  background: #064a3b;
  box-shadow: 0 22px 46px rgba(50, 31, 13, 0.2);
}

.memory-video-frame::before,
.memory-video-frame::after {
  position: absolute;
  width: 36px;
  height: 36px;
  content: "";
  pointer-events: none;
}

.memory-video-frame::before {
  top: 17px;
  left: 17px;
  border-top: 1px solid #f2c86f;
  border-left: 1px solid #f2c86f;
}

.memory-video-frame::after {
  right: 17px;
  bottom: 17px;
  border-right: 1px solid #f2c86f;
  border-bottom: 1px solid #f2c86f;
}

.memory-video-frame iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  aspect-ratio: 9 / 16;
  border: 0;
  background: #020806;
}

.memory-video-caption {
  margin: 12px 8px 0;
  color: #806649;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.memory-story-copy .section-kicker {
  margin-bottom: 10px;
}

.memory-story-copy .title-rule {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.07;
}

.memory-story-lead {
  max-width: 700px;
  margin: 0 0 28px;
  color: #654f3b;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.75;
}

.memory-points {
  display: grid;
  gap: 12px;
}

.memory-points article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 17px 19px;
  border: 1px solid rgba(188, 135, 51, 0.46);
  background: rgba(255, 251, 239, 0.82);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.memory-points article:hover {
  transform: translateX(4px);
  border-color: #a51f18;
  box-shadow: 0 10px 25px rgba(64, 42, 20, 0.1);
}

.memory-points article > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #d1a450;
  border-radius: 50%;
  color: #f2ca74;
  background: #07503f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
}

.memory-points h3 {
  margin: 0 0 5px;
  color: #06493a;
  font-family: Cambria, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.memory-points p {
  margin: 0;
  color: #705a45;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.memory-closing {
  margin: 22px 0 0;
  color: #654f3b;
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
}

.memory-location {
  margin: 22px 0 0;
  padding: 12px 15px;
  border-left: 4px solid #a51f18;
  color: #684f37;
  background: #f3e6c9;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.memory-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
}

.memory-actions .btn {
  border: 1px solid #d2a956;
  cursor: pointer;
}

.memory-text-link {
  color: #8d1915;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.memory-text-link span {
  margin-left: 4px;
  font-size: 16px;
}

@media (max-width: 860px) {
  .memory-story-layout {
    grid-template-columns: 1fr;
  }

  .memory-video-panel {
    width: min(100%, 360px);
  }

  .memory-video-frame iframe {
    min-height: 480px;
  }
}

@media (max-width: 560px) {
  .memory-story-layout {
    padding-block: 42px;
  }

  .memory-story-copy .title-rule {
    font-size: 34px;
  }

  .memory-video-frame iframe {
    min-height: 0;
  }

  .memory-points article {
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .memory-points article > span {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .memory-points h3 {
    font-size: 17px;
  }

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

  .memory-actions .btn,
  .memory-text-link {
    text-align: center;
  }
}
