.packs {
  height: auto;
  min-height: 100svh;
  padding: 5rem 4vw 3rem;
}

.packs .rooms__stage {
  flex: 0 0 auto;
  width: 100%;
  justify-content: center;
}

.pack-card {
  display: grid;
  grid-template-columns: minmax(18rem, 1.35fr) minmax(26rem, 1fr);
  align-items: stretch;
  width: min(96rem, 100%);
  min-height: 36rem;
  border: 0;
  overflow: visible;
}

.pack-card__photo {
  position: relative;
  margin: 0;
  min-height: 36rem;
  height: 100%;
  background: #12141a;
  overflow: hidden;
}

.pack-card__photo .photo-slider {
  min-height: 36rem;
  height: 100%;
}

.pack-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 36rem;
  object-fit: cover;
}

.pack-card__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-height: 36rem;
  height: 100%;
  padding: 1.6rem 1.7rem 1.5rem 2rem;
  border-left: 1px solid rgba(246, 239, 224, 0.08);
  background: #0e1016;
}

.pack-card__top,
.pack-card__mid,
.pack-card__bottom {
  display: flex;
  flex-direction: column;
}

.pack-card__mid {
  flex: 1 1 auto;
  justify-content: center;
  gap: 0.85rem;
  min-height: 0;
}

/* larger stories on pack card */
.pack-card__info .stories-rail,
.pack-card__stories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.pack-card__info .stories-rail__orb,
.pack-card__story {
  width: 4.35rem !important;
  height: 4.35rem !important;
  border: 1.5px solid rgba(246, 239, 224, 0.28);
  background: #12141a;
}

.pack-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.pack-card__btn--main {
  min-width: 12rem;
  background: transparent;
  border-color: rgba(246, 239, 224, 0.45);
}

.pack-card__name {
  margin: 0;
  font-family: var(--display);
  font-size: var(--type-title);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.pack-card__lead {
  margin: 0.65rem 0 0;
  color: var(--paper-dim);
  font-size: var(--type-lead);
  font-weight: 300;
  line-height: var(--type-lh);
}

/* photo stories — same idea as room-row */
.pack-card__stories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.pack-card__story {
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 224, 0.22);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.pack-card__story.is-on,
.pack-card__story:hover,
.pack-card__story:focus-visible {
  border-color: rgba(246, 239, 224, 0.7);
  outline: none;
}

.pack-card__story img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.pack-card__review {
  margin: 1.1rem 0 0;
  padding: 0;
  border: 0;
}

.pack-card__review p {
  margin: 0;
  color: var(--paper);
  font-size: var(--type-body);
  font-weight: 300;
  font-style: italic;
  line-height: var(--type-lh);
}

.pack-card__review cite {
  display: block;
  margin-top: 0.35rem;
  color: var(--paper-dim);
  font-size: var(--type-meta);
  font-style: normal;
}

.pack-card__list {
  display: grid;
  gap: 0.28rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.pack-card__list li {
  color: rgba(246, 239, 224, 0.82);
  font-size: var(--type-list);
  font-weight: 300;
  line-height: 1.35;
}

.pack-card__list li::before {
  content: "—  ";
  color: rgba(246, 239, 224, 0.35);
}

.pack-card__deposit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  align-items: center;
  margin-top: 1rem;
  color: var(--paper-dim);
  font-size: 0.82rem;
  font-weight: 300;
}

.pack-card__deposit em {
  font-style: normal;
  color: rgba(246, 239, 224, 0.55);
}

.pack-card__price {
  margin: 1.1rem 0 0;
  color: var(--paper-dim);
  font-size: 0.95rem;
  font-weight: 300;
}

.pack-card__price strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
}

.pack-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.pack-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(246, 239, 224, 0.28);
  background: transparent;
  color: var(--paper);
  font-family: var(--text);
  font-size: var(--type-cta);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.pack-card__btn:hover,
.pack-card__btn:focus-visible {
  border-color: rgba(246, 239, 224, 0.55);
  background: rgba(246, 239, 224, 0.06);
  outline: none;
}

.pack-card__btn--main {
  background: transparent;
  border-color: rgba(246, 239, 224, 0.4);
}

@media (max-width: 900px) {
  .pack-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .pack-card__photo,
  .pack-card__photo img {
    min-height: 18rem;
    height: 18rem;
  }

  .pack-card__info {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid rgba(239, 230, 212, 0.1);
  }
}
