/*
Theme Name:        Vinicius Muynarski Advogados
Theme URI:         https://vmuynarskiadvogados.com.br
Author:            Vinicius Muynarski Gonçalves
Author URI:        https://vmuynarskiadvogados.com.br
Description:       Tema personalizado para Vinicius Muynarski Advogados. Identidade visual navy + verde-limão, fontes Syne + DM Sans.
Version:           2.0.0
Requires at least: 6.0
Tested up to:      6.7
Requires PHP:      8.0
License:           Privado
Text Domain:       vmuynarski
*/

/* ─── IMPORT FONTS ──────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&family=Syne:wght@600;700;800&display=swap');

/* ─── VARIÁVEIS ─────────────────────────────────────────────────────────────── */
:root {
  --navy:      #0B1E3D;
  --navy-mid:  #112240;
  --navy-dk:   #060f1e;
  --lime:      #8FBC3F;
  --lime-lt:   #B5D96A;
  --lime-dk:   #6A9A2A;
  --white:     #FFFFFF;
  --off:       #F8F7F4;
  --gray-100:  #F3F4F6;
  --gray-300:  #D1D5DB;
  --gray-500:  #6B7280;
  --gray-700:  #374151;
  --display:   'Syne', Arial, sans-serif;
  --sans:      'DM Sans', Arial, sans-serif;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius:    4px;
}

/* ─── RESET & BASE ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

a { color: var(--lime-dk); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--lime); }

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

/* ─── CONTAINER ─────────────────────────────────────────────────────────────── */
.vm-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ─── ASTRA OVERRIDES ───────────────────────────────────────────────────────── */
/* Reset Astra defaults to use our design */
.ast-container { max-width: 1200px; }
#masthead, .site-header { display: none !important; } /* Usamos nosso próprio header */
#colophon, .site-footer { display: none !important; } /* Usamos nosso próprio footer */
.ast-page-builder-template .entry-content { margin: 0; padding: 0; }
.ast-page-builder-template { padding: 0; }
body.page { background: var(--white); }

/* ─── HEADER / NAV ──────────────────────────────────────────────────────────── */
#vm-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(11, 30, 61, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(143, 188, 63, 0.2);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
#vm-header.scrolled {
  background: rgba(11, 30, 61, 0.98);
  box-shadow: 0 2px 0 rgba(143, 188, 63, 0.3);
}

.vm-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.vm-logo-mark {
  width: 40px; height: 40px;
  background: var(--navy-mid);
  border-radius: 6px;
  border: 1.5px solid rgba(143,188,63,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.vm-logo-mark svg { width: 26px; height: 26px; }
.vm-logo-text strong {
  display: block;
  font-family: var(--display);
  font-size: 14px; font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.vm-logo-text span {
  display: block;
  font-family: var(--sans);
  font-size: 8px; font-weight: 400;
  color: var(--lime);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

.vm-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.vm-nav a {
  font-family: var(--sans);
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.25s;
  position: relative;
}
.vm-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--lime);
  transition: right 0.3s var(--ease);
}
.vm-nav a:hover { color: var(--white); }
.vm-nav a:hover::after { right: 0; }
.vm-nav .vm-nav-cta {
  background: var(--lime);
  color: var(--navy) !important;
  font-weight: 500 !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background 0.25s, transform 0.25s !important;
}
.vm-nav .vm-nav-cta::after { display: none !important; }
.vm-nav .vm-nav-cta:hover { background: var(--lime-lt) !important; transform: translateY(-1px); }

.vm-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.vm-nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
  transition: 0.3s;
}

/* ─── BUTTONS ───────────────────────────────────────────────────────────────── */
.vm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--navy) !important;
  font-family: var(--sans);
  font-size: 14px; font-weight: 500;
  padding: 15px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.vm-btn-primary:hover {
  background: var(--lime-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(143,188,63,0.35);
  color: var(--navy) !important;
}

.vm-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.75) !important;
  font-family: var(--sans);
  font-size: 14px; font-weight: 400;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.vm-btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime) !important;
  transform: translateY(-2px);
}

/* ─── SECTION BASE ──────────────────────────────────────────────────────────── */
.vm-section { padding: 92px 5%; }
.vm-section-navy { background: var(--navy); }
.vm-section-off  { background: var(--off); }
.vm-section-white { background: var(--white); }

.vm-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 3.5px;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.vm-section-tag::before {
  content: '';
  width: 22px; height: 1.5px;
  background: var(--lime);
}

.vm-section-title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 0;
}
.vm-section-title-white { color: var(--white); }

/* ─── CARDS ─────────────────────────────────────────────────────────────────── */
.vm-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  overflow: hidden;
}
.vm-card-navy {
  background: var(--navy-mid);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ─── HERO ───────────────────────────────────────────────────────────────────── */
.vm-hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: 68px;
}
.vm-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(143,188,63,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143,188,63,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.vm-hero-left { padding: 60px 5% 60px 8%; position: relative; z-index: 1; }
.vm-hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 3px; color: var(--lime); text-transform: uppercase;
  margin-bottom: 24px;
}
.vm-hero-tag::before { content: ''; width: 26px; height: 1.5px; background: var(--lime); }
.vm-hero-name {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800; color: var(--white);
  line-height: 1.0; letter-spacing: -1.5px;
  margin: 0 0 6px;
}
.vm-hero-name em { font-style: normal; color: var(--lime); }
.vm-hero-sub {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.38); letter-spacing: 4px;
  text-transform: uppercase; margin: 0 0 24px;
}
.vm-hero-line { width: 48px; height: 2px; background: var(--lime); margin-bottom: 22px; }
.vm-hero-desc {
  font-family: var(--sans); font-size: clamp(15px,1.5vw,17px);
  font-weight: 300; color: rgba(255,255,255,0.65);
  line-height: 1.8; max-width: 460px; margin: 0 0 40px;
}
.vm-hero-desc strong { color: var(--white); font-weight: 500; }
.vm-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.vm-hero-right {
  position: relative; height: 100vh;
  display: flex; align-items: stretch;
}
.vm-hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.vm-hero-img-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--navy) 0%, transparent 28%),
    linear-gradient(to top, var(--navy) 0%, transparent 22%);
}
.vm-hero-bar {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 4px; background: var(--lime); z-index: 2;
}

/* ─── SOBRE ──────────────────────────────────────────────────────────────────── */
.vm-sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  margin-top: 56px;
}
.vm-sobre-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; }
.vm-sobre-img-wrap img { width: 100%; height: 500px; object-fit: cover; object-position: center top; display: block; }
.vm-sobre-img-wrap::before {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 64px; height: 64px; background: var(--lime); z-index: 1;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.vm-sobre-subtitle {
  font-family: var(--display); font-size: 26px; font-weight: 700;
  color: var(--navy); margin: 0 0 20px;
}
.vm-sobre-body {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: var(--gray-700); line-height: 1.85; margin-bottom: 16px;
}
.vm-sobre-body strong { color: var(--navy); font-weight: 500; }
.vm-sobre-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.vm-sobre-tag {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  color: var(--navy); background: var(--white);
  border: 1px solid var(--gray-300);
  padding: 5px 12px; border-radius: 3px;
  letter-spacing: 0.8px; text-transform: uppercase;
}
.vm-sobre-tag.hl { background: var(--lime); border-color: var(--lime); }

/* ─── ÁREAS ──────────────────────────────────────────────────────────────────── */
.vm-areas-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end; margin-bottom: 48px;
}
.vm-areas-desc {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.5); line-height: 1.8;
}
.vm-areas-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.vm-area-card {
  background: var(--navy-mid); padding: 32px 26px;
  transition: background 0.3s; position: relative; overflow: hidden;
  cursor: default;
}
.vm-area-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 2px; background: var(--lime); transition: right 0.35s var(--ease);
}
.vm-area-card:hover { background: #0e2748; }
.vm-area-card:hover::before { right: 0; }
.vm-area-icon {
  width: 40px; height: 40px; background: rgba(143,188,63,0.1);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px; transition: background 0.3s;
}
.vm-area-card:hover .vm-area-icon { background: rgba(143,188,63,0.2); }
.vm-area-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--lime); stroke-width: 1.5; }
.vm-area-name {
  font-family: var(--display); font-size: 15px; font-weight: 700;
  color: var(--white); margin-bottom: 10px; line-height: 1.2;
}
.vm-area-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.vm-area-list li {
  font-family: var(--sans); font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.45); padding-left: 12px; position: relative;
}
.vm-area-list li::before { content: '·'; position: absolute; left: 0; color: var(--lime); }

/* ─── BLOG / POSTS ───────────────────────────────────────────────────────────── */
.vm-blog-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.vm-blog-more {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: var(--lime-dk); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  transition: gap 0.25s;
}
.vm-blog-more:hover { gap: 10px; color: var(--lime-dk); }
.vm-blog-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 20px; }

.vm-post-card {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-decoration: none; display: flex; flex-direction: column;
  background: var(--white);
}
.vm-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(11,30,61,0.1);
  border-color: var(--lime);
}
.vm-post-img {
  height: 190px; position: relative; flex-shrink: 0;
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.vm-post-img img { width: 100%; height: 100%; object-fit: cover; }
.vm-post-img-placeholder svg { width: 44px; height: 44px; opacity: 0.14; }
.vm-post-cat {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  color: var(--navy); background: var(--lime);
  padding: 4px 10px; border-radius: 3px;
  letter-spacing: 1.5px; text-transform: uppercase;
  z-index: 1;
}
.vm-post-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.vm-post-meta { font-family: var(--sans); font-size: 11px; color: var(--gray-500); margin-bottom: 8px; }
.vm-post-title {
  font-family: var(--display); font-size: 16px; font-weight: 700;
  color: var(--navy); line-height: 1.3; margin-bottom: 10px; flex: 1;
}
.vm-post-excerpt {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  color: var(--gray-500); line-height: 1.65;
}
.vm-post-read {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 16px; font-family: var(--sans);
  font-size: 12px; font-weight: 500; color: var(--lime-dk);
}

/* ─── SINGLE POST ────────────────────────────────────────────────────────────── */
.vm-single-hero {
  padding: 120px 5% 60px;
  background: var(--navy);
  text-align: center;
}
.vm-single-cat {
  display: inline-block;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  color: var(--navy); background: var(--lime);
  padding: 4px 12px; border-radius: 3px;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px;
}
.vm-single-title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800; color: var(--white);
  line-height: 1.1; max-width: 820px;
  margin: 0 auto 16px;
}
.vm-single-meta {
  font-family: var(--sans); font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.vm-single-content {
  max-width: 780px; margin: 0 auto;
  padding: 56px 5% 80px;
}
.vm-single-content p {
  font-family: var(--sans); font-size: 17px; font-weight: 300;
  color: var(--gray-700); line-height: 1.85; margin-bottom: 24px;
}
.vm-single-content h2 {
  font-family: var(--display); font-size: 28px; font-weight: 700;
  color: var(--navy); margin: 40px 0 16px;
}
.vm-single-content h3 {
  font-family: var(--display); font-size: 22px; font-weight: 700;
  color: var(--navy); margin: 32px 0 12px;
}
.vm-single-content ul, .vm-single-content ol {
  font-family: var(--sans); font-size: 16px; font-weight: 300;
  color: var(--gray-700); line-height: 1.8;
  margin: 0 0 24px 24px;
}
.vm-single-content li { margin-bottom: 8px; }
.vm-single-content strong { color: var(--navy); font-weight: 600; }
.vm-single-content blockquote {
  border-left: 3px solid var(--lime);
  padding: 16px 24px; margin: 32px 0;
  background: var(--off);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.vm-single-content blockquote p {
  font-style: italic; color: var(--navy); margin: 0;
}
.vm-single-content .wp-block-image { margin: 32px 0; }
.vm-single-content .wp-block-image img { border-radius: var(--radius); }

/* ─── CONTATO ────────────────────────────────────────────────────────────────── */
.vm-contato-desc {
  font-family: var(--sans); font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.8;
  max-width: 640px; margin: 0 0 40px;
}
.vm-channels {
  display: flex; flex-direction: row;
  gap: 16px; flex-wrap: wrap;
}
.vm-channel {
  flex: 1; min-width: 220px;
  display: flex; flex-direction: column; gap: 12px;
  padding: 26px 22px; background: var(--navy-mid);
  border-radius: 6px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.07);
  border-bottom: 3px solid transparent;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.vm-channel:hover {
  background: #0e2748;
  border-bottom-color: var(--lime);
  transform: translateY(-3px);
}
.vm-channel-icon {
  width: 44px; height: 44px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.vm-channel-icon.wpp   { background: rgba(37,211,102,0.14); }
.vm-channel-icon.email { background: rgba(143,188,63,0.14); }
.vm-channel-icon.li    { background: rgba(10,102,194,0.18); }
.vm-channel-icon svg   { width: 22px; height: 22px; }
.vm-channel strong {
  display: block; font-family: var(--display);
  font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 3px;
}
.vm-channel span {
  font-family: var(--sans); font-size: 12px;
  color: rgba(255,255,255,0.38); line-height: 1.4;
}
.vm-channel-arrow {
  margin-top: auto; font-family: var(--sans);
  font-size: 12px; font-weight: 500; color: var(--lime);
  display: flex; align-items: center; gap: 5px;
  transition: gap 0.25s;
}
.vm-channel:hover .vm-channel-arrow { gap: 9px; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
#vm-footer {
  background: var(--navy-dk);
  padding: 36px 5%;
  border-top: 1px solid rgba(143,188,63,0.15);
}
.vm-footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.vm-footer-copy {
  font-family: var(--sans); font-size: 12px;
  color: rgba(255,255,255,0.3); line-height: 1.6;
}
.vm-footer-copy span { color: var(--lime); }
.vm-footer-links { display: flex; gap: 20px; }
.vm-footer-links a {
  font-family: var(--sans); font-size: 12px;
  color: rgba(255,255,255,0.3); text-decoration: none;
  transition: color 0.25s;
}
.vm-footer-links a:hover { color: var(--lime); }

/* ─── WHATSAPP FLOAT ─────────────────────────────────────────────────────────── */
.vm-wpp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  text-decoration: none; transition: transform 0.25s;
  animation: vm-pulse 3s ease-in-out infinite;
}
.vm-wpp-float:hover { transform: scale(1.08); }
.vm-wpp-float svg { width: 26px; height: 26px; fill: white; }
@keyframes vm-pulse {
  0%,100%{box-shadow:0 4px 18px rgba(37,211,102,0.45)}
  50%{box-shadow:0 4px 28px rgba(37,211,102,0.7)}
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .vm-areas-grid { grid-template-columns: repeat(2,1fr); }
  .vm-blog-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .vm-section { padding: 68px 5%; }
  .vm-hero { grid-template-columns: 1fr; }
  .vm-hero-right { display: none; }
  .vm-hero-left { padding: 48px 5% 60px; }
  .vm-sobre-grid { grid-template-columns: 1fr; gap: 36px; }
  .vm-sobre-img-wrap img { height: 300px; }
  .vm-areas-header { grid-template-columns: 1fr; }
  .vm-areas-grid { grid-template-columns: 1fr 1fr; }
  .vm-blog-grid { grid-template-columns: 1fr; }
  .vm-channels { flex-direction: column; }
  .vm-footer-inner { flex-direction: column; align-items: flex-start; }
  .vm-nav { display: none; flex-direction: column; position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(11,30,61,0.98); backdrop-filter: blur(14px);
    padding: 24px 5%; gap: 20px; border-top: 1px solid rgba(143,188,63,0.2);
    z-index: 999;
  }
  .vm-nav.open { display: flex; }
  .vm-nav a { font-size: 16px; }
  .vm-nav-toggle { display: flex; }
  .vm-hero-btns { flex-direction: column; }
  .vm-btn-primary, .vm-btn-ghost { justify-content: center; }
}

@media (max-width: 480px) {
  .vm-areas-grid { grid-template-columns: 1fr; }
}
