/* SEO / multi-pages — extensions du design existant */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Navigation dropdowns & mobile ---- */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}

.nav__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.nav__whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  color: #fff;
}

.nav__whatsapp svg {
  display: block;
}


.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}

.nav__toggle-bar,
.nav__toggle-bar::before,
.nav__toggle-bar::after {
  display: block;
  width: 18px;
  height: 2px;
  background: #0a0a0a;
  position: relative;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.nav__toggle-bar::before,
.nav__toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav__toggle-bar::before { top: -6px; }
.nav__toggle-bar::after { top: 6px; }

.nav.is-open .nav__toggle-bar {
  background: transparent;
}

.nav.is-open .nav__toggle-bar::before {
  top: 0;
  transform: rotate(45deg);
}

.nav.is-open .nav__toggle-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  flex-direction: column;
  gap: 0.15rem;
  z-index: 40;
}

.nav__dropdown-panel a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  font-size: 0.92rem;
  color: #1a1a1a;
  text-decoration: none;
}

.nav__dropdown-panel a:hover {
  background: rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.nav__dropdown-all {
  margin-top: 0.35rem;
  font-weight: 600;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 0.75rem !important;
}

.nav__dropdown:hover .nav__dropdown-panel,
.nav__dropdown:focus-within .nav__dropdown-panel {
  display: flex;
}

.nav__dropdown-trigger::after {
  content: none !important;
}

.nav__links-cta {
  display: none;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 14px;
  background: #0a0a0a;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
    max-height: min(72vh, 560px);
    overflow-y: auto;
  }

  .nav.is-open .nav__links {
    display: flex;
  }

  .nav__links > a,
  .nav__dropdown-trigger {
    padding: 0.85rem 0.75rem;
    font-size: 1rem;
    border-radius: 12px;
  }

  .nav__links > a:hover,
  .nav__dropdown-trigger:hover {
    background: rgba(0, 0, 0, 0.04);
  }

  .nav__links > a::after,
  .nav__dropdown-trigger::after {
    display: none;
  }

  .nav__dropdown-panel {
    position: static;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0.15rem 0 0.35rem 0.75rem;
    min-width: 0;
  }

  .nav__dropdown.is-open .nav__dropdown-panel {
    display: flex;
  }

  .nav__links-cta {
    display: block;
  }

  .nav,
  .nav.scrolled {
    width: calc(100% - 24px);
    max-width: none;
  }
}

@media (max-width: 600px) {
  .nav,
  .nav.scrolled {
    width: calc(100% - 16px);
  }
}

/* ---- Breadcrumbs ---- */
.breadcrumbs {
  padding-top: 0.5rem;
  padding-bottom: 0;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.breadcrumbs__sep {
  opacity: 0.45;
}

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

/* ---- Page hero (inner pages) ---- */
.page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
}

.page-hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  margin: 0 0 1.25rem;
  font-weight: 600;
  max-width: 18ch;
}

.page-hero--wide h1 {
  max-width: 28ch;
}

.page-hero__lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 1.75rem;
  max-width: 62ch;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---- Content layout ---- */
.prose {
  max-width: 72ch;
}

.content-layout > .prose,
.section .content-layout .prose {
  max-width: none;
  width: 100%;
}

.prose h2 {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  margin: 2.5rem 0 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.prose h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.75rem;
  font-weight: 600;
}

.prose p,
.prose li {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 1.02rem;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  margin: 0.75rem 0 1.25rem;
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.direct-answer {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.5rem;
  margin: 1.5rem 0 2rem;
}

.direct-answer h2 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
}

.direct-answer p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
}

.flow-diagram {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.35rem;
  margin: 1.25rem 0 1.75rem;
  padding: 1.1rem;
  background: #111;
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
}

.flow-diagram span {
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.flow-diagram .arrow {
  background: transparent;
  opacity: 0.55;
  padding: 0 0.15rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: 0.95rem;
  overflow-x: auto;
  display: block;
}

.compare-table th,
.compare-table td {
  border: 1px solid var(--line);
  padding: 0.75rem 0.9rem;
  text-align: left;
  vertical-align: top;
  background: var(--surface);
}

.compare-table th {
  background: #f0f0f2;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
}

.faq-item p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.95rem;
}

.link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.link-card {
  display: block;
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.link-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.link-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0 0;
}

.trust-strip article {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.trust-strip h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.trust-strip p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---- CTA band ---- */
.cta-band {
  padding: 3rem 0;
  background: #0a0a0a;
  color: #fff;
  margin-top: 2rem;
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 42ch;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-band .cta {
  background: #fff;
  color: #0a0a0a;
}

.cta-band .cta.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* ---- Footer grid ---- */
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
}

.footer__brand p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.92rem;
  max-width: 36ch;
}

.footer__nap {
  margin-top: 1rem !important;
  font-size: 0.85rem !important;
}

.footer__heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.85rem;
  color: var(--text-primary);
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer__list a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  text-decoration: none;
}

.footer__list a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Sticky mobile CTA ---- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
  gap: 0.5rem;
}

.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 0.7rem 0.4rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  background: #0a0a0a;
  color: #fff;
}

.sticky-cta a:nth-child(1) {
  background: #128c7e;
}

.sticky-cta a:nth-child(2) {
  background: #fff;
  color: #0a0a0a;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }
}

/* ---- Guides / cards list ---- */
.resource-meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
  width: 100%;
}

.content-layout > .prose {
  max-width: none;
  width: 100%;
}

.content-layout > .prose .link-cards,
.content-layout > .prose .faq-list,
.content-layout > .prose .direct-answer,
.content-layout > .prose .flow-diagram,
.content-layout > .prose table {
  max-width: none;
  width: 100%;
}

.content-layout .link-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 1100px) {
  .content-layout .link-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.content-layout__aside {
  position: static;
  width: 100%;
  order: -1;
}

.content-layout__aside .form,
.content-layout__aside .form--aside-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.content-layout__aside .form__inner,
.content-layout__aside form[data-contact-form] {
  display: none; /* formulaire complet -> popup */
}

.content-layout__aside .aside-title,
.content-layout__aside .form__context {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0a0a0a;
}

.content-layout__aside .aside-lead {
  margin: 0.25rem 0 0;
  color: #6e6e73;
  font-size: 0.92rem;
}

.content-layout__aside .aside-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (max-width: 720px) {
  .content-layout .link-cards {
    grid-template-columns: 1fr;
  }

  .content-layout__aside .form,
  .content-layout__aside .form--aside-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .content-layout__aside .aside-actions .cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 960px) {
  .content-layout__aside {
    order: -1;
  }
}

.form__context {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}

.proof-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.proof-list span {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

.section--tight {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.updated-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
}

/* ---- Buttons as CTA ---- */
button.cta {
  appearance: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

button.cta.ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.cta-band button.cta.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.text-link {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.aside-title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.aside-lead {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.form--aside-cta {
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

/* ---- Contact modal popup ---- */
body.modal-open {
  overflow: hidden;
}

.contact-modal[hidden] {
  display: none !important;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
}

.contact-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: min(92vh, 900px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 1.25rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom));
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.2);
}

.contact-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.05);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #0a0a0a;
}

.contact-modal__kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin: 0 0 0.5rem;
}

.contact-modal__header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  padding-right: 2.5rem;
}

.contact-modal__lead {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  line-height: 1.55;
  font-size: 0.95rem;
}

.contact-modal__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.contact-modal__quick a {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #f0f0f2;
  text-decoration: none;
  color: #0a0a0a;
}

.contact-modal__body.form {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: none;
}

.contact-modal .form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.contact-modal label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.contact-modal input,
.contact-modal select,
.contact-modal textarea {
  width: 100%;
  font: inherit;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fafafa;
  font-size: 16px; /* évite zoom iOS */
}

.contact-modal .form__submit-wrapper {
  margin-top: 0.75rem;
}

.contact-modal .form__submit-wrapper .cta {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}

@media (min-width: 640px) {
  .contact-modal {
    align-items: center;
    padding: 1.5rem;
  }

  .contact-modal__panel {
    border-radius: 24px;
    padding: 1.75rem;
  }

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

/* ---- Sticky CTA buttons ---- */
.sticky-cta button {
  flex: 1;
  appearance: none;
  border: none;
  text-align: center;
  padding: 0.7rem 0.4rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  background: #0a0a0a;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
}

/* ---- Mobile polish ---- */
@media (max-width: 768px) {
  .page-hero {
    padding-top: 1.5rem;
  }

  .page-hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
    max-width: none;
  }

  .page-hero__lead {
    font-size: 1rem;
  }

  .page-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .page-hero__actions .cta,
  .page-hero__actions button.cta {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .hero__buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__buttons .cta,
  .hero__buttons button.cta {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .nav__inner {
    padding: 0.75rem 0;
    gap: 0.75rem;
  }

  .nav .branding img {
    height: 36px;
  }

  .breadcrumbs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .breadcrumbs__list {
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .flow-diagram {
    font-size: 0.78rem;
  }

  .cta-band__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta-band__actions .cta,
  .cta-band__actions button.cta {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .link-cards {
    grid-template-columns: 1fr;
  }

  .content-layout__aside {
    order: -1;
  }

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

  .sticky-cta a,
  .sticky-cta button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .sticky-cta {
    gap: 0.35rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .sticky-cta a,
  .sticky-cta button {
    font-size: 0.78rem;
    padding: 0.65rem 0.25rem;
  }
}
