/* A concert ticket opens a real memory: place, date and the people there. */
.intro.intro-memory {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  grid-template-areas: "art heading" "art copy";
  grid-template-rows: auto 1fr;
  gap: 28px clamp(44px, 6.5vw, 104px);
  padding-block: clamp(72px, 7.5vw, 120px);
}
.intro-memory .intro-heading { align-self: end; }
.intro-memory h2 { font-size: clamp(48px, 4.8vw, 76px); }
.intro-memory .intro-lead { font-size: clamp(23px, 2vw, 29px); line-height: 1.3; letter-spacing: -.02em; max-width: 440px; margin-top: 26px; }
.intro-memory .prose { max-width: 510px; }
.intro-memory .prose p { font-size: 17px; line-height: 1.55; }
.concert-memory { grid-area: art; display: flex; flex-direction: column; min-width: 0; align-self: center; padding-inline: 10px; }
.memory-panels { display: grid; }
.memory-panel { min-width: 0; margin: 0; }
.memory-panel + .memory-panel { margin-top: 50px; }
.memory-panels[role] .memory-panel { margin-top: 0; }
.memory-panel:focus-visible { outline: 3px solid black; outline-offset: 12px; }
.memory-ticket {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px;
  background: black;
  color: white;
  transform: rotate(-3deg);
  box-shadow: 7px 10px 0 #00000014;
}
.memory-ticket-main { min-width: 0; padding: 20px 20px 0; }
.memory-ticket-heading { min-height: 118px; padding-bottom: 16px; }
.memory-ticket-heading p { font-size: 16px; line-height: 1.2; margin-bottom: 7px; }
.memory-ticket-heading h3 { color: var(--orange); font: 66px/1 var(--display); text-transform: uppercase; letter-spacing: -.01em; }
.memory-photo { display: grid; place-items: center; aspect-ratio: 1.5; background: black; }
.memory-photo img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.memory-signatures { display: flex; gap: 24px; align-items: center; justify-content: space-between; height: 70px; }
.memory-signatures img:first-child { width: 128px; height: auto; }
.memory-signatures img:last-child { width: 88px; height: auto; }
.memory-ticket-stub {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 9px;
  color: black;
  background: var(--orange);
  border-left: 2px dashed black;
}
.memory-ticket-stub::before, .memory-ticket-stub::after { content: ""; position: absolute; left: -11px; width: 20px; height: 20px; border-radius: 50%; background: white; }
.memory-ticket-stub::before { top: -10px; }
.memory-ticket-stub::after { bottom: -10px; }
.memory-ticket-stub time { display: flex; flex: 1; flex-direction: column; align-items: center; justify-content: space-between; gap: 12px; }
.memory-day { font-size: 12px; font-weight: 700; white-space: nowrap; }
.memory-year { font: 84px/1 var(--display); writing-mode: vertical-rl; transform: rotate(180deg); letter-spacing: -.03em; }
.memory-city { font: 20px/1 var(--display); text-transform: uppercase; margin-top: 24px; }
.memory-panel figcaption { color: #575757; font-size: 11px; line-height: 1.5; margin-top: 25px; min-height: 50px; }
.memory-selection { order: 1; margin-top: 10px; }
.memory-selection > p { font-size: 14px; line-height: 1.3; margin-bottom: 12px; }
.memory-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border: 1px solid black; }
.memory-tabs button { display: flex; flex-direction: column; align-items: flex-start; padding: 11px 14px; min-height: 68px; border: 0; border-right: 1px solid black; background: white; color: black; }
.memory-tabs button:last-child { border-right: 0; }
.memory-tabs button[aria-selected="true"] { background: black; color: white; }
.memory-tabs button strong { font: 26px/1.05 var(--display); }
.memory-tabs button span { font-size: 12px; line-height: 1.3; margin-top: 4px; }
.memory-tabs button:focus-visible { outline: 3px solid var(--orange); outline-offset: -5px; }
@media (hover: hover) { .memory-tabs button:not([aria-selected="true"]):hover { background: var(--orange); } }

@media (min-width: 761px) and (max-width: 1100px) {
  .intro.intro-memory { gap: 24px 40px; grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr); }
  .intro-memory h2 { font-size: clamp(39px, 4.6vw, 48px); }
  .intro-memory .intro-lead { font-size: 23px; margin-top: 22px; }
  .intro-memory .prose p { font-size: 16px; }
  .concert-memory { padding-inline: 5px; }
  .memory-ticket { grid-template-columns: minmax(0, 1fr) 59px; }
  .memory-ticket-main { padding: 15px 13px 0; }
  .memory-ticket-heading { min-height: 92px; }
  .memory-ticket-heading h3 { font-size: 44px; }
  .memory-ticket-heading p { font-size: 14px; }
  .memory-ticket-stub { padding: 17px 5px; }
  .memory-day { font-size: 10px; }
  .memory-year { font-size: 64px; }
  .memory-city { font-size: 16px; }
  .memory-signatures { height: 58px; gap: 10px; }
  .memory-signatures img:first-child { width: 95px; }
  .memory-signatures img:last-child { width: 66px; }
  .memory-panel figcaption { min-height: 67px; }
  .memory-tabs button { padding-inline: 10px; }
}
@media (max-width: 760px) {
  .intro.intro-memory { grid-template-columns: minmax(0, 1fr); grid-template-areas: "heading" "art" "copy"; grid-template-rows: auto auto auto; gap: 38px; padding-block: 56px; }
  .intro-memory .intro-heading, .intro-memory .prose { max-width: 500px; }
  .intro-memory h2 { font-size: clamp(44px, 9.8vw, 66px); }
  .intro-memory .intro-lead { font-size: 24px; margin-top: 24px; }
  .concert-memory { width: 100%; max-width: 500px; justify-self: center; padding-inline: 7px; }
  .memory-ticket { grid-template-columns: minmax(0, 1fr) 68px; transform: rotate(-2deg); box-shadow: 4px 7px 0 #00000014; }
  .memory-ticket-main { padding: 17px 14px 0; }
  .memory-ticket-heading { min-height: 99px; padding-bottom: 14px; }
  .memory-ticket-heading h3 { font-size: 52px; }
  .memory-ticket-heading p { font-size: 14px; }
  .memory-ticket-stub { padding: 18px 5px; }
  .memory-day { font-size: 11px; }
  .memory-year { font-size: 70px; }
  .memory-city { font-size: 17px; margin-top: 16px; }
  .memory-signatures { height: 60px; gap: 14px; }
  .memory-signatures img:first-child { width: 103px; }
  .memory-signatures img:last-child { width: 70px; }
  .memory-panel figcaption { margin-top: 20px; min-height: 67px; }
  .memory-selection { margin-top: 2px; }
  .memory-tabs button { padding: 11px; }
  .intro-memory .prose p { font-size: 17px; }
}
@media (max-width: 380px) {
  .memory-ticket { grid-template-columns: minmax(0, 1fr) 52px; }
  .memory-ticket-main { padding: 14px 10px 0; }
  .memory-ticket-heading { min-height: 87px; }
  .memory-ticket-heading h3 { font-size: 40px; }
  .memory-ticket-heading p { font-size: 13px; }
  .memory-day { font-size: 9px; }
  .memory-year { font-size: 60px; }
  .memory-city { font-size: 14px; }
  .memory-signatures { gap: 12px; height: 54px; }
  .memory-signatures img:first-child { width: 85px; }
  .memory-signatures img:last-child { width: 58px; }
}
