/* ============================================
   INNER SPACE DESIGN & DEVELOPMENT INC
   Premium Dark Aesthetic — style.css
   ============================================ */

/* --- Fonts (Fontshare) --- */
@import url('https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&display=swap');

/* --- CSS Variables --- */
:root {
  --bg-dark: #111111;
  --bg-darker: #0a0a0a;
  --bg-card: #1a1a1a;
  --bg-surface: #161616;
  --text-white: #ffffff;
  --text-light: #e0e0e0;
  --text-muted: #999999;
  --text-faint: #666666;
  --accent: #7aee4d;
  --accent-hover: #65d63a;
  --border: #2a2a2a;
  --font-display: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--bg-darker);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar__left span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar__left a {
  color: var(--text-muted);
  transition: color var(--transition-interactive);
}

.top-bar__left a:hover {
  color: var(--text-white);
}

.top-bar__socials {
  display: flex;
  align-items: center;
  gap: 0;
}

.top-bar__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 36px;
  color: var(--text-muted);
  border-left: 1px solid var(--border);
  transition: color var(--transition-interactive);
}

.top-bar__socials a:hover {
  color: var(--text-white);
}

.top-bar__socials svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   HEADER / STICKY NAV
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: box-shadow 0.3s var(--ease-out);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__logo svg {
  width: 44px;
  height: 44px;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.header__logo-text .company-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.header__logo-text .company-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-interactive);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

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

.header__nav a:hover::after {
  width: 100%;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--accent);
  color: #111;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: background var(--transition-interactive), transform var(--transition-interactive);
  flex-shrink: 0;
  cursor: pointer;
}

.header__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.header__cta:active {
  transform: translateY(0);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-dark);
  position: relative;
  padding: 80px 40px;
}

.hero__content {
  max-width: 1000px;
}

.hero__tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-white);
  letter-spacing: -1px;
  margin-bottom: 32px;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--accent);
  color: #111;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: background var(--transition-interactive), transform var(--transition-interactive);
  cursor: pointer;
  border: none;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color var(--transition-interactive), transform var(--transition-interactive);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator__dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: bounce 2s infinite;
}

.scroll-indicator__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-12px); }
  60% { transform: translateY(-6px); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--bg-dark);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about__heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-white);
}

.about__content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about__content p:last-child {
  margin-bottom: 0;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.stat__number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat__label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner__text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.cta-banner__text span {
  color: var(--accent);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 120px 0;
  background: var(--bg-dark);
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 64px;
  line-height: 1.7;
}

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

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 28px;
  transition: border-color var(--transition-interactive), transform var(--transition-interactive);
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 238, 77, 0.08);
  border-radius: 8px;
  margin-bottom: 24px;
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
  fill: none;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   BUILDING SUCCESS INTERLUDE
   ============================================ */
.interlude {
  padding: 140px 0;
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
}

.interlude__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.03;
}

.interlude__watermark svg {
  width: 500px;
  height: 500px;
}

.interlude .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.interlude__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 32px;
}

.interlude__text {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   WORK / PORTFOLIO
   ============================================ */
.work {
  padding: 120px 0;
  background: var(--bg-dark);
}

.work__header {
  margin-bottom: 80px;
}

.project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2px;
  min-height: 500px;
}

.project:nth-child(even) .project__image {
  order: 2;
}

.project:nth-child(even) .project__info {
  order: 1;
}

.project__image {
  overflow: hidden;
  position: relative;
}

.project__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.project:hover .project__image img {
  transform: scale(1.03);
}

.project__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
}

.project__type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.project__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.project__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.project__details {
  display: flex;
  gap: 32px;
  font-size: 13px;
  color: var(--text-faint);
}

.project__details span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.project__details strong {
  color: var(--text-white);
  font-weight: 600;
}

/* ============================================
   MISSION
   ============================================ */
.mission {
  padding: 140px 0;
  background: var(--bg-dark);
  text-align: center;
}

.mission__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 32px;
}

.mission__accent {
  color: var(--accent);
}

.mission__text {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 120px 0;
  background: var(--bg-darker);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

.testimonial-card__quote {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-card__author {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--bg-dark);
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.contact__info p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__item-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 238, 77, 0.08);
  border-radius: 8px;
  flex-shrink: 0;
}

.contact__item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
}

.contact__item-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.contact__item-value {
  font-size: 16px;
  color: var(--text-white);
  line-height: 1.5;
}

.contact__item-value a {
  color: var(--text-white);
  transition: color var(--transition-interactive);
}

.contact__item-value a:hover {
  color: var(--accent);
}

/* Contact Form */
.contact__form {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
}

.contact__form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--transition-interactive);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__form .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 16px;
  font-size: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

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

.footer__left {
  font-size: 13px;
  color: var(--text-faint);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__links a {
  font-size: 13px;
  color: var(--text-faint);
  transition: color var(--transition-interactive);
}

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

/* ============================================
   FLOATING SOCIAL BAR
   ============================================ */
.floating-social {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.floating-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text-muted);
  transition: color var(--transition-interactive), background var(--transition-interactive);
}

.floating-social a:hover {
  color: var(--accent);
  background: rgba(122, 238, 77, 0.05);
}

.floating-social a + a {
  border-top: 1px solid var(--border);
}

.floating-social svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  z-index: 90;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-white);
  transition: color var(--transition-interactive);
}

.mobile-nav a:hover {
  color: var(--accent);
}

/* ============================================
   SCROLL ANIMATIONS (opacity only — no CLS)
   ============================================ */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .header__nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header__cta {
    display: none;
  }

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

  .about .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .project {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .project:nth-child(even) .project__image {
    order: 1;
  }

  .project:nth-child(even) .project__info {
    order: 2;
  }

  .project__image {
    height: 300px;
  }

  .project__info {
    padding: 40px;
  }

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

  .contact .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .floating-social {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .top-bar__left {
    gap: 12px;
    font-size: 11px;
  }

  .hero {
    padding: 60px 24px;
    min-height: 90vh;
  }

  .hero__title {
    font-size: clamp(36px, 10vw, 56px);
  }

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

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .stat__number {
    font-size: 28px;
  }

  .project__info {
    padding: 32px 24px;
  }

  .testimonial-card {
    padding: 32px;
  }

  .contact__form {
    padding: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero__cta-group .btn-primary,
  .hero__cta-group .btn-secondary {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .top-bar__socials {
    display: none;
  }

  .header .container {
    height: 64px;
  }

  .header__logo svg {
    width: 36px;
    height: 36px;
  }

  .header__logo-text .company-name {
    font-size: 13px;
  }

  .header__logo-text .company-sub {
    font-size: 8px;
  }

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

  .project__details {
    flex-direction: column;
    gap: 8px;
  }
}
