/*
Theme Name: BB Recovery
Theme URI: https://bbr.gdlife.co.uk
Author: GDLife Media
Author URI: https://gdlifemedia.com
Description: Custom theme for BB Recovery — 24/7 vehicle recovery and transportation in Essex.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
License: Proprietary
Text Domain: bb-recovery
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand */
  --clr-navy: #0D3F82;
  --clr-navy-dark: #092D5C;
  --clr-red: #BD141E;
  --clr-red-hover: #A01018;
  --clr-red-glow: rgba(189, 20, 30, 0.35);

  /* Neutrals */
  --clr-dark: #171212;
  --clr-grey-700: #414042;
  --clr-grey-400: #9CA3AF;
  --clr-grey-200: #E5E7EB;
  --clr-grey-100: #F5F5F5;
  --clr-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --gap: 1.5rem;
  --radius: 8px;
  --radius-lg: 12px;

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--clr-dark);
  background: var(--clr-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-dark);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  line-height: 1;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--clr-red);
  color: var(--clr-white);
}
.btn--primary:hover {
  background: var(--clr-red-hover);
  box-shadow: 0 4px 16px var(--clr-red-glow);
}

.btn--secondary {
  background: var(--clr-navy);
  color: var(--clr-white);
}
.btn--secondary:hover { background: var(--clr-navy-dark); }

.btn--outline {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid var(--clr-white);
}
.btn--outline:hover {
  background: var(--clr-white);
  color: var(--clr-navy);
}

.btn--phone {
  background: var(--clr-red);
  color: var(--clr-white);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.btn--phone:hover {
  background: var(--clr-red-hover);
  box-shadow: 0 4px 16px var(--clr-red-glow);
}

.btn--phone svg {
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--clr-navy-dark);
  color: var(--clr-white);
  font-size: 0.875rem;
  padding: 0.5rem 0;
}

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

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  opacity: 0.9;
}

.top-bar__item svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex-shrink: 0;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar__social a {
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.top-bar__social a:hover { opacity: 1; }
.top-bar__social svg { width: 1.125em; height: 1.125em; fill: currentColor; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--clr-white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.site-logo img {
  height: 56px;
  width: auto;
}

/* Nav */
.main-nav__list {
  display: flex;
  gap: 0.25rem;
}

.main-nav__list a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--clr-grey-700);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.main-nav__list a:hover,
.main-nav__list .current-menu-item a {
  color: var(--clr-navy);
  background: rgba(13, 63, 130, 0.06);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-dark);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span + span { margin-top: 6px; }

/* Hamburger → X animation */
.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Nav overlay — sits in root stacking context */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.is-visible { opacity: 1; pointer-events: all; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  color: var(--clr-white);
  padding: 6rem 0;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(9, 45, 92, 0.97) 0%,
    rgba(9, 45, 92, 0.88) 35%,
    rgba(13, 63, 130, 0.6) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 620px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  color: var(--clr-white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 600px;
}

.hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-grey-200);
  padding: 1.25rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--clr-dark);
}

.trust-item svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--clr-navy);
  flex-shrink: 0;
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section {
  padding: 5rem 0;
}

.section--grey { background: var(--clr-grey-100); }
.section--navy {
  background: linear-gradient(135deg, var(--clr-navy-dark) 0%, var(--clr-navy) 100%);
  color: var(--clr-white);
}

.section__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-red);
  margin-bottom: 0.5rem;
}

.section--navy .section__label { color: rgba(255,255,255,0.7); }

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section--navy .section__title { color: var(--clr-white); }

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--clr-grey-700);
  max-width: 640px;
  line-height: 1.7;
}

.section--navy .section__subtitle { color: rgba(255,255,255,0.8); }

.section__header {
  margin-bottom: 3rem;
}

.section__header--center { text-align: center; }
.section__header--center .section__subtitle { margin: 0 auto; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--clr-grey-200);
  transition: box-shadow var(--transition-slow), transform var(--transition), border-color var(--transition-slow);
  position: relative;
}

.service-card:hover {
  box-shadow: 0 12px 32px rgba(13, 63, 130, 0.1);
  transform: translateY(-4px);
  border-color: rgba(13, 63, 130, 0.2);
}

.service-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, rgba(13, 63, 130, 0.08), rgba(13, 63, 130, 0.15));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--clr-navy);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--clr-grey-700);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--clr-navy);
  transition: gap var(--transition), color var(--transition);
}

.service-card__link:hover {
  gap: 0.625rem;
  color: var(--clr-red);
}

.service-card__link svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* ============================================================
   ABOUT / INTRO SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

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

.about__content .section__label { display: block; }

.about__content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.about__content p {
  color: var(--clr-grey-700);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--clr-grey-200);
}

.about__stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--clr-navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about__stat-label {
  font-size: 0.8125rem;
  color: var(--clr-grey-400);
  font-weight: 500;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  text-align: center;
  padding: 2.25rem 1.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  transition: box-shadow 0.4s ease, transform 0.2s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-navy), var(--clr-red));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-card:hover {
  box-shadow: 0 12px 32px rgba(13, 63, 130, 0.12);
  transform: translateY(-4px);
  border-color: rgba(13, 63, 130, 0.15);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  background: linear-gradient(145deg, var(--clr-navy) 0%, var(--clr-navy-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(13, 63, 130, 0.25);
  flex-shrink: 0;
}

.why-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #FFFFFF;
  flex-shrink: 0;
  display: block;
}

.why-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--clr-dark);
}

.why-card p {
  font-size: 0.875rem;
  color: var(--clr-grey-700);
  line-height: 1.65;
}

/* ============================================================
   COVERAGE / AREAS
   ============================================================ */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.coverage-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}

.coverage-item:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

.coverage-item svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
  opacity: 0.7;
  flex-shrink: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--clr-grey-200);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--clr-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}

.faq-item__question:hover { color: var(--clr-navy); }

.faq-item__icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item__icon line { stroke: var(--clr-grey-400); stroke-width: 2; }

.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item.is-open .faq-item__icon line { stroke: var(--clr-red); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-item__answer p {
  font-size: 0.9375rem;
  color: var(--clr-grey-700);
  line-height: 1.7;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-red) 0%, var(--clr-red-hover) 100%);
  color: var(--clr-white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.03) 20px,
    rgba(255,255,255,0.03) 40px
  );
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--clr-white);
}

.cta-banner p {
  font-size: 1.0625rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.cta-banner .btn--outline {
  border-color: var(--clr-white);
  color: var(--clr-white);
  font-size: 1.125rem;
  font-weight: 700;
}
.cta-banner .btn--outline:hover {
  background: var(--clr-white);
  color: var(--clr-red);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--clr-navy-dark);
  color: var(--clr-white);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand p {
  font-size: 0.9375rem;
  opacity: 0.7;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer__brand .site-logo { margin-bottom: 0.5rem; }
.footer__brand .site-logo img { filter: brightness(0) invert(1); }

.footer__heading {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.5);
}

.footer__links li + li { margin-top: 0.625rem; }

.footer__links a {
  font-size: 0.9375rem;
  opacity: 0.75;
  transition: opacity var(--transition), padding-left var(--transition);
}
.footer__links a:hover {
  opacity: 1;
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  opacity: 0.75;
  line-height: 1.5;
}

.footer__contact-item + .footer__contact-item { margin-top: 0.875rem; }

.footer__contact-item svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
  flex-shrink: 0;
  margin-top: 0.1875rem;
}

.footer__contact-item a { opacity: 1; }
.footer__contact-item a:hover { text-decoration: underline; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  opacity: 0.5;
}

.footer-bottom a:hover { opacity: 1; }

/* ============================================================
   RESPONSIVE — TABLET (1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --header-height: 70px; }

  /* Show hamburger, hide desktop nav */
  .menu-toggle { display: flex; flex-direction: column; gap: 6px; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: var(--clr-white);
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    padding: 5rem 1.5rem 2rem;
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
  }

  .main-nav.is-open { right: 0; }

  .main-nav__list {
    flex-direction: column;
    gap: 0;
  }

  .main-nav__list a {
    padding: 1rem 0;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--clr-grey-200);
    border-radius: 0;
  }

  /* Phone button — icon only on tablet/mobile, properly sized */
  .header-cta .btn--phone {
    padding: 0.625rem;
    font-size: 0;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    justify-content: center;
  }

  .header-cta .btn--phone svg {
    width: 20px;
    height: 20px;
  }

  .header-cta .btn--phone .desktop-text { display: none; }

  .top-bar__left { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE (768px)
   ============================================================ */
@media (max-width: 768px) {
  .hero { padding: 3.5rem 0; min-height: auto; }
  .hero h1 { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

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

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

/* ============================================================
   RESPONSIVE — SMALL MOBILE (480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .about__stats { grid-template-columns: 1fr; }
  .trust-bar .container { flex-direction: column; gap: 1rem; }
  .why-grid { grid-template-columns: 1fr; }
}
