/* Fususu.com — Layout Styles */
/* Section layouts and grid systems */

/* ============================================
   NAVIGATION
============================================ */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,22,40,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

#main-nav.is-scrolled {
  background: rgba(10,22,40,0.97);
  border-bottom-color: rgba(66,153,225,0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a:hover {
  color: var(--text-primary);
}

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

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  display: block;
}

/* Close button hidden on desktop */
.nav-mobile-close {
  display: none;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 767px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  /*
   * When open, the nav itself becomes the fullscreen overlay.
   * This avoids the backdrop-filter containing-block bug where
   * position:fixed children can't escape their parent's stacking context.
   */
  #main-nav.menu-open {
    position: fixed;
    inset: 0;
    background: #0A1628;
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: none;
  }

  #main-nav.menu-open .nav-container {
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 100%;
    padding: 0;
  }

  #main-nav.menu-open .nav-brand,
  #main-nav.menu-open .nav-hamburger {
    display: none;
  }

  #main-nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  #main-nav.menu-open .nav-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    gap: 0.6rem;
  }

  #main-nav.menu-open .nav-mobile-close {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  background: radial-gradient(ellipse 70% 50% at 25% 50%, rgba(43,108,176,0.25) 0%, transparent 65%), var(--blue-deep);
  padding: 1.5rem 2rem 5rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-col-1 {
  display: flex;
  flex-direction: column;
}

.hero-col-2 {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-img-wrapper {
  position: relative;
}

.hero-img-wrapper::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(66,153,225,0.2);
  z-index: -1;
}

.hero-img {
  width: 100%;
  max-width: 480px;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-md);
}

.hero-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-story {
  margin-bottom: 2.5rem;
}

.hero-story p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

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

.hero-story strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-headline {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero-headline .story-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  text-transform: none;
  letter-spacing: normal;
}

.hero-headline strong {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--gold);
  font-weight: 600;
  display: block;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-video {
  margin-top: 2.5rem;
}

.hero-video-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.video-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--blue-dark);
  border: 1px solid var(--border);
  max-width: 480px;
}

.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(10,22,40,0.85);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  backdrop-filter: blur(8px);
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-btn svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   PROOF BAR (S2)
============================================ */
.proof-bar {
  background: var(--blue-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.proof-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.proof-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 2.25rem;
  color: var(--gold);
  display: inline;
}

.stat-suffix {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 599px) {
  .proof-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2rem;
    flex-shrink: 1;
  }
  .stat-divider { display: none; }
}

.proof-full-sep {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.proof-logos {
  width: 100%;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  overflow: hidden;
}

.proof-logo-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aaa;
}

.proof-logo-track-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.proof-logo-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: logo-scroll 30s linear infinite;
}

.proof-logo-track:hover {
  animation-play-state: paused;
}

.proof-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}

.proof-logo-img:hover {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes logo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   VIDEO SECTION
============================================ */
.video-section {
  background: var(--blue-deep);
  border-top: 1px solid var(--border);
}

.video-section-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .video-section-inner {
    grid-template-columns: 1fr 2fr;
  }
}

.video-section-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0.5rem 0 1rem;
}

.video-section-text p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.video-section-embed .video-facade {
  max-width: 100%;
}

/* ============================================
   STORY SECTION (S3)
============================================ */
.story {
  background: var(--blue-dark);
}


.story-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 768px) {
  .story-inner {
    grid-template-columns: 2fr 3fr;
  }
}

.story-lead {
  position: sticky;
  top: 6rem;
}

.story-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-primary);
  line-height: 1.3;
  margin-top: 0.75rem;
}

.story-heading em {
  font-style: italic;
  color: var(--gold);
}

.story-body p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

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

.story-divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

/* ============================================
   TESTIMONIALS — AUTHOR CLOUD (S4)
============================================ */
.testimonials {
  background: var(--blue-dark);
}

/* Two-column layout: cloud left, panel right */
.author-cloud-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .author-cloud-layout {
    grid-template-columns: 55% 45%;
    gap: 3rem;
  }
}

/* Left: cloud sphere */
.author-sphere-wrap {
  position: relative;
  width: 100%;
  height: 460px;
  cursor: grab;
  user-select: none;
}

.author-sphere-wrap:active {
  cursor: grabbing;
}

.author-sphere {
  position: absolute;
  inset: 0;
}

.cloud-item {
  position: absolute;
  left: 50%;
  top: 50%;
  cursor: pointer;
  will-change: transform;
}

.cloud-item img {
  display: block;
  width: 95px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.5);
  transition: box-shadow 0.3s ease;
  transform-origin: center center;
}

.cloud-item:hover img {
  box-shadow: 0 12px 36px rgba(0,0,0,0.75), 0 0 0 2px rgba(246,195,67,0.5);
}

@media (max-width: 599px) {
  .author-sphere-wrap { height: 320px; }
  .cloud-item img { width: 70px; }
}

@media (min-width: 600px) and (max-width: 767px) {
  .author-sphere-wrap { height: 400px; }
}

/* Right: testimonial panel */
.author-panel {
  opacity: 1;
  transition: opacity 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.atp-photo-wrap {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.atp-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.atp-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.atp-book {
  font-size: 0.9rem;
  color: var(--gold);
  font-style: italic;
  margin-top: -0.5rem;
}

.atp-quote {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.85;
  border-left: 2px solid rgba(246,195,67,0.4);
  padding-left: 1rem;
  margin: 0;
  font-size: 0.9375rem;
}

/* ============================================
   SERVICES (S5)
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.scard {
  background: var(--blue-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: border-color 0.3s;
}

.scard:hover {
  border-color: rgba(66,153,225,0.5);
}

.scard-featured {
  border-color: rgba(246,195,67,0.35);
  background: linear-gradient(145deg, rgba(26,58,107,0.4), rgba(13,31,60,0.6));
}

.scard-icon {
  line-height: 1;
  color: var(--blue-bright);
  display: flex;
  align-items: center;
}

.scard-featured .scard-icon {
  color: var(--gold);
}

.scard-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--text-primary);
}

.scard-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

.scard-detail {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.scard-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue-bright);
  margin-top: auto;
  display: inline-block;
}

.scard-link:hover {
  color: var(--gold);
}

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  width: 100%;
}

.services-cta .btn {
  gap: 0.5rem;
}

/* ============================================
   BLOG SECTION
============================================ */
.blog-section {
  background: var(--blue-deep);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bcard {
  background: var(--blue-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.2s;
}

.bcard:hover {
  border-color: rgba(66,153,225,0.5);
  transform: translateY(-3px);
}

.bcard-img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.bcard-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.bcard:hover .bcard-img-wrap img {
  transform: scale(1.04);
}

.bcard-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.bcard-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.bcard-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.45;
}

.bcard-excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

.bcard-read {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--blue-bright);
  margin-top: 0.5rem;
  display: inline-block;
}

.bcard:hover .bcard-read {
  color: var(--gold);
}

/* ============================================
   CTA SECTION (S6)
============================================ */
.cta-section {
  background: var(--blue-dark);
}

.cta-newsletter-wrap {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  background: rgba(26,58,107,0.2);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .cta-newsletter-wrap {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.cta-newsletter-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cta-newsletter-text p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.cta-nl-note {
  font-size: 0.8125rem !important;
  color: var(--text-dim) !important;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.field label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  background: rgba(10,22,40,0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.2s;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue-bright);
}

.field input.is-error,
.field select.is-error {
  border-color: #e53e3e;
}

.field .field-error {
  font-size: 0.75rem;
  color: #fc8181;
  margin-top: 0.25rem;
  display: none;
}

.field .field-error.is-visible {
  display: block;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 1rem;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: #060e1a;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-dim);
  font-style: italic;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-nav a:hover {
  color: var(--text-primary);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-social a {
  font-size: 0.875rem;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-social a:hover {
  color: var(--text-primary);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.blog-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ============================================
   PARTNERS (inside proof-bar)
   ============================================ */
.proof-partners {
  width: 100%;
  border-top: 1px solid var(--border);
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.proof-partners-label {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  font-weight: 500;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 600px;
}

.partner-card {
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.partner-card:hover {
  border-color: rgba(255,255,255,0.35);
}

.partner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.partner-card:hover img {
  transform: scale(1.08);
}

/* ============================================
   SÁCH HAY SECTION
 ============================================ */
.sachay-section {
  background: var(--blue-dark);
  border-top: 1px solid var(--border);
  padding: 3rem 1rem 3.5rem;
  text-align: center;
}

.sphere-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  margin: 0 auto 2.5rem;
  cursor: grab;
  user-select: none;
}

.sphere-wrap:active {
  cursor: grabbing;
}

.book-sphere {
  position: absolute;
  inset: 0;
}

.book-item {
  position: absolute;
  left: 50%;
  top: 50%;
  cursor: pointer;
  will-change: transform;
}

.book-item img {
  display: block;
  width: 80px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center center;
}

.book-item:hover img {
  transform: scale(1.5);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.7);
}

.sachay-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0;
}

@media (max-width: 599px) {
  .sphere-wrap {
    height: 320px;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .sphere-wrap {
    height: 420px;
  }
}

/* Author slider nav — mobile only */
.atp-nav {
  display: none;
}

@media (max-width: 767px) {
  .atp-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }
  .atp-prev, .atp-next {
    background: none;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    color: var(--text-primary);
  }
  .atp-prev:hover, .atp-next:hover { opacity: 1; }
  .atp-nav-dot {
    font-size: 0.85rem;
    opacity: 0.6;
  }
}
