/* ========== Base tokens ========== */
:root {
  --brand: #1d95d4;
  --ink: #111;
  --muted: rgba(244, 244, 244, 0.8);
  --bg: #fff;
  --circle-text: #268DC5;
}

/* ========== Layout ========== */
.recording {
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
  float: left;
}

.rec-section {
  padding: 24px 24px;
  width: 860px;
  margin: 0 0 80px 20px;
  border: 1px solid var(--brand);
  background: #fff;
}

.rec-section--intro {
  margin-top: 0px;
}

.rec-section__title {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  padding: 8px 28px;
  margin: 0 0 18px 0;
}

.rec-section__body {
  line-height: 2.1;
  font-size: 13.6px;
}

/* ========== Text ========== */
.rec-text a {
  color: var(--brand);
  text-decoration: underline;
}

.rec-text a:hover {
  text-decoration: none;
}

/* ========== Feature circles (intro badges) ========== */
.rec-circles {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px 0 10px 0;
  padding: 0;
  list-style: none;
}

.rec-circles__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  color: var(--circle-text);
  border: 1.5px solid var(--circle-text);
  border-radius: 0%;
  line-height: 2.0;
}

.rec-circles__item--lg {
  width: 125px;
  height: 125px;
  font-size: 14px;
  padding: 10px;
  letter-spacing: 0.03em;
}

/* ========== Photos (lightbox thumbs) ========== */
.rec-photos {
  --thumb: 214px;
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin: 25px 0 20px 0;
  padding: 0;
  list-style: none;
}

.rec-photos__item {
  flex: 0 0 auto;
}

.rec-photos__link {
  display: block;
}

.rec-photos__img {
  display: block;
  width: var(--thumb);
  height: auto;
  transition: opacity .3s ease-in-out;
}

.rec-photos__img:hover {
  opacity: .5;
}

/* ========== Videos (YouTube grid, responsive) ========== */

.rec-videos {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 30px 0 30px;
  padding: 0;
  list-style: none;
  justify-content: flex-start;
  align-content: flex-start;
}

.rec-videos__item {
  flex: 0 0 auto;
}

.rec-videos__item iframe {
  display: block;
  width: 300px;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

/* ========== FAQ ========== */
.rec-faq {
  background: var(--muted);
  padding: 12px 16px;
}

/* ========== reserve ========== */
.rec-reserve {
  background: var(--muted);
  padding: 12px 16px;
}

/* ========== Responsive ========== */
@media (max-width: 640px) {
  .rec-section {
    padding: 24px 16px;
    margin-bottom: 18px;
  }

  .rec-section__title {
    font-size: 16px;
    padding: 6px 18px;
  }

  .rec-photos {
    --thumb: 48vw;
  }

  .rec-circles {
    gap: 12px;
  }

  .rec-circles__item--lg,
  .rec-circles__item--md,
  .rec-circles__item--sm {
    width: 108px;
    height: 108px;
    font-size: 13px;
  }
}