:root {
  --bg: #0f1115;
  --bg-soft: #161a22;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.09);
  --text: #f5f7fb;
  --muted: #b8c0d1;
  --gold: #d8b36a;
  --gold-strong: #f2cf87;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216, 179, 106, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(96, 123, 255, 0.14), transparent 18%),
    linear-gradient(180deg, #0f1115 0%, #0b0d11 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-compact {
  padding: 28px 0 40px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.eyebrow {
  color: var(--gold-strong);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  max-width: 10ch;
}

h1.typing-text {
  min-height: 1.1em;
}

.word {
  display: inline;
  margin-right: 0.2em;
  animation: wordFade 0.5s ease-out forwards;
}

@keyframes wordFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15.5px;
}

.btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid var(--line);
  will-change: transform;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #c49849);
  color: #16120b;
  border: none;
  box-shadow: 0 10px 28px rgba(216, 179, 106, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(8, 10, 13, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-badge {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(216, 179, 106, 0.22), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  color: var(--gold-strong);
  font-weight: 800;
  font-size: 20px;
}

.brand small {
  display: block;
  color: var(--gold-strong);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 10px;
  margin-bottom: 4px;
}

.brand strong {
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  padding: 64px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.showcase-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-slider-dots {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  background: var(--gold-strong);
  transform: scale(1.15);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero-panel,
.card,
.feature,
.product-card,
.gallery-card,
.review-card,
.contact-card,
.social-card,
.map-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wedding-slider {
  padding: 20px;
  margin-bottom: 24px;
  overflow: hidden;
}

.slider-main {
  position: relative;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.slider-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.slider-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.slider-overlay {
  position: absolute;
  inset: auto 24px 24px 24px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(15, 17, 21, 0.1), rgba(15, 17, 21, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.gallery-open-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

.gallery-open-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.slider-overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin: 8px 0 10px;
}

.slider-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.thumb {
  position: relative;
  height: 110px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
  opacity: 0.78;
  background: transparent;
  padding: 0;
  appearance: none;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb.active {
  border-color: var(--gold-strong);
  opacity: 1;
  transform: translateY(-2px);
}

.thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.hero-copy {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(216, 179, 106, 0.25), transparent 70%);
  pointer-events: none;
}

.lead {
  max-width: 60ch;
  margin-top: 20px;
  font-size: 16px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  font-size: 28px;
  color: var(--gold-strong);
  margin-bottom: 6px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hero-side {
  display: grid;
  gap: 18px;
  grid-template-rows: 1.3fr 0.7fr;
}

.showcase {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #12161d;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0), rgba(10, 10, 10, 0.75));
}

.showcase-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-text {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 1;
}

.showcase-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(1, 2fr);
  gap: 18px;
}

.quick-box {
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-box strong {
  display: block;
  font-size: 18px;
}

.highlight-band,
.cta-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.highlight-band {
  padding: 26px;
}

.highlight-intro {
  margin-bottom: 20px;
}

.highlight-intro h2 {
  margin-bottom: 10px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.highlight-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-item strong {
  display: block;
  color: #fff2cb;
  margin-bottom: 6px;
  font-size: 15px;
}

.highlight-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.cta-panel {
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  position: relative;
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(216, 179, 106, 0.18), transparent 68%);
  pointer-events: none;
}

.cta-panel h2 {
  margin-bottom: 8px;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), #c49849);
  color: #17120a;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(216, 179, 106, 0.28);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 60;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.grid-4,
.product-grid,
.gallery-grid,
.review-grid,
.contact-grid,
.social-grid {
  display: grid;
  gap: 20px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.social-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature {
  padding: 26px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.04));
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-strong), rgba(255, 255, 255, 0));
}

.feature:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 179, 106, 0.22);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(216, 179, 106, 0.13);
  color: var(--gold-strong);
  margin-bottom: 16px;
  font-size: 24px;
}

.feature-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(216, 179, 106, 0.1);
  border: 1px solid rgba(216, 179, 106, 0.18);
  color: var(--gold-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature h3,
.product-card h3,
.review-card h3,
.contact-card h3,
.social-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature p {
  margin-bottom: 14px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.feature-list span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #e7edf9;
  font-size: 12px;
  font-weight: 600;
}

.feature-note {
  color: #ead7ae;
  font-size: 13px;
  line-height: 1.6;
}

.product-card,
.review-card,
.contact-card,
.social-card,
.map-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.product-image,
.gallery-image {
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}

.product-image img,
.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover img,
.gallery-card:hover img {
  transform: scale(1.05);
}

.tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(216, 179, 106, 0.12);
  color: var(--gold-strong);
  border: 1px solid rgba(216, 179, 106, 0.18);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.muted-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.muted-list span {
  color: var(--muted);
  font-size: 14px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 24px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 179, 106, 0.22);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
}

.gallery-link {
  display: block;
  height: 100%;
}

.gallery-overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(15, 17, 21, 0.24), rgba(15, 17, 21, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-link:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-open {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.gallery-content {
  padding: 22px;
}

.gallery-note {
  margin-top: 18px;
}

.review-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.review-card.reveal {
  transform: translateY(55px) scale(0.97);
}

.review-card.reveal.visible {
  transform: translateY(0) scale(1);
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 179, 106, 0.22);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.38);
}

.review-card::before {
  content: "";
  position: absolute;
  inset: -40px -30px auto auto;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.16), transparent 68%);
  pointer-events: none;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  flex: 0 0 54px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(216, 179, 106, 0.95), rgba(196, 152, 73, 0.9));
  box-shadow: 0 10px 26px rgba(216, 179, 106, 0.2);
}

.review-meta strong {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}

.review-meta span {
  color: var(--muted);
  font-size: 12px;
}

.review-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-stamp {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(216, 179, 106, 0.14);
  color: var(--gold-strong);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.google-word {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.g-blue { color: #4285f4; }
.g-red { color: #ea4335; }
.g-yellow { color: #fbbc05; }
.g-green { color: #34a853; }

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.rating {
  color: var(--gold-strong);
  font-size: 18px;
  letter-spacing: 2px;
}

.contact-card p + p {
  margin-top: 10px;
}

.contact-card iframe,
.map-card iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 18px;
  margin-top: 16px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-item {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
}

.social-card {
  text-align: center;
}

.social-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(216, 179, 106, 0.13);
  color: var(--gold-strong);
  font-size: 24px;
  font-weight: 800;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0 40px;
  color: var(--muted);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.editor-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(216, 179, 106, 0.08);
  border: 1px dashed rgba(216, 179, 106, 0.28);
  color: #ead7ae;
  font-size: 14px;
  line-height: 1.7;
}

.editor-note code {
  color: #fff4d1;
}

@media (max-width: 1080px) {
  .hero-grid,
  .contact-grid,
  .grid-4,
  .product-grid,
  .gallery-grid,
  .review-grid,
  .social-grid,
  .highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .wedding-slider {
    padding: 12px;
    margin-bottom: 18px;
  }

  .slider-main {
    height: 260px;
    border-radius: 18px;
    margin-bottom: 12px;
  }

  .slider-overlay {
    inset: auto 12px 12px 12px;
    padding: 14px;
    border-radius: 14px;
  }

  .slider-overlay h3 {
    font-size: 1.2rem;
    line-height: 1.25;
    margin: 6px 0 8px;
  }

  .slider-overlay p {
    font-size: 13px;
    line-height: 1.5;
  }

  .gallery-open-btn {
    margin-top: 10px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .hero-slider-dots {
    left: 14px;
    bottom: 12px;
    gap: 6px;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  .slider-thumbs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .thumb {
    height: 80px;
    border-radius: 14px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

  .nav-links {
    gap: 12px 16px;
  }

  .hero-copy {
    padding: 26px;
    min-height: auto;
  }

  .hero-stats,
  .quick-grid,
  .grid-4,
  .product-grid,
  .gallery-grid,
  .review-grid,
  .contact-grid,
  .social-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .review-top,
  .review-foot,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 66px 0;
  }

  .section-compact {
    padding: 22px 0 34px;
  }
}

@media (max-width: 480px) {
  .wedding-slider {
    padding: 10px;
  }

  .slider-main {
    height: 220px;
    border-radius: 16px;
  }

  .slider-overlay {
    inset: auto 10px 10px 10px;
    padding: 12px;
  }

  .slider-overlay h3 {
    font-size: 1rem;
  }

  .slider-overlay p {
    font-size: 12px;
  }

  .slider-thumbs {
    gap: 8px;
  }

  .thumb {
    height: 72px;
    border-radius: 12px;
  }
}