/* ============================================================
   Rosebud Music Studio — Design System (Curtis-inspired)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f8f5f0;
  --color-bg-dark: #1a1a1a;
  --color-bg-dark-alt: #232323;
  --color-text: #1a1a1a;
  --color-text-light: #555;
  --color-text-muted: #888;
  --color-rose: #b5525d;
  --color-rose-light: #d4a5a5;
  --color-rose-bg: #f9f0f0;
  --color-gold: #c9a84c;
  --color-gold-light: #dfc274;
  --color-ivory: #f5f0e8;
  --color-border: #e8e3db;
  --color-white: #ffffff;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;

  --max-width: 1200px;
  --max-width-narrow: 900px;
  --nav-height: 72px;
  --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--color-rose); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-text); }

ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--color-text-light); font-size: 0.95rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-rose);
  margin-bottom: 0.75rem;
  display: block;
}

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

/* --- Layout --- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.container--narrow { max-width: var(--max-width-narrow); }

section { padding: 80px 0; }

.section--alt { background: var(--color-bg-alt); }
.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-ivory);
}
.section--dark h2, .section--dark h3 { color: var(--color-ivory); }
.section--dark p { color: #aaa; }
.section--dark .eyebrow { color: var(--color-gold); }
.section--rose-bg { background: var(--color-rose-bg); }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.nav--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav__inner {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__logo svg { width: 34px; height: 34px; }

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active { color: var(--color-rose); }

.nav__cta {
  background: var(--color-rose) !important;
  color: var(--color-white) !important;
  padding: 8px 20px !important;
  border-radius: 3px;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
}

.nav__cta:hover {
  background: #9e3a45 !important;
  color: var(--color-white) !important;
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.nav__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
  display: block;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 13px 32px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary { background: var(--color-rose); color: var(--color-white); }
.btn--primary:hover { background: #9e3a45; color: var(--color-white); transform: translateY(-1px); }

.btn--outline { background: transparent; color: var(--color-rose); border: 1.5px solid var(--color-rose); }
.btn--outline:hover { background: var(--color-rose); color: var(--color-white); }

.btn--dark { background: var(--color-bg-dark); color: var(--color-white); }
.btn--dark:hover { background: #333; color: var(--color-white); }

.btn--white { background: var(--color-white); color: var(--color-text); }
.btn--white:hover { background: var(--color-bg-alt); color: var(--color-text); }

.btn--sm { padding: 9px 22px; font-size: 0.8rem; }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: var(--color-bg-dark);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.78) 0%, rgba(20, 20, 20, 0.62) 42%, rgba(20, 20, 20, 0.36) 100%);
  z-index: 1;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 75%, rgba(181,82,93,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 25%, rgba(201,168,76,0.1) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 6rem 0;
}

.hero h1 { color: var(--color-white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--color-gold); }

.hero__tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.84);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero .eyebrow { color: var(--color-gold); }

.hero .btn-group { margin-top: 0; }

/* --- Rosebud Divider --- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
}

.divider svg { width: 180px; height: auto; opacity: 0.4; }

/* --- Feature Tabs (Curtis-style) --- */
.feature-tabs {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

.feature-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 3rem;
  overflow-x: auto;
}

.feature-tabs__btn {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  padding: 1rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.feature-tabs__btn:hover { color: var(--color-text); }
.feature-tabs__btn.active {
  color: var(--color-rose);
  border-bottom-color: var(--color-rose);
}

.feature-tab-panel { display: none; }
.feature-tab-panel.active { display: block; }

.feature-tab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-tab-content__text h2 { margin-bottom: 1rem; }

.feature-img-placeholder {
  aspect-ratio: 4/3;
  background: var(--color-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.card h3 { color: var(--color-text); }

.card__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-rose);
  margin: 0.75rem 0;
}

.card__price small {
  font-size: 0.65em;
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

.section--dark .card {
  background: var(--color-bg-dark-alt);
  border-color: rgba(255,255,255,0.06);
}

.section--dark .card h3 { color: var(--color-ivory); }
.section--dark .card:hover { border-color: rgba(255,255,255,0.12); }

/* --- Testimonial --- */
.testimonial {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
}

.testimonial__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.testimonial__author {
  font-size: 0.85rem;
  color: var(--color-rose);
  font-weight: 500;
}

/* --- Events List (Curtis-style) --- */
.events-list { margin-top: 2rem; }

.event-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.event-item:first-child { border-top: 1px solid var(--color-border); }

.event-item:hover { background: rgba(0,0,0,0.01); }

.event-date {
  text-align: center;
  min-width: 80px;
  flex-shrink: 0;
}

.event-date__day {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1;
}

.event-date__month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-rose);
}

.event-info { flex: 1; }
.event-info h3 { margin-bottom: 0.25rem; }
.event-meta { font-size: 0.8rem; color: var(--color-text-muted); margin-bottom: 0; }

.event-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-rose);
  flex-shrink: 0;
}

/* --- Bio Grid --- */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}

.bio-image {
  aspect-ratio: 3/4;
  background: var(--color-bg-alt);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-style: italic;
  font-size: 0.85rem;
}

.bio-image--landscape { aspect-ratio: 16/9; }

/* --- Philosophy Grid --- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.philosophy-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.philosophy-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--color-rose);
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-item__icon {
  width: 20px;
  height: 20px;
  color: var(--color-rose);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-rose);
  margin-bottom: 0.2rem;
}

.contact-item p { margin-bottom: 0; font-size: 0.9rem; }

.map-container {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-container iframe { width: 100%; height: 100%; border: 0; }

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--color-bg-alt);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

/* --- Booking --- */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.calendar {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 1.5rem;
}

.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.calendar__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.calendar__nav {
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  width: 34px;
  height: 34px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar__nav:hover { background: var(--color-rose); color: var(--color-white); border-color: var(--color-rose); }

.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.25rem;
}

.calendar__weekday {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  padding: 0.4rem 0;
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 0.85rem;
  cursor: default;
  transition: all var(--transition);
  border: 1px solid transparent;
  background: transparent;
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

.calendar__day--empty { visibility: hidden; }
.calendar__day--past { opacity: 0.25; }
.calendar__day--today { border-color: var(--color-rose); color: var(--color-rose); font-weight: 600; }

.calendar__day--available {
  cursor: pointer;
  color: var(--color-text);
  background: var(--color-rose-bg);
  border-color: transparent;
}

.calendar__day--available:hover { background: var(--color-rose); color: var(--color-white); }

.calendar__day--selected {
  background: var(--color-rose) !important;
  color: var(--color-white) !important;
  font-weight: 600;
}

/* Slots */
.slots-panel { min-height: 300px; }

.slots-panel__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  text-align: center;
  color: var(--color-text-muted);
  font-style: italic;
  font-size: 0.9rem;
}

.slots-list { display: grid; gap: 0.5rem; margin-top: 1rem; }

.slot-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slot-card:hover { border-color: var(--color-rose); }
.slot-card--selected { border-color: var(--color-rose); background: var(--color-rose-bg); }

.slot-card__time { font-family: var(--font-heading); font-size: 1rem; }
.slot-card__duration { font-size: 0.8rem; color: var(--color-text-muted); }

/* Booking form */
.booking-form {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.booking-form h3 { margin-bottom: 1.25rem; }

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 3px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus { outline: none; border-color: var(--color-rose); }

.form-group select option { background: var(--color-white); }

.booking-success {
  text-align: center;
  padding: 3rem 1.5rem;
}

.booking-success__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: var(--color-rose);
}

.booking-success h3 { color: var(--color-rose); margin-bottom: 0.75rem; }

/* --- Page Header --- */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.page-header h1 { color: var(--color-white); margin-bottom: 0.5rem; }
.page-header .eyebrow { color: var(--color-gold); }
.page-header p { color: #aaa; }

/* --- CTA Banner --- */
.cta-banner {
  padding: 60px 0;
  background: var(--color-rose);
  color: var(--color-white);
  text-align: center;
}

.cta-banner h2 { color: var(--color-white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto 1.75rem; }

/* --- Footer --- */
.footer {
  background: var(--color-bg-dark);
  color: #aaa;
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer__brand { max-width: 300px; }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer__logo svg { width: 28px; height: 28px; }

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-white);
}

.footer__brand p { font-size: 0.85rem; color: #888; line-height: 1.6; }

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--color-white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #666;
}

/* --- Level Cards (booking page) --- */
.level-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.level-card {
  transition: all var(--transition);
  font-family: var(--font-body);
}

.level-card:hover {
  border-color: var(--color-rose) !important;
  transform: translateY(-3px);
}

.level-card--selected {
  border-color: var(--color-rose) !important;
  background: var(--color-rose-bg) !important;
}

/* --- Video Grid --- */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.video-grid__item {
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
}

.video-grid__item iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .bio-grid { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .feature-tab-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 50px 0; }

  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav__links.open { transform: translateX(0); }

  .nav__links a {
    font-size: 1.15rem;
    color: var(--color-text);
  }

  .nav__hamburger { display: flex; }

  .nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__hamburger.active span:nth-child(2) { opacity: 0; }
  .nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .contact-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .hero {
    min-height: auto;
    min-height: 75vh;
  }
  .hero h1 { font-size: 1.8rem; }
  .hero__media iframe {
    width: 220vw;
    height: 123.75vw;
    min-width: 0;
    min-height: 0;
  }
  .hero__content {
    max-width: 100%;
    padding: 4rem 0;
  }

  .event-item { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  .event-date { text-align: left; display: flex; gap: 0.5rem; align-items: baseline; }

  .feature-tabs__btn { font-size: 0.85rem; padding: 0.75rem 1rem; }

  .video-grid { grid-template-columns: 1fr; }
  .level-grid { grid-template-columns: 1fr; }
}
