/* ============================================
   POINT & BALANCE ACUPUNCTURE — Global Styles
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --green: #74AB40;
  --green-hover: #5E8E33;
  --green-light: #e8f2dc;
  --sage-bg: #F5F8F2;
  --charcoal: #2E2E2E;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --white: #FFFFFF;
  --cream: #FAFDF7;
  --border: #E5E7EB;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  --max-width: 1200px;
  --header-height: 110px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; }
p { color: var(--gray); font-size: 1.05rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-intro p { font-size: 1.1rem; margin-top: 1rem; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(116, 171, 64, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--green);
}
.btn-white:hover {
  background: var(--sage-bg);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  height: var(--header-height);
  transition: all var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
  background: var(--sage-bg);
}

.nav-cta {
  margin-left: 0.75rem;
}
.nav-cta .btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.88rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}
.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); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 120px 2rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--green); }
.mobile-nav .btn { margin-top: 1rem; text-align: center; justify-content: center; }

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4rem;
  background: var(--sage-bg);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 30% 40%, var(--green) 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, var(--green) 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-content h1 {
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero-content h1 span {
  color: var(--green);
}
.hero-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray);
  box-shadow: var(--shadow-sm);
}
.hero-badge svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green);
}
.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}
.card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Differentiators --- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.diff-item:hover {
  background: var(--sage-bg);
}
.diff-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-top: 2px;
}
.diff-check svg { width: 14px; height: 14px; }
.diff-item h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.diff-item p { font-size: 0.9rem; }

/* --- Testimonials --- */
.testimonials-section {
  background: var(--sage-bg);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: #F59E0B;
}
.testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonial-author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.testimonial-author-source {
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* --- Practitioner Cards --- */
.practitioner-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all var(--transition);
}
.practitioner-card:hover {
  box-shadow: var(--shadow-md);
}
.practitioner-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-sm);
  background: var(--sage-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 0.85rem;
  overflow: hidden;
}
.practitioner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.practitioner-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}
.practitioner-title {
  color: var(--green);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}
.practitioner-info p {
  margin-bottom: 1rem;
}

/* --- Location Cards --- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}
.location-card:hover {
  box-shadow: var(--shadow-md);
}
.location-map {
  width: 100%;
  height: 220px;
  background: var(--sage-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 0.85rem;
}
.location-details {
  padding: 2rem;
}
.location-details h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.location-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray);
}
.location-info-row svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--green);
  margin-top: 2px;
}
.location-hours {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.location-hours h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  margin-bottom: 0.75rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--gray);
  padding: 0.35rem 0;
}
.hours-row .day { font-weight: 500; color: var(--charcoal); }

/* --- FAQ --- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gray-light);
  transition: transform var(--transition);
}
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding-bottom: 1.5rem;
}
.faq-answer-inner p {
  font-size: 0.95rem;
  line-height: 1.75;
}

/* --- Insurance --- */
.insurance-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
}
.insurance-logo {
  height: 44px;
  opacity: 0.6;
  filter: grayscale(30%);
  transition: all var(--transition);
}
.insurance-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-info-block h4 {
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}
.contact-info-block p,
.contact-info-block a {
  font-size: 0.95rem;
  color: var(--gray);
}
.contact-info-block a:hover { color: var(--green); }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius);
  margin: 0 2rem;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto 2rem; }

/* --- Footer --- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--green); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
  margin-bottom: 0;
}
.footer-social a:hover {
  background: var(--green);
  color: var(--white);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: calc(var(--header-height) + 4rem) 0 3rem;
  background: var(--sage-bg);
  text-align: center;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 968px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .practitioner-card {
    grid-template-columns: 1fr;
  }
  .practitioner-photo {
    max-width: 280px;
    aspect-ratio: 1;
  }

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

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

  /* Practitioners grid: 2 columns on tablet */
  .practitioners-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }

  .hero { min-height: auto; padding-top: calc(var(--header-height) + 2rem); padding-bottom: 3rem; }
  .hero [style*="grid-template-columns:1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
  }
  .hero [style*="grid-template-columns:1fr 1fr"] > div:last-child {
    display: none !important;
  }

  .card-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }

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

  .btn-group { flex-direction: column; }
  .btn-group .btn { text-align: center; justify-content: center; }

  .hero-badges { gap: 0.4rem; }

  /* Insurance logos wrap nicely on mobile */
  .insurance-logos { gap: 1.5rem; }
  .insurance-logo { height: 36px; }

  /* Practitioners grid: single column on phone */
  .practitioners-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* ===== MOBILE OPTIMIZATIONS ===== */

/* Touch-friendly: minimum 44px tap targets (Apple HIG) */
@media (max-width: 968px) {
  .btn {
    min-height: 48px;
    padding: 0.9rem 2rem;
  }
  .nav-links a,
  .mobile-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .faq-question {
    min-height: 52px;
    padding: 1.1rem 1.5rem;
  }
  /* Disable hover effects on touch devices */
  @media (hover: none) {
    .btn:hover { transform: none; }
    .card:hover { transform: none; }
    .insurance-logo:hover { opacity: 0.6; filter: grayscale(30%); }
  }
}

/* Small phones (under 400px) */
@media (max-width: 400px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }
  p { font-size: 1rem; }

  .container { padding: 0 1rem; }
  section { padding: 2.75rem 0; }

  .btn {
    font-size: 0.9rem;
    padding: 0.85rem 1.5rem;
    width: 100%;
    justify-content: center;
  }

  .mobile-nav a {
    font-size: 1.5rem;
    padding: 0.6rem 0;
  }

  .section-label { font-size: 0.72rem; }

  /* Google Maps embeds stay visible */
  .location-card iframe {
    height: 220px;
  }

  /* Practitioners: single column on very small screens */
  .practitioners-grid {
    grid-template-columns: 1fr;
  }

  /* Insurance logos even smaller */
  .insurance-logos { gap: 1rem; }
  .insurance-logo { height: 30px; }
}

/* Prevent text size adjustment on orientation change (iOS) */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Remove tap highlight on mobile webkit browsers */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Smooth scrolling for anchor links (respects prefers-reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Better text rendering on mobile */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure phone numbers and addresses are tappable on mobile */
a[href^="tel:"],
a[href^="mailto:"] {
  white-space: nowrap;
}
