/* Design: Elegant teal-gold color palette, Playfair Display + Inter typography */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #0d9488;
  --color-primary-dark: #0f766e;
  --color-gold: #D4AF37;
  --color-silver: #C0C0C0;
  --color-background: #FAFAF9;
  --color-foreground: #1C1917;
  --color-muted: #F5F5F4;
  --color-muted-foreground: #78716C;
  --color-border: #E7E5E4;
  --color-accent: #F0FDFA;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(250, 250, 249, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-foreground);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-gold) 0%, #B8941E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.logo:hover .logo-icon {
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
}

.nav-links a {
  padding: 0.375rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  color: rgba(28, 25, 23, 0.8);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--color-foreground);
  background-color: rgba(240, 253, 250, 0.5);
}

.nav-links a.active {
  background-color: var(--color-primary);
  color: white;
}

/* Mobile menu — CSS-only checkbox hack */
.nav-toggle-checkbox {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: 8px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover {
  background-color: var(--color-muted);
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-foreground);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle-checkbox:checked ~ .mobile-menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle-checkbox:checked ~ .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-toggle-checkbox:checked ~ .mobile-menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hide logo text early to give nav links more room */
@media (max-width: 1200px) {
  .logo-text {
    display: none;
  }
}

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0.25rem;
    background-color: rgba(250, 250, 249, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1.25rem 1rem;
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
  }

  .nav-toggle-checkbox:checked ~ .nav-links {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    white-space: normal;
  }

  .nav-links a:hover {
    background-color: var(--color-muted);
  }

  .nav-links a.active {
    background-color: var(--color-primary);
    color: white;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-background) 0%, var(--color-muted) 100%);
  padding: 5rem 0;
}

.hero-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero .subtitle {
  font-size: 1.5rem;
  color: var(--color-muted-foreground);
  margin-bottom: 2rem;
}

.text-gold {
  color: var(--color-gold);
}

.text-silver {
  color: var(--color-silver);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.btn-secondary {
  background-color: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-accent);
}

/* Content Sections */
section {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  margin-bottom: 3rem;
}

.content-wrapper {
  max-width: 56rem;
  margin: 0 auto;
}

.prose {
  font-size: 1.125rem;
  line-height: 1.8;
}

.prose p {
  margin-bottom: 1.5rem;
  color: rgba(28, 25, 23, 0.8);
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-foreground);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-foreground);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background-color: rgba(13, 148, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.card p {
  color: var(--color-muted-foreground);
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  background-color: var(--color-muted);
  padding: 4rem 0;
}

.faq-container {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
}

.faq-question {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--color-foreground);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--color-muted-foreground);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--color-foreground);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* =============================================
   NEW COMPONENTS - Data Visualization & Content
   ============================================= */

/* Data Tables */
.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: white;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.data-table thead {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.data-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.data-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  color: rgba(28, 25, 23, 0.8);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover {
  background-color: var(--color-accent);
}

.data-table .highlight-row {
  background-color: rgba(212, 175, 55, 0.08);
  font-weight: 600;
}

.data-table .highlight-row:hover {
  background-color: rgba(212, 175, 55, 0.15);
}

/* Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.comparison-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid var(--color-border);
  transition: all 0.3s;
}

.comparison-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.comparison-card--gold {
  border-color: var(--color-gold);
}

.comparison-card--gold .comparison-card__title {
  color: var(--color-gold);
}

.comparison-card--silver {
  border-color: var(--color-silver);
}

.comparison-card--silver .comparison-card__title {
  color: #8a8a8a;
}

.comparison-card--primary {
  border-color: var(--color-primary);
}

.comparison-card--primary .comparison-card__title {
  color: var(--color-primary);
}

.comparison-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.comparison-card__subtitle {
  font-size: 0.95rem;
  color: var(--color-muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.comparison-card__list {
  list-style: none;
  padding: 0;
}

.comparison-card__list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(28, 25, 23, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.comparison-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* Info Boxes */
.info-box {
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-left: 4px solid;
  font-size: 0.95rem;
  line-height: 1.7;
}

.info-box__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-box--tip {
  background-color: rgba(13, 148, 136, 0.06);
  border-left-color: var(--color-primary);
}

.info-box--tip .info-box__title {
  color: var(--color-primary);
}

.info-box--warning {
  background-color: rgba(234, 88, 12, 0.06);
  border-left-color: #ea580c;
}

.info-box--warning .info-box__title {
  color: #ea580c;
}

.info-box--info {
  background-color: rgba(37, 99, 235, 0.06);
  border-left-color: #2563eb;
}

.info-box--info .info-box__title {
  color: #2563eb;
}

.info-box--gold {
  background-color: rgba(212, 175, 55, 0.08);
  border-left-color: var(--color-gold);
}

.info-box--gold .info-box__title {
  color: #b8941e;
}

/* Stat Grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all 0.3s;
}

.stat-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.stat-value--gold {
  color: var(--color-gold);
}

.stat-value--silver {
  color: #8a8a8a;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  line-height: 1.4;
}

/* CSS Bar Charts */
.bar-chart {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.bar-chart-item {
  margin-bottom: 1.25rem;
}

.bar-chart-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.bar-chart-bar {
  background-color: var(--color-muted);
  border-radius: 8px;
  height: 28px;
  overflow: hidden;
}

.bar-chart-fill {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  transition: width 0.6s ease;
}

.bar-chart-fill--gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, #b8941e 100%);
}

.bar-chart-fill--silver {
  background: linear-gradient(135deg, #c0c0c0 0%, #8a8a8a 100%);
}

.bar-chart-fill--warning {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

/* SVG Chart Container */
.chart-container {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  padding: 2rem;
  margin: 2rem 0;
}

.chart-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.chart-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.chart-legend-color {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: inline-block;
}

/* Donut Charts */
.donut-chart-wrapper {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.donut-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.donut-chart-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.donut-chart-circle::after {
  content: '';
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: white;
  position: absolute;
}

.donut-chart-center {
  position: absolute;
  z-index: 1;
  text-align: center;
}

.donut-chart-center-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-foreground);
}

.donut-chart-center-label {
  font-size: 0.7rem;
  color: var(--color-muted-foreground);
}

.donut-chart-label {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}

.donut-chart-legend {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.donut-chart-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-muted-foreground);
}

.donut-legend-color {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 1rem 0;
  margin: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-gold));
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  padding-left: 56px;
  padding-bottom: 2rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--color-primary);
}

.timeline-date {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.timeline-content {
  font-size: 0.95rem;
  color: rgba(28, 25, 23, 0.8);
  line-height: 1.6;
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(28, 25, 23, 0.8);
  transition: all 0.2s;
}

.checklist li:hover {
  border-color: var(--color-primary);
  background-color: var(--color-accent);
}

.checklist li::before {
  content: "☐";
  font-size: 1.25rem;
  color: var(--color-muted-foreground);
  flex-shrink: 0;
  line-height: 1.2;
}

.checklist--checked li::before {
  content: "☑";
  color: var(--color-primary);
}

/* Steps Process */
.steps {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.step-item {
  counter-increment: step-counter;
  position: relative;
  padding-left: 72px;
  padding-bottom: 2.5rem;
  min-height: 60px;
}

.step-item:last-child {
  padding-bottom: 0;
}

.step-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.2);
}

.step-item::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 52px;
  width: 2px;
  bottom: 0;
  background-color: var(--color-border);
}

.step-item:last-child::after {
  display: none;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 0.375rem;
  padding-top: 2px;
}

.step-description {
  font-size: 0.95rem;
  color: var(--color-muted-foreground);
  line-height: 1.6;
}

/* Prose-section heading with subsection style */
.prose h2 .section-number {
  color: var(--color-primary);
  margin-right: 0.5rem;
}

/* =============================================
   RESPONSIVE - Existing + New Components
   ============================================= */

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .subtitle {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .container {
    padding: 0 1rem;
  }

  /* New component responsive */
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }

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

  .donut-chart-wrapper {
    gap: 2rem;
  }

  .donut-chart-circle {
    width: 150px;
    height: 150px;
  }

  .donut-chart-circle::after {
    width: 85px;
    height: 85px;
  }

  .chart-container {
    padding: 1.25rem;
  }

  .chart-legend {
    gap: 1rem;
  }

  .timeline::before {
    left: 16px;
  }

  .timeline-item {
    padding-left: 48px;
  }

  .timeline-item::before {
    left: 8px;
    width: 18px;
    height: 18px;
  }

  .step-item {
    padding-left: 60px;
  }

  .step-item::before {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .step-item::after {
    left: 19px;
    top: 44px;
  }

  .data-table th,
  .data-table td {
    padding: 0.75rem 0.875rem;
    font-size: 0.85rem;
  }

  .bar-chart-bar {
    height: 22px;
  }
}

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

  .stat-card {
    padding: 1.25rem;
  }

  .donut-chart-circle {
    width: 130px;
    height: 130px;
  }

  .donut-chart-circle::after {
    width: 70px;
    height: 70px;
  }

  .info-box {
    padding: 1.25rem 1.5rem;
  }

  .comparison-card {
    padding: 1.5rem;
  }

  .chart-legend {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}
