/* ---------- Tokens ---------- */
:root {
  --cream: #fff8f0;
  --cream-2: #fbf1e4;
  --cream-3: #f6e7d3;
  --pink: #f4c2c2;
  --pink-soft: #fbe3e3;
  --pink-deep: #e29b9b;
  --mint: #b8e0d2;
  --mint-soft: #dcefe7;
  --mint-deep: #86bfa9;
  --gold: #d9b382;
  --brown: #5c4a3d;
  --brown-soft: #8b7563;
  --brown-mute: #a68f7c;
  --line: rgba(92, 74, 61, 0.16);
  --line-soft: rgba(92, 74, 61, 0.08);
  --shadow: 0 20px 60px -30px rgba(92, 74, 61, 0.35);
  --shadow-soft: 0 10px 30px -15px rgba(92, 74, 61, 0.25);
  --radius: 22px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }

body {
  font-family: "Gowun Batang", "Noto Sans KR", system-ui, -apple-system, sans-serif;
  color: var(--brown);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(244, 194, 194, 0.18), transparent 55%),
    radial-gradient(ellipse at 100% 40%, rgba(184, 224, 210, 0.18), transparent 55%),
    radial-gradient(ellipse at 30% 100%, rgba(217, 179, 130, 0.12), transparent 55%);
  min-height: 100vh;
}

/* [hidden] must beat any display: rules from utility classes */
[hidden] { display: none !important; }

/* ---------- Page container ---------- */
.page {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 44px 0 24px;
  text-align: center;
}
.hero-frame {
  position: relative;
  padding: 36px 22px 42px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffcf6 0%, #fff5e8 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.55;
  z-index: 0;
}
.hero-frame::before {
  background: var(--pink-soft);
  top: -60px; left: -60px;
}
.hero-frame::after {
  background: var(--mint-soft);
  bottom: -60px; right: -60px;
}
.hero-badge {
  position: relative;
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--pink-deep);
  border-radius: 999px;
  color: var(--pink-deep);
  font-family: "Gaegu", serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.55);
  z-index: 1;
}
.hero-photo {
  position: relative;
  width: 78%;
  max-width: 320px;
  aspect-ratio: 3 / 4;
  margin: 22px auto 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px -20px rgba(92, 74, 61, 0.45);
  z-index: 1;
  background: var(--cream-3);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.hero-photo:hover img { transform: scale(1.05); }
.photo-corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.85);
}
.photo-corner.tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.photo-corner.tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.photo-corner.bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.photo-corner.br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

.hero-eyebrow {
  position: relative;
  margin: 4px 0 6px;
  color: var(--brown-soft);
  font-size: 14px;
  letter-spacing: 0.08em;
  z-index: 1;
}
.hero-name {
  position: relative;
  margin: 0;
  z-index: 1;
  font-family: "Gaegu", serif;
  font-weight: 700;
  line-height: 1;
  color: var(--brown);
}
.hero-name .ko {
  display: block;
  font-size: 42px;
  letter-spacing: 0.1em;
}
.hero-name .en {
  display: block;
  margin-top: 6px;
  font-family: "Gowun Batang", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  color: var(--pink-deep);
  letter-spacing: 0.2em;
}
.hero-birth {
  position: relative;
  margin: 12px 0 22px;
  color: var(--brown-soft);
  font-size: 14px;
  letter-spacing: 0.08em;
  z-index: 1;
}
.hero-invite {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  font-family: "Gaegu", serif;
  font-size: 22px;
  color: var(--brown);
  line-height: 1.7;
}
.hero-parents {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  color: var(--brown);
  font-size: 14px;
}
.hero-parents .dot {
  width: 5px; height: 5px;
  background: var(--pink-deep);
  border-radius: 50%;
}
.hero-countdown {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.hero-countdown > div {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 10px 4px;
  color: var(--brown);
}
.hero-countdown strong {
  display: block;
  font-family: "Gaegu", serif;
  font-size: 26px;
  color: var(--pink-deep);
  line-height: 1;
}
.hero-countdown span {
  display: block;
  font-size: 11px;
  color: var(--brown-soft);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ---------- Section ---------- */
.section {
  margin-top: 56px;
  text-align: center;
}
.section-eyebrow {
  margin: 0 0 6px;
  color: var(--pink-deep);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.section-title {
  margin: 0;
  font-family: "Gaegu", serif;
  font-size: 30px;
  color: var(--brown);
  letter-spacing: 0.04em;
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 14px auto 22px;
  color: var(--pink-deep);
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.divider span {
  font-size: 16px;
}
.section-body {
  margin: 0 auto;
  max-width: 420px;
  color: var(--brown-soft);
  font-size: 16px;
  line-height: 2;
}
.section-body.small { font-size: 14px; }

/* ---------- Event cards ---------- */
.event-cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.event-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
  text-align: left;
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center;
  border: 1px solid var(--line-soft);
}
.event-icon {
  grid-row: 1 / span 2;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--cream-2);
  border-radius: 12px;
  font-size: 22px;
}
.event-label {
  color: var(--brown-mute);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.event-value {
  color: var(--brown);
  font-size: 15px;
  line-height: 1.55;
}
.event-value strong {
  color: var(--pink-deep);
  font-weight: 700;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gallery-grid figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: var(--cream-3);
  box-shadow: var(--shadow-soft);
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-grid figure:hover img { transform: scale(1.06); }

/* ---------- Location ---------- */
.location-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line-soft);
  text-align: left;
}
.location-map {
  position: relative;
  height: 160px;
  background: repeating-linear-gradient(
    45deg,
    var(--mint-soft) 0 8px,
    var(--cream-2) 8px 16px
  );
  display: grid;
  place-items: center;
  overflow: hidden;
}
.location-map::before,
.location-map::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.7);
}
.location-map::before {
  width: 60%; height: 3px;
  top: 60%; left: 20%;
  transform: rotate(-8deg);
  border-radius: 3px;
}
.location-map::after {
  width: 40%; height: 3px;
  top: 40%; left: 40%;
  transform: rotate(6deg);
  border-radius: 3px;
}
.map-pin {
  position: relative;
  z-index: 2;
  font-size: 42px;
  filter: drop-shadow(0 6px 6px rgba(0,0,0,0.15));
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.location-info { padding: 22px; }
.location-info h3 {
  margin: 0 0 6px;
  font-family: "Gaegu", serif;
  font-size: 22px;
  color: var(--brown);
}
.location-info .address {
  margin: 0 0 16px;
  color: var(--brown-soft);
  font-size: 14px;
}
.transit {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  background: var(--cream-2);
  border-radius: 12px;
  font-size: 14px;
  color: var(--brown-soft);
  margin-bottom: 18px;
}
.transit strong {
  color: var(--pink-deep);
  margin-right: 8px;
  font-weight: 700;
}
.map-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.map-buttons .btn-cream { grid-column: 1 / -1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  color: var(--brown);
  text-decoration: none;
  background: #fff;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 6px 16px -10px rgba(92, 74, 61, 0.5);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--pink-deep), var(--pink));
  color: #fff;
  padding: 16px 22px;
  font-size: 16px;
  width: 100%;
}
.btn-pink {
  background: var(--pink);
  color: #fff;
}
.btn-mint {
  background: var(--mint);
  color: var(--brown);
}
.btn-cream {
  background: var(--cream-2);
  border-color: var(--line);
}
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* ---------- RSVP form ---------- */
.rsvp-form {
  margin: 26px auto 0;
  background: #fff;
  padding: 24px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line-soft);
  text-align: left;
  display: grid;
  gap: 16px;
}
.field {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
}
.field-label {
  font-size: 13px;
  color: var(--brown-soft);
  letter-spacing: 0.06em;
  font-weight: 700;
}
.rsvp-form input[type="text"],
.rsvp-form select,
.rsvp-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--brown);
  font: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.rsvp-form input[type="text"]:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
  border-color: var(--pink-deep);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(226, 155, 155, 0.15);
}
.rsvp-form textarea { resize: vertical; min-height: 100px; }

.radio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.radio {
  position: relative;
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  text-align: center;
  color: var(--brown-soft);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.radio input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.radio:has(input:checked) {
  border-color: var(--pink-deep);
  background: var(--pink-soft);
  color: var(--brown);
  font-weight: 700;
}

.form-error {
  margin: 0;
  color: #b6423e;
  font-size: 13px;
  text-align: center;
}

/* ---------- Account ---------- */
.account-cards {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.account-card {
  background: #fff;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.account-role {
  font-size: 13px;
  color: var(--brown-mute);
  letter-spacing: 0.08em;
}
.account-bank {
  font-family: "Gaegu", serif;
  font-size: 20px;
  color: var(--pink-deep);
  margin-top: 4px;
}
.account-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
  color: var(--brown);
  font-size: 16px;
  letter-spacing: 0.02em;
}
.chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream-2);
  color: var(--brown);
  font-size: 12px;
  font-weight: 700;
}
.chip:hover { background: var(--mint-soft); border-color: var(--mint-deep); }

/* ---------- Share ---------- */
.share-buttons {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ---------- Footer ---------- */
.footer {
  margin-top: 72px;
  padding-top: 30px;
  border-top: 1px dashed var(--line);
  text-align: center;
  color: var(--brown-soft);
  font-family: "Gaegu", serif;
  font-size: 18px;
}
.footer-family { color: var(--brown); margin: 4px 0; }
.footer-tiny {
  margin-top: 24px;
  font-size: 12px;
  color: var(--brown-mute);
  font-family: "Gowun Batang", serif;
}
.footer-tiny a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Overlay (thank you) ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(92, 74, 61, 0.45);
  backdrop-filter: blur(6px);
  display: none;              /* class toggle */
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.overlay.is-open {
  display: flex;
  opacity: 1;
}
.overlay-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 24px 28px;
  text-align: center;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.5);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.overlay.is-open .overlay-card { transform: translateY(0); }
.overlay-card h3 {
  margin: 8px 0 6px;
  font-family: "Gaegu", serif;
  font-size: 28px;
  color: var(--pink-deep);
}
.overlay-card p {
  margin: 0 0 22px;
  color: var(--brown-soft);
  font-size: 15px;
}
.overlay-emoji {
  font-size: 54px;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,0.15));
}
.hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: var(--radius);
}
.hearts span {
  position: absolute;
  bottom: -30px;
  font-size: 22px;
  opacity: 0;
  animation: float-up 2.6s ease-out forwards;
}
.hearts span:nth-child(1) { left: 12%; animation-delay: 0.05s; }
.hearts span:nth-child(2) { left: 30%; animation-delay: 0.25s; font-size: 28px; }
.hearts span:nth-child(3) { left: 50%; animation-delay: 0.15s; font-size: 20px; }
.hearts span:nth-child(4) { left: 70%; animation-delay: 0.35s; font-size: 26px; }
.hearts span:nth-child(5) { left: 86%; animation-delay: 0.1s; }
@keyframes float-up {
  0%   { transform: translateY(0) scale(0.7) rotate(-10deg); opacity: 0; }
  15%  { opacity: 1; }
  100% { transform: translateY(-380px) scale(1.1) rotate(10deg); opacity: 0; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 40px);
  background: var(--brown);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 200;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}
.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ---------- Admin ---------- */
.admin-body {
  background: var(--cream);
}
.admin-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 20px 80px;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.admin-header h1 {
  margin: 4px 0 0;
  font-family: "Gaegu", serif;
  font-size: 26px;
  color: var(--brown);
}
.admin-eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--pink-deep);
  text-transform: uppercase;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 720px) {
  .stat-row { grid-template-columns: repeat(4, 1fr); }
}
.stat-card {
  background: #fff;
  padding: 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line-soft);
  position: relative;
}
.stat-card.mint { background: linear-gradient(160deg, #fff 60%, var(--mint-soft)); }
.stat-card.pink { background: linear-gradient(160deg, #fff 60%, var(--pink-soft)); }
.stat-card.gold { background: linear-gradient(160deg, #fff 60%, #f5e2c4); }
.stat-label {
  font-size: 12px;
  color: var(--brown-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.stat-value {
  font-family: "Gaegu", serif;
  font-size: 36px;
  color: var(--brown);
  line-height: 1;
  margin-top: 4px;
}
.stat-hint {
  font-size: 12px;
  color: var(--brown-mute);
  margin-top: 4px;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brown-soft);
  font-size: 13px;
  font-weight: 700;
}
.filter-btn.is-on {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}
.admin-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.admin-actions input[type="search"] {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--brown);
  font: inherit;
  outline: none;
  min-width: 200px;
  max-width: 100%;
}
.admin-actions input[type="search"]:focus {
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 4px rgba(226, 155, 155, 0.15);
}

.admin-list {
  display: grid;
  gap: 12px;
}
.rsvp-row {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: start;
}
.rsvp-row .row-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.rsvp-row .name {
  font-family: "Gaegu", serif;
  font-size: 22px;
  color: var(--brown);
}
.rsvp-row .badge {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.badge-yes { background: var(--mint-soft); color: var(--mint-deep); }
.badge-no { background: var(--pink-soft); color: var(--pink-deep); }
.rsvp-row .meta {
  font-size: 13px;
  color: var(--brown-mute);
}
.rsvp-row .message {
  grid-column: 1 / -1;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--cream-2);
  color: var(--brown);
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
}
.rsvp-row .row-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}
.icon-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brown-mute);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.icon-btn:hover { color: var(--pink-deep); border-color: var(--pink-deep); }
.icon-btn.danger:hover { color: #b6423e; border-color: #b6423e; background: var(--pink-soft); }

.loading, .empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--brown-mute);
}
.empty { background: #fff; border-radius: var(--radius); border: 1px dashed var(--line); }
.empty-emoji { font-size: 44px; margin-bottom: 12px; }
.empty .hint { font-size: 13px; color: var(--brown-mute); margin-top: 8px; }

/* ---------- Small phone tweaks ---------- */
@media (max-width: 380px) {
  .hero-name .ko { font-size: 34px; }
  .hero-invite { font-size: 20px; }
  .hero-countdown strong { font-size: 22px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .radio-row { grid-template-columns: 1fr; }
  .map-buttons { grid-template-columns: 1fr; }
  .map-buttons .btn-cream { grid-column: auto; }
  .share-buttons { grid-template-columns: 1fr; }
}
