/* ==========================================================================
   RitchSec — Site Stylesheet
   Fonts: Playfair Display (display), Inter (body/UI)
   ========================================================================== */

:root {
  --red: #C8102E;
  --red-dark: #9E0B22;
  --red-tint: #FDF0F2;
  --charcoal: #1A1A1A;
  --off-white: #F8F6F3;
  --white: #FFFFFF;
  --gray-light: #EDEBE8;
  --muted: #666666;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1180px;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--charcoal);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--red);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--red-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: 40px; }
h2 { font-size: 30px; }
h3 { font-size: 22px; }

.display {
  font-size: 52px;
  line-height: 1.15;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.small {
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--white   { background-color: var(--white); }
.section--off     { background-color: var(--off-white); }
.section--dark    { background-color: var(--charcoal); }
.section--tint    { background-color: var(--red-tint); }
.section--red     { background-color: var(--red); }

.section--dark h2,
.section--dark h3,
.section--red h2 {
  color: var(--white);
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}

/* Signature element: vertical red rule */
.red-rule {
  border-left: 3px solid var(--red);
  padding-left: 20px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background-color: var(--red);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--red-dark);
  color: var(--white);
}

.btn--secondary {
  background-color: var(--white);
  color: var(--red);
  border-color: var(--red);
}

.btn--secondary:hover {
  background-color: var(--red-tint);
  color: var(--red-dark);
}

.btn--reversed {
  background-color: var(--white);
  color: var(--red);
}

.btn--reversed:hover {
  background-color: var(--red-tint);
  color: var(--red-dark);
}

.btn--full {
  display: block;
  width: 100%;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.wordmark:hover {
  color: var(--charcoal);
}

.wordmark span {
  color: var(--red);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav__link:hover {
  color: var(--red);
}

.site-nav__link[aria-current="page"] {
  color: var(--charcoal);
  border-bottom-color: var(--red);
}

.site-nav .btn {
  font-size: 14px;
  padding: 11px 20px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--charcoal);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */

.hero {
  background-color: var(--off-white);
  padding: 100px 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 60px;
  align-items: center;
}

.hero__headline {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero__note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

.badge-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.badge {
  display: inline-block;
  background-color: var(--gray-light);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.badge::before {
  content: "\2726\00a0\00a0";
  color: var(--red);
}

/* --------------------------------------------------------------------------
   Page hero (interior pages)
   -------------------------------------------------------------------------- */

.page-hero {
  padding: 90px 0;
}

.page-hero--dark {
  background-color: var(--charcoal);
}

.page-hero--dark h1 {
  color: var(--white);
}

.page-hero--off {
  background-color: var(--off-white);
}

.page-hero h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 820px;
}

.page-hero__sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
}

.page-hero--dark .page-hero__sub {
  color: #C9C6C1;
}

.page-hero__accent {
  font-style: italic;
  color: var(--red);
}

/* About hero: two-column with headshot */
.about-hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero__inner h1 {
  font-size: 44px;
}

.headshot-frame {
  border-left: 4px solid var(--red);
  padding-left: 20px;
}

.headshot-frame img {
  width: 100%;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Trust bar
   -------------------------------------------------------------------------- */

.trust-bar {
  background-color: var(--white);
  padding: 44px 0;
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
}

.trust-bar .eyebrow {
  margin-bottom: 14px;
}

.trust-bar__list {
  font-size: 13px;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.trust-bar__list span {
  color: var(--gray-light);
  padding: 0 12px;
}

/* --------------------------------------------------------------------------
   Content blocks
   -------------------------------------------------------------------------- */

.content-block h2 {
  font-size: 36px;
  margin-bottom: 24px;
  max-width: 720px;
}

.content-block p {
  max-width: 680px;
  margin-bottom: 20px;
}

.content-block p:last-of-type {
  margin-bottom: 0;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  font-weight: 600;
  color: var(--red);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.text-link:hover {
  color: var(--red-dark);
  border-bottom-color: var(--red-dark);
}

/* --------------------------------------------------------------------------
   Services snapshot (home, dark section)
   -------------------------------------------------------------------------- */

.section--dark .eyebrow {
  color: var(--red);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.service-card {
  background-color: var(--white);
  border-radius: 4px;
  border-top: 3px solid var(--red);
  padding: 32px;
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 16px;
  color: var(--muted);
}

.text-link--reversed {
  color: var(--white);
  border-bottom: 1px solid transparent;
}

.text-link--reversed:hover {
  color: var(--white);
  border-bottom-color: var(--red);
}

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.stat {
  border-left: 3px solid var(--red);
  padding-left: 20px;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.stat__label {
  font-size: 15px;
  color: var(--muted);
}

.stat-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
  margin-top: 48px;
}

/* --------------------------------------------------------------------------
   About teaser (home)
   -------------------------------------------------------------------------- */

.about-teaser {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.quote-block {
  background-color: var(--charcoal);
  border-radius: 4px;
  padding: 44px 40px;
}

.quote-block blockquote {
  border-left: 3px solid var(--red);
  padding-left: 24px;
}

.quote-block blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 18px;
}

.quote-block cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: #C9C6C1;
}

/* --------------------------------------------------------------------------
   CTA band (red)
   -------------------------------------------------------------------------- */

.cta-band {
  background-color: var(--red);
  padding: 90px 0;
  text-align: center;
}

.cta-band h2 {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-band p {
  color: var(--white);
  max-width: 620px;
  margin: 0 auto 32px;
}

.cta-band__meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 24px;
}

.schedule-intro {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.schedule-intro h2 {
  margin-bottom: 20px;
}

.schedule-intro p {
  color: var(--muted);
  margin: 0;
}

.calendly-embed {
  background-color: var(--white);
  border-radius: 4px;
  padding: 12px;
  max-width: 700px;
  margin: 40px auto 0;
}

/* --------------------------------------------------------------------------
   Services page: service rows
   -------------------------------------------------------------------------- */

.service-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  padding: 56px 28px;
  border-bottom: 1px solid var(--gray-light);
  border-left: 4px solid transparent;
  transition: border-left-color 0.2s ease, background-color 0.2s ease;
}

.service-row:first-of-type {
  border-top: 1px solid var(--gray-light);
}

.service-row:hover {
  border-left-color: var(--red);
}

.service-row h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.service-row__who {
  font-size: 15px;
  color: var(--muted);
}

.service-row__who strong {
  color: var(--charcoal);
  font-weight: 600;
}

.service-row__body p {
  margin-bottom: 20px;
}

.service-row__tag {
  display: block;
  text-align: right;
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   How it works
   -------------------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 48px;
  margin-bottom: 56px;
}

.step__number {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 14px;
}

.step h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  font-size: 16px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   About page: timeline
   -------------------------------------------------------------------------- */

.timeline {
  margin-top: 48px;
  border-left: 3px solid var(--red);
}

.timeline__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 0 0 52px 36px;
  position: relative;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__years {
  font-weight: 600;
  color: var(--red);
  font-size: 16px;
  padding-top: 2px;
}

.timeline__role {
  font-weight: 600;
  font-size: 18px;
  color: var(--charcoal);
}

.timeline__company {
  color: var(--muted);
  margin-bottom: 12px;
}

.timeline__body {
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   About page: personal note
   -------------------------------------------------------------------------- */

.personal-note {
  border-left: 3px solid var(--red);
  padding-left: 28px;
  max-width: 680px;
}

.personal-note p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 22px;
}

.personal-note p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Why Us page: differentiators
   -------------------------------------------------------------------------- */

.diff-list {
  max-width: 780px;
}

.diff-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--gray-light);
}

.diff-item:last-child {
  border-bottom: none;
}

.diff-item h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  border-left: 3px solid var(--red);
  padding-left: 18px;
  margin-bottom: 14px;
}

.diff-item p {
  color: var(--charcoal);
}

/* --------------------------------------------------------------------------
   Why Us page: fit section
   -------------------------------------------------------------------------- */

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.fit-col {
  background-color: var(--white);
  border-radius: 4px;
  padding: 36px;
}

.fit-col h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
}

.fit-col li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  font-size: 16px;
}

.fit-col li:last-child {
  margin-bottom: 0;
}

.fit-col--yes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #2E7D32;
  font-weight: 700;
}

.fit-col--no li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--gray-light);
  padding: 10px 2px;
  margin-bottom: 28px;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--red);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form__note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

.contact-direct {
  margin-bottom: 40px;
}

.contact-direct li {
  font-size: 16px;
  margin-bottom: 12px;
}

.contact-direct li::before {
  content: "\2014\00a0\00a0";
  color: var(--red);
}

.contact-direct a {
  color: var(--charcoal);
}

.contact-direct a:hover {
  color: var(--red);
}

.contact-divider {
  border: none;
  border-top: 1px solid var(--gray-light);
  margin: 40px 0;
}

.next-steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.next-steps li:last-child {
  margin-bottom: 0;
}

.next-steps__num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  line-height: 1.4;
}

.next-steps__title {
  font-weight: 600;
  font-size: 16px;
  color: var(--charcoal);
}

.next-steps__body {
  font-size: 15px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */

.faq {
  max-width: 780px;
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
  background-color: var(--white);
  border-radius: 4px;
  margin-bottom: 12px;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  padding: 22px 24px;
}

.faq-item__icon {
  flex-shrink: 0;
  margin-left: 20px;
  color: var(--red);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

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

.faq-item__answer p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background-color: var(--charcoal);
  padding: 72px 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.site-footer__tagline {
  font-size: 13px;
  color: #999590;
  max-width: 280px;
}

.site-footer .eyebrow {
  margin-bottom: 16px;
}

.site-footer__links li {
  margin-bottom: 10px;
}

.site-footer__links a,
.site-footer__links span {
  font-size: 13px;
  color: var(--white);
}

.site-footer__links a:hover {
  color: var(--red);
}

.site-footer__bottom {
  border-top: 1px solid #333333;
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
  color: #999590;
}

/* --------------------------------------------------------------------------
   Scroll fade-in animation
   -------------------------------------------------------------------------- */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 980px) {
  .hero__inner,
  .about-teaser,
  .about-hero__inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .stat-grid-8 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 60px 0;
  }

  .page-hero {
    padding: 60px 0;
  }

  .display,
  .hero__headline {
    font-size: 38px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .about-hero__inner h1 {
    font-size: 32px;
  }

  .content-block h2,
  .cta-band h2 {
    font-size: 28px;
  }

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

  .stat-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-left: 24px;
  }

  .badge-stack {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Mobile navigation */
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-light);
    transition: max-height 0.3s ease, padding 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  }

  .site-nav.is-open {
    max-height: 420px;
    padding: 16px 24px 24px;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav__list li {
    border-bottom: 1px solid var(--gray-light);
  }

  .site-nav__link {
    display: block;
    padding: 14px 0;
    border-bottom: none;
  }

  .site-nav__link[aria-current="page"] {
    color: var(--red);
  }

  .site-nav .btn {
    margin-top: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stat-row,
  .stat-grid-8 {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }

  .trust-bar__list span {
    padding: 0 6px;
  }
}
