/* landing-token: 1e83 */
/* ============================================================
   LinguaWelt Akademie - Custom Theme
   Brand: Ocean Teal #1A8F8B | Orange #E8832A
   ============================================================ */

:root {
  --teal: #1A8F8B;
  --teal-dark: #157a76;
  --teal-light: #2ab8b3;
  --orange: #E8832A;
  --orange-dark: #cc6f1f;
  --orange-light: #f5a05a;
  --bg: #F0F7F7;
  --bg-white: #ffffff;
  --text: #1A2B3C;
  --text-muted: #5a6e80;
  --border: #d0e4e4;
  --shadow: 0 4px 20px rgba(26, 143, 139, 0.12);
  --shadow-hover: 0 8px 30px rgba(26, 143, 139, 0.22);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.25s ease;
}

/* ============================================================
   Base / Reset
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6,
.title, .subtitle {
  font-family: 'Nunito', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  font-weight: 700;
}

main {
  flex: 1;
}

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  background: #ffffff !important;
  box-shadow: 0 2px 12px rgba(26, 43, 60, 0.08);
  padding: 0 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-brand .navbar-item {
  font-family: 'Nunito', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal) !important;
  letter-spacing: -0.01em;
  padding: 0.75rem 0.5rem;
}

.navbar-brand .navbar-item:hover {
  background: transparent !important;
  color: var(--orange) !important;
}

.brand-accent {
  color: var(--orange);
}

.navbar-item {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  color: var(--text) !important;
  font-size: 0.95rem;
  transition: var(--transition);
}

.navbar-item:hover,
.navbar-item.is-active {
  color: var(--teal) !important;
  background-color: rgba(26, 143, 139, 0.06) !important;
}

.navbar-item.is-cta {
  background: var(--teal);
  color: #ffffff !important;
  border-radius: var(--radius);
  margin-left: 0.5rem;
  padding: 0.4rem 1.1rem;
  transition: var(--transition);
}

.navbar-item.is-cta:hover {
  background: var(--orange) !important;
  color: #ffffff !important;
}

.navbar-burger span {
  background-color: var(--teal);
  height: 2px;
}

.navbar-menu.is-active {
  background: #ffffff;
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-main {
  background: linear-gradient(135deg, #0d5a57 0%, #1A8F8B 40%, #1da89f 70%, #2ab8b3 100%);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-main::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hero-main::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 300px;
  height: 300px;
  background: rgba(232, 131, 42, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-float-1,
.hero-float-2,
.hero-float-3 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: floatAnim 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-float-1 {
  width: 80px;
  height: 80px;
  background: #E8832A;
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.hero-float-2 {
  width: 50px;
  height: 50px;
  background: #ffffff;
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.hero-float-3 {
  width: 120px;
  height: 120px;
  background: #2ab8b3;
  bottom: 10%;
  left: 5%;
  animation-delay: 4s;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

.hero-body .title {
  color: #ffffff !important;
  font-size: 2.8rem;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-body .subtitle {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-body {
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.25rem;
}

/* ============================================================
   Buttons
   ============================================================ */
.button.is-primary-custom {
  background: var(--teal);
  color: #ffffff;
  border: 2px solid var(--teal);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 0.7rem 1.8rem;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

.button.is-primary-custom:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: #ffffff;
}

.button.is-secondary-custom {
  background: var(--orange);
  color: #ffffff;
  border: 2px solid var(--orange);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 0.7rem 1.8rem;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

.button.is-secondary-custom:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 131, 42, 0.3);
  color: #ffffff;
}

.button.is-outline-white {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.6);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 0.7rem 1.8rem;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

.button.is-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
  color: #ffffff;
}

/* ============================================================
   Sections
   ============================================================ */
section {
  padding: 4rem 1.5rem;
}

.section {
  padding: 4rem 1.5rem;
}

.section-bg-white {
  background: #ffffff;
}

.section-bg-teal-light {
  background: linear-gradient(135deg, #e0f2f1 0%, #f0f7f7 100%);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--teal), var(--orange));
  border-radius: 2px;
  margin: 0.75rem auto 1.5rem;
}

/* ============================================================
   Cards
   ============================================================ */
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  background: #ffffff;
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--teal);
}

.card-header {
  border-bottom: 1px solid var(--border);
  background: transparent;
}

.card-header-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--text);
  font-size: 1.05rem;
}

.card-content {
  padding: 1.5rem;
}

/* Language Cards */
.lang-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  height: 100%;
}

.lang-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.lang-card .lang-flag {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.lang-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.lang-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Feature Box */
.feature-box {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-box:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.feature-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   Course Cards
   ============================================================ */
.course-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--teal);
}

.course-card-header {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  padding: 1.5rem;
  color: white;
}

.course-card-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.course-card-header p {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  margin: 0;
}

.course-card-body {
  padding: 1.5rem;
  flex: 1;
}

.course-price {
  font-family: 'Nunito', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.course-price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.course-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
}

.course-detail-item svg {
  color: var(--teal);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================================
   Level Badges
   ============================================================ */
.level-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}

.level-a {
  background: #d1fae5;
  color: #065f46;
}

.level-b {
  background: #dbeafe;
  color: #1e40af;
}

.level-c {
  background: #fce7f3;
  color: #9d174d;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--teal);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: var(--orange);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   Form Styles
   ============================================================ */
.form-section {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.label {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.input,
.select select,
.textarea {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
  box-shadow: none;
}

.input:focus,
.select select:focus,
.textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 143, 139, 0.12);
  outline: none;
}

.select::after {
  border-color: var(--teal) !important;
}

/* ============================================================
   Team Cards
   ============================================================ */
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.team-name {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   Images
   ============================================================ */
.img-rounded {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ============================================================
   CTA Sections
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, #1da89f 60%, var(--teal-light) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-section .title {
  color: #ffffff !important;
  font-size: 2rem;
}

.cta-section .subtitle {
  color: rgba(255,255,255,0.85) !important;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, #e0f2f1 0%, #f0f7f7 100%);
  padding: 2rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.page-header .title {
  color: var(--text);
  font-size: 1.8rem;
}

.breadcrumb a {
  color: var(--teal);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-brand {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.footer-brand .brand-accent {
  color: var(--orange);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
  line-height: 1.6;
  max-width: 260px;
}

.footer-heading {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-link-list a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link-list a:hover {
  color: var(--teal-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal-light);
}

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 2rem 0 1.25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

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

.footer-legal-links a:hover {
  color: var(--teal-light);
}

/* ============================================================
   Legal Pages
   ============================================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  color: var(--teal);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--border);
}

.legal-content h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.75;
}

.legal-content ul, .legal-content ol {
  margin: 0.75rem 0 1rem 1.5rem;
  color: var(--text);
}

.legal-content li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.legal-content a {
  color: var(--teal);
  text-decoration: underline;
}

/* ============================================================
   Thank You / Willkommen Page
   ============================================================ */
.success-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0f2f1, #f0f7f7);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #ffffff;
}

.success-icon svg {
  width: 40px;
  height: 40px;
}

/* ============================================================
   Tag / Pill
   ============================================================ */
.tag.is-teal {
  background: rgba(26, 143, 139, 0.1);
  color: var(--teal);
  font-weight: 600;
  border-radius: 50px;
}

.tag.is-orange {
  background: rgba(232, 131, 42, 0.1);
  color: var(--orange-dark);
  font-weight: 600;
  border-radius: 50px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
  .hero-body .title {
    font-size: 2rem;
  }

  .hero-body .subtitle {
    font-size: 1rem;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

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

  .form-section {
    padding: 1.5rem;
  }

  .cta-section .title {
    font-size: 1.6rem;
  }

  .buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  section, .section {
    padding: 2.5rem 1rem;
  }

  .hero-body {
    padding: 3rem 1rem;
  }

  .hero-body .title {
    font-size: 1.7rem;
  }
}

/* ============================================================
   Utilities
   ============================================================ */
.text-teal { color: var(--teal); }
.text-orange { color: var(--orange); }
.bg-teal { background-color: var(--teal); }
.bg-orange { background-color: var(--orange); }

.mt-auto { margin-top: auto; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}

.check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.stat-number {
  font-family: 'Nunito', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.number-highlight {
  color: var(--orange);
}

/* Impressum / Datenschutz page header style */
.legal-page-header {
  background: linear-gradient(135deg, var(--text) 0%, #2a3f55 100%);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.legal-page-header .title {
  color: #ffffff !important;
}

.legal-page-header p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}
