/* ═══════════════════════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════════════════════ */

/* YouTube fullscreen modal */
.yt-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.yt-modal.open { opacity: 1; pointer-events: all; }
.yt-modal-inner {
  width: 92vw; max-width: 1200px;
  aspect-ratio: 16/9;
}
.yt-modal-inner iframe { width: 100%; height: 100%; border: none; }
@media (max-width: 600px) {
  .yt-modal-inner {
    width: 100vw;
    aspect-ratio: unset;
    height: 56.25vw;
    min-height: 200px;
  }
}
.yt-modal-close {
  position: fixed; top: 20px; right: 28px;
  font-size: 36px; line-height: 1;
  color: var(--white); background: none; border: none;
  cursor: pointer; opacity: .7; transition: opacity .2s;
  z-index: 1;
}
.yt-modal-close:hover { opacity: 1; }


/* About — right text panel */
#about .reveal.d2 { text-align: center; }
#about .section-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(48px, 5.5vw, 78px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: 0;
  text-align: center;
}
#about .section-title em { color: var(--charcoal); font-style: normal; }
.about-brand {
  font-style: normal;
  font-weight: 600;
  color: var(--crimson);
  letter-spacing: 0.03em;
}
.about-byline {
  font-family: var(--ff-display);
  color: var(--charcoal);
  margin-top: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.about-byline-name {
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: block;
}
.about-byline-title {
  font-size: 0.78rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.14em;
  color: var(--charcoal);
  opacity: 0.85;
  display: block;
}
#about .section-desc {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.85;
  color: var(--charcoal);
  opacity: 1;
  max-width: 100%;
  margin-top: 28px;
  text-align: center;
}

/* About split */
.intro-grid {
  display: grid; grid-template-columns: 1.25fr 1fr;
  gap: 72px; align-items: center;
  justify-items: center;
  max-width: var(--max-w); margin: 0 auto;
}
.intro-img-wrap {
  position: relative;
  border-radius: 1000px 1000px 0 0;
  overflow: hidden;
  box-shadow: 0 32px 72px rgba(24,13,13,.22);
  width: 82%;
}
.intro-img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.intro-badge {
  position: absolute; bottom: -26px; right: -26px;
  width: 122px; height: 122px; background: var(--crimson);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white);
}
.badge-num { font-family: var(--ff-display); font-size: 44px; font-weight: 300; line-height: 1; }
.badge-lbl { font-size: 8.5px; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; opacity: .8; text-align: center; }

/* Home stories — full-width image slider */
#stories-section { padding: 72px 0 88px; background: var(--parchment); }

.stories-slider {
  position: relative;
  width: 86%;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  user-select: none;
}
@keyframes stackIn {
  from { opacity: 0; transform: scale(.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes stackOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(1.07); }
}

.slider-track {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.slider-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: scale(.88);
}
.slider-slide.is-active {
  opacity: 1; transform: scale(1);
  z-index: 2;
}
.slider-slide.is-entering {
  z-index: 1;
  animation: stackIn .65s cubic-bezier(.25,.46,.45,.94) forwards;
}
.slider-slide.is-exiting {
  z-index: 3;
  animation: stackOut .65s ease forwards;
}
.slider-slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  pointer-events: none;
}
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 50px; height: 50px;
  background: rgba(255,255,255,.12);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal);
  transition: background .25s;
}
.slider-arrow:hover { background: rgba(255,255,255,.32); }
.slider-prev { left: 0; }
.slider-next { right: 0; }
.stories-tagline {
  text-align: center;
  margin: 0 0 32px;
  font-family: 'Dancing Script', cursive;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 600;
  color: var(--charcoal);
  opacity: .72;
  letter-spacing: .5px;
  line-height: 1.4;
}
.stories-tagline em {
  font-style: italic;
  color: var(--crimson);
  opacity: 1;
}
.slider-counter {
  text-align: center;
  margin-top: 20px;
  font-family: var(--ff-body);
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--charcoal); opacity: .38;
}
.slider-gallery-link {
  display: block;
  text-align: center;
  margin-top: 18px;
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: .55;
  text-decoration: none;
  transition: opacity .25s ease;
}
.slider-gallery-link:hover { opacity: 1; }

@media (max-width: 768px) {
  #stories-section { padding: 44px 0 56px; }
  .stories-slider { width: 100%; }
  .slider-slide { aspect-ratio: 4/3; }
  .slider-arrow { width: 38px; height: 38px; }
}

/* Services — feature video + YouTube strip */
#services {
  padding: 80px var(--section-px) 64px;
  position: relative;
  overflow-x: hidden;
  box-shadow: inset 0 14px 28px -14px rgba(57,56,56,.1);
}
#services::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
#services .section-hdr { text-align: center; margin-bottom: 0; }

/* Portfolio preview — same divider treatment as services */
#portfolio-section {
  position: relative;
  box-shadow: inset 0 14px 28px -14px rgba(57,56,56,.1);
}
#portfolio-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.svc-feature-video {
  position: relative;
  width: 100%; max-width: 860px;
  margin: 48px auto 0;
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.svc-feature-video video {
  display: block; width: 100%;
  aspect-ratio: 16/9; object-fit: cover;
}
.svc-mute-btn {
  position: absolute; bottom: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.52);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer;
  transition: background .3s;
}
.svc-mute-btn:hover { background: rgba(0,0,0,.8); }
.svc-mute-btn .icon-sound { display: none; }
.svc-mute-btn.unmuted .icon-muted { display: none; }
.svc-mute-btn.unmuted .icon-sound { display: block; }

/* YouTube scroll strip */
.yt-strip-wrap { margin-top: 40px; overflow: hidden; }
.yt-arrows {
  display: flex; gap: 10px; justify-content: flex-end;
  margin-bottom: 14px;
}
.yt-arrow {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.14);
  color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .3s, border-color .3s;
}
.yt-arrow:hover { background: rgba(0,0,0,.12); border-color: rgba(0,0,0,.28); }
.yt-scroll {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.yt-scroll::-webkit-scrollbar { display: none; }
.yt-card {
  flex: 0 0 300px;
  display: block; text-decoration: none;
  border-radius: 3px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.yt-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,.55); }
.yt-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.yt-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s var(--ease);
}
.yt-card:hover .yt-thumb img { transform: scale(1.05); }
.yt-play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.22);
  transition: background .3s;
}
.yt-card:hover .yt-play-overlay { background: rgba(0,0,0,.4); }
.yt-title {
  padding: 10px 2px 2px;
  font-family: var(--ff-body); font-size: 12px; font-weight: 400;
  letter-spacing: .8px; color: var(--charcoal); opacity: .55;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

@media (max-width: 768px) {
  #services { padding: 60px 22px 44px; }
  .yt-card { flex: 0 0 240px; }
}

/* Films page grid */
.films-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.films-grid .yt-card {
  flex: unset;
  width: auto;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.films-grid .yt-card:hover {
  transform: none;
  box-shadow: none;
}
.films-grid .yt-thumb {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  transition: box-shadow .4s ease, transform .4s ease;
}
.films-grid .yt-card:hover .yt-thumb {
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
  transform: translateY(-4px);
}
.films-grid .yt-title {
  font-size: 13px;
  opacity: .7;
  padding-top: 12px;
  white-space: normal;
}
.films-duration {
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: .06em;
  color: rgba(57,56,56,.4);
  margin-top: 3px;
}
@media (max-width: 900px) {
  .films-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .films-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Home gallery preview */
.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 4px;
  max-width: var(--max-w); margin: 0 auto;
}
.home-gallery-grid .g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

/* CTA section */
.cta-section {
  text-align: center; padding: 80px var(--section-px);
  max-width: 680px; margin: 0 auto;
}

@media (max-width: 768px) {
  .intro-grid { grid-template-columns: 1fr; gap: 64px; }
  .intro-badge { width: 104px; height: 104px; bottom: -16px; right: -8px; }
  .badge-num { font-size: 36px; }
  .home-gallery-grid { grid-template-columns: repeat(2,1fr); }
  .home-gallery-grid .g-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}

/* ═══════════════════════════════════════════════════════
   PORTFOLIO PAGE
═══════════════════════════════════════════════════════ */

.portfolio-intro {
  max-width: 640px; text-align: center; margin: 0 auto 56px;
}

/* Stats row */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; max-width: var(--max-w); margin: 0 auto 72px;
}
.stat-card {
  background: var(--dark-soft);
  padding: 36px 24px; text-align: center;
}
.stat-num {
  font-family: var(--ff-display); font-size: 56px; font-weight: 300;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--sand); opacity: .65; }

@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat-num { font-size: 40px; }
}

/* ═══════════════════════════════════════════════════════
   GALLERY PAGE
═══════════════════════════════════════════════════════ */

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-page-grid .g-item:nth-child(7n+1) { grid-column: span 2; grid-row: span 2; }

@media (max-width: 768px) {
  .gallery-page-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-page-grid .g-item:nth-child(7n+1) { grid-column: span 2; grid-row: span 1; }
}

/* ═══════════════════════════════════════════════════════
   STORIES PAGE
═══════════════════════════════════════════════════════ */

.stories-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: var(--max-w); margin: 0 auto;
}
.stories-page-grid .story-card { aspect-ratio: 3/4; }

/* Featured story full-width */
.stories-page-grid .story-card.featured {
  grid-column: span 2; aspect-ratio: 16/9;
}

/* Story filter */
.stories-filter {
  display: flex; gap: 0; justify-content: center;
  border-bottom: 1px solid rgba(57,56,56,.16);
  margin-bottom: 52px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}
.stories-filter::-webkit-scrollbar { height: 0; }
.story-filter-btn {
  padding: 13px 28px;
  font-family: var(--ff-body); font-size: 10px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--charcoal); opacity: .4;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: opacity .3s, border-color .3s; white-space: nowrap;
}
.story-filter-btn.active { opacity: 1; border-bottom-color: var(--crimson); }
.story-filter-btn:hover  { opacity: .8; }

@media (max-width: 900px) {
  .stories-page-grid { grid-template-columns: repeat(2,1fr); }
  .stories-page-grid .story-card.featured { grid-column: span 2; aspect-ratio: 16/9; }
}
@media (max-width: 600px) {
  .stories-page-grid { grid-template-columns: 1fr; }
  .stories-page-grid .story-card.featured { grid-column: span 1; aspect-ratio: 4/3; }
  .stories-page-grid .story-card { aspect-ratio: 4/3; }
}

/* ═══════════════════════════════════════════════════════
   STORY DETAIL PAGE
═══════════════════════════════════════════════════════ */

.story-detail-hero {
  height: 80vh; min-height: 500px;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 0 var(--section-px) 72px;
}
.story-detail-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.story-detail-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(24,13,13,.92) 0%, rgba(24,13,13,.3) 55%, transparent 100%);
}
.story-detail-meta { position: relative; z-index: 2; color: var(--white); }
.story-detail-tag {
  font-size: 9px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  opacity: 0; animation: fadeUp .7s .3s forwards;
}
.story-detail-title {
  font-family: var(--ff-display); font-size: clamp(44px, 7vw, 90px);
  font-weight: 300; line-height: .95; letter-spacing: 4px;
  opacity: 0; animation: fadeUp .8s .5s forwards;
}
.story-detail-loc {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(16px, 2vw, 22px); color: var(--sand);
  margin-top: 14px;
  opacity: 0; animation: fadeUp .8s .7s forwards;
}

.story-body-text {
  max-width: 680px; margin: 0 auto 64px;
  font-size: 16px; line-height: 1.95;
  font-family: var(--ff-display); font-weight: 300; font-style: italic;
  color: var(--charcoal); opacity: .85;
}

.story-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  max-width: var(--max-w); margin: 0 auto;
}
.story-image-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .6s var(--ease);
}
.story-image-grid img:hover { transform: scale(1.03); }
.story-image-grid img:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }

.story-nav {
  display: flex; justify-content: space-between; align-items: center;
  max-width: var(--max-w); margin: 72px auto 0;
  padding: 36px 0; border-top: 1px solid rgba(57,56,56,.15);
}
.story-nav-link {
  font-family: var(--ff-display); font-size: 22px; font-weight: 300;
  color: var(--charcoal); transition: color .3s;
}
.story-nav-link:hover { color: var(--crimson); }
.story-nav-dir { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }

@media (max-width: 768px) {
  .story-detail-hero { padding: 0 24px 52px; }
  .story-image-grid { grid-template-columns: 1fr; }
  .story-image-grid img:nth-child(1) { grid-column: span 1; }
  .story-nav { flex-direction: column; gap: 24px; text-align: center; }
}

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════ */

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 90px; align-items: start;
  max-width: 1080px; margin: 0 auto;
}
.contact-info .c-item { margin-bottom: 32px; }
.c-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.c-value { font-family: var(--ff-display); font-size: 19px; color: var(--white); line-height: 1.4; }
.c-sub   { font-size: 13px; opacity: .52; font-family: var(--ff-body); }

.social-row { display: flex; gap: 12px; margin-top: 36px; }

/* Map embed */
.contact-map {
  width: 100%; height: 320px;
  border: none; filter: grayscale(1) invert(1) contrast(.8);
  opacity: .7;
  margin-top: 52px;
}

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(57,56,56,.15);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer;
  font-family: var(--ff-display); font-size: 20px; font-weight: 400;
  color: var(--charcoal);
  transition: color .3s;
}
.faq-q:hover { color: var(--crimson); }
.faq-q .faq-icon {
  font-size: 22px; color: var(--gold);
  transition: transform .4s ease; flex-shrink: 0;
}
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 13.5px; line-height: 1.85;
  color: var(--charcoal); opacity: .72;
  max-height: 0; overflow: hidden;
  transition: max-height .45s ease, padding .45s ease;
}
.faq-item.open .faq-a { max-height: 800px; padding-bottom: 22px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ══════════════════════════════════════════
   TESTIMONIALS PAGE
══════════════════════════════════════════ */
#testimonials-page {
  background: var(--off-white);
}

/* Page-level intro header */
.tbp-header {
  text-align: center;
  padding: 80px var(--section-px) 64px;
  border-bottom: 1px solid rgba(57,56,56,.1);
}
.tbp-header .section-label { margin-bottom: 14px; }
.tbp-header .section-title { margin: 0 auto; max-width: 520px; }
.tbp-header .tbp-sub {
  font-family: var(--ff-body);
  font-size: 13px;
  letter-spacing: .06em;
  color: rgba(57,56,56,.55);
  margin-top: 18px;
}

/* Each testimonial entry */
.tb-list {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}
.tb {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  padding: 72px 0;
  border-bottom: 1px solid rgba(57,56,56,.1);
}
.tb:last-child { border-bottom: none; }
.tb:nth-child(even) { flex-direction: row-reverse; }

/* Small thumbnail */
.tb-thumb {
  flex: 0 0 260px;
  width: 260px;
  border-radius: 16px;
  overflow: hidden;
}
.tb-thumb img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  filter: brightness(.96) contrast(1.03);
  transition: filter .6s ease, transform .8s var(--ease);
}
.tb:hover .tb-thumb img {
  filter: brightness(1) contrast(1.05);
  transform: scale(1.02);
}

/* Text side */
.tb-body {
  flex: 1;
  padding-top: 6px;
}
.tb-num {
  font-family: var(--ff-display);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.tb-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.72;
  color: var(--charcoal);
  margin-bottom: 32px;
  position: relative;
}
.tb-quote::before {
  content: '\201C';
  font-size: 4em;
  line-height: 0;
  vertical-align: -0.45em;
  color: var(--gold);
  opacity: .35;
  margin-right: 6px;
  font-style: normal;
}
.tb-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tb-couple {
  font-family: var(--ff-body);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
}
.tb-location {
  font-family: var(--ff-body);
  font-size: .72rem;
  letter-spacing: .08em;
  color: rgba(57,56,56,.45);
}

/* Section divider rule */
.tb-rule {
  width: 60px; height: 1px;
  background: var(--gold);
  opacity: .5;
  margin: 28px 0 0;
}

/* Video testimonial card */
.tb-thumb-video {
  flex: 0 0 300px;
  width: 300px;
}
.tb-video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.tb-thumb-video video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
  background: #000;
}
.tb-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .25s, transform .25s;
  pointer-events: auto;
}
.tb-play-btn:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}
.tb-play-btn svg { margin-left: 3px; }
.tb-play-btn.hidden { display: none; }
.tb-video-tag {
  font-family: var(--ff-body);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(57,56,56,.45);
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .tb-list { padding: 0 28px; }
  .tb, .tb:nth-child(even) { flex-direction: column; gap: 28px; }
  .tb-thumb { width: 180px; flex: 0 0 180px; }
  .tb-thumb-video { width: 100%; flex: unset; }
  .tb { padding: 52px 0; }
  .tbp-header { padding: 60px 28px 44px; }
}
