/* ========================================
   SERVICONT — ESTILOS GLOBALES
   Oficina contable en Osorno, Chile
   ======================================== */

/* ===== 1. VARIABLES ===== */
:root {
  --color-primary: #1a5276;
  --color-primary-dark: #0e3a56;
  --color-primary-light: #2e86c1;
  --color-primary-bg: #eaf4fb;
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-alt: #f4f7fa;
  --color-text: #1a1a2e;
  --color-text-body: #4a4a5a;
  --color-text-light: #6b7280;
  --color-border: #e2e8f0;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #1ebe57;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.75rem;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition: 0.3s ease;
  --max-width: 1140px;
  --header-height: 70px;
}

/* ===== 2. RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--color-text-body);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-light);
}

ul, ol {
  list-style: none;
}

/* ===== 3. TIPOGRAFÍA ===== */
h1, h2, h3, h4 {
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }

p + p { margin-top: var(--space-sm); }

/* ===== 4. LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--blue {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section__header h2 {
  margin-bottom: var(--space-xs);
}

.section__header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
}

.section--blue .section__header h2 {
  color: var(--color-white);
}

.section--blue .section__header h2::after {
  background: rgba(255, 255, 255, 0.5);
}

.section__header p {
  color: var(--color-text-light);
}

.section--blue .section__header p {
  color: rgba(255, 255, 255, 0.85);
}

/* ===== 5. HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  z-index: 1000;
  height: var(--header-height);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  padding: 0.5rem 0.75rem;
  color: var(--color-text-body);
  font-size: var(--font-size-sm);
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary);
  background: var(--color-primary-bg);
}

/* Dropdown servicios */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  cursor: pointer;
}

.nav__dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform var(--transition);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown--open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--color-text-body);
  font-size: var(--font-size-sm);
  transition: all var(--transition);
}

.nav__dropdown-menu a:hover {
  background: var(--color-primary-bg);
  color: var(--color-primary);
}

/* Hamburguesa */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

.menu-toggle--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle--active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== 6. HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
  color: var(--color-white);
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  text-align: center;
}

.hero h1 {
  color: var(--color-white);
  max-width: 780px;
  margin: 0 auto var(--space-md);
  font-size: var(--font-size-4xl);
}

.hero__subtitle {
  font-size: var(--font-size-lg);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero--compact {
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
}

.hero--compact h1 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-sm);
}

/* ===== 7. BOTONES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: var(--font-size-base);
  font-weight: 600;
  font-family: var(--font-family);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-bg);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
}

.btn--whatsapp:hover {
  background: var(--color-whatsapp-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn--blue {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--blue:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--font-size-sm);
}

/* ===== 8. CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

a.card {
  display: block;
  color: inherit;
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.card__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xs);
}

.card__text {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  line-height: 1.7;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: var(--space-sm);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-primary);
}

.card__link:hover {
  gap: 0.5rem;
}

/* ===== 9. FEATURES / LISTA ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.feature {
  display: flex;
  gap: var(--space-sm);
}

.feature__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-primary-bg);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-lg);
}

.feature__text h3 {
  font-size: var(--font-size-base);
  margin-bottom: 0.25rem;
}

.feature__text p {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
}

/* Checkmarks list */
.check-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-sm);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: var(--font-size-base);
}

.check-list li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== 10. PASOS (proceso) ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
  counter-reset: step;
}

.step {
  text-align: center;
  counter-increment: step;
}

.step__number {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-lg);
  margin: 0 auto var(--space-sm);
}

.step h3 {
  font-size: var(--font-size-base);
  margin-bottom: 0.25rem;
}

.step p {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
}

/* ===== 11. CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.cta-section p {
  opacity: 0.9;
  max-width: 550px;
  margin: 0 auto var(--space-lg);
}

.cta-section .hero__cta {
  justify-content: center;
}

/* ===== 12. CONTACTO ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.contact-item:hover {
  box-shadow: var(--shadow-md);
}

.contact-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-primary-bg);
  color: var(--color-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-item__info h3 {
  font-size: var(--font-size-base);
  margin-bottom: 0.125rem;
}

.contact-item__info p,
.contact-item__info a {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

.contact-item__info a:hover {
  color: var(--color-primary);
}

/* Mapa */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-lg);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* ===== 13. DOS COLUMNAS ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.two-col__text h2 {
  margin-bottom: var(--space-sm);
}

.two-col__text h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  margin-top: var(--space-sm);
  border-radius: 2px;
}

.two-col__text p {
  margin-bottom: var(--space-sm);
}

.two-col__text .btn {
  margin-top: var(--space-sm);
}

.two-col__visual {
  background: var(--color-primary-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
}

.two-col__visual .stat {
  margin-bottom: var(--space-md);
}

.two-col__visual .stat__number {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.two-col__visual .stat__label {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin-top: 0.25rem;
}

/* Two-col con imagen */
.two-col__visual--with-img {
  background: none;
  padding: 0;
}

.two-col__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  max-height: 360px;
}

.two-col__stats {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.two-col__stats .stat {
  flex: 1;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius);
  padding: var(--space-sm) var(--space-xs);
  margin-bottom: 0;
}

.two-col__stats .stat__number {
  font-size: var(--font-size-xl);
  color: var(--color-white);
}

.two-col__stats .stat__label {
  color: rgba(255, 255, 255, 0.85);
}

/* Placeholder para imágenes de stock */
.img-placeholder {
  background: var(--color-bg-alt);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-xs);
}

.img-placeholder__icon {
  font-size: 2.5rem;
  opacity: 0.5;
}

/* ===== 14. MENSAJE DESTACADO ===== */
.highlight-box {
  background: var(--color-primary-bg);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}

.highlight-box p {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  font-weight: 500;
}

/* ===== 15. FOOTER ===== */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer__brand span {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

.footer h4 {
  color: var(--color-white);
  font-size: var(--font-size-base);
  margin-bottom: var(--space-sm);
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
  transition: color var(--transition);
}

.footer ul li a:hover {
  color: var(--color-white);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: var(--font-size-sm);
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact-item a:hover {
  color: var(--color-white);
}

.footer__contact-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.5);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  text-align: center;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.5);
}

/* ===== 16. WHATSAPP FLOTANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.whatsapp-float__btn {
  width: 56px;
  height: 56px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float__btn:hover {
  background: var(--color-whatsapp-dark);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__btn svg {
  width: 28px;
  height: 28px;
  fill: var(--color-white);
}

.whatsapp-float__label {
  background: var(--color-white);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float__label {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse-wa {
  0% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6); }
  100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
}

/* ===== 17. UTILIDADES ===== */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-lg { margin-bottom: var(--space-lg); }
.no-scroll { overflow: hidden; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== 18. RESPONSIVE ===== */

/* Tablet (max 992px) */
@media (max-width: 992px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  h1 { font-size: var(--font-size-2xl); }
  .hero h1 { font-size: var(--font-size-3xl); }
  .hero--compact h1 { font-size: var(--font-size-2xl); }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
  :root {
    --space-2xl: 3rem;
    --space-3xl: 4rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-md);
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }

  .nav--open {
    transform: translateX(0);
  }

  .nav__link {
    padding: 0.75rem var(--space-sm);
    font-size: var(--font-size-base);
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }

  .nav__dropdown-toggle::after {
    float: right;
    margin-top: 0.5rem;
  }

  .nav__dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height var(--transition);
  }

  .nav__dropdown--open .nav__dropdown-menu {
    max-height: 300px;
    padding: 0.25rem 0;
  }

  .nav__dropdown--open .nav__dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .nav__dropdown-menu a {
    padding-left: var(--space-lg);
  }

  .hero h1 {
    font-size: var(--font-size-2xl);
  }

  .hero--compact h1 {
    font-size: var(--font-size-2xl);
  }

  .hero {
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .whatsapp-float__label {
    display: none;
  }
}

/* Small mobile (max 480px) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: var(--font-size-xl);
  }

  .two-col__stats {
    flex-direction: column;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
