/* ============================================================
   PROSTATIT HÄLSOPORTAL — Swedish Market — Global Stylesheet
   Design: Clean Nordic Medical Editorial
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Merriweather:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1a2e4a;
  --navy-light: #243d60;
  --teal:       #0d7a6e;
  --teal-light: #12a394;
  --teal-pale:  #e6f5f3;
  --amber:      #e07b2a;
  --amber-pale: #fdf3e9;
  --white:      #ffffff;
  --off-white:  #f7f9fc;
  --grey-100:   #eef1f5;
  --grey-200:   #d8dde6;
  --grey-400:   #8a94a6;
  --grey-600:   #4a5568;
  --grey-800:   #1e2533;
  --text:       #2d3748;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.13);
  --max-w:      1140px;
  --font-body:  'Inter', sans-serif;
  --font-serif: 'Merriweather', serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-light); }

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }
.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; color: var(--grey-600); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--grey-600);
  line-height: 1.8;
}

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,122,110,.3);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}
.btn-amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn-amber:hover {
  background: #c96d1e;
  border-color: #c96d1e;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224,123,42,.3);
}

/* ── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; fill: white; }
.logo-text { font-size: 1.2rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.logo-text span { color: var(--teal); }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--grey-600);
  text-decoration: none;
  transition: color .2s;
}
.main-nav a:hover { color: var(--teal); }
.nav-cta { margin-left: 8px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--grey-100);
  padding: 16px 24px 24px;
}
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--grey-600);
  border-bottom: 1px solid var(--grey-100);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: block; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a4a6e 100%);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.hero-content { padding-bottom: 80px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--teal-light);
  border-radius: 50%;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}
.hero h1 em {
  font-style: normal;
  color: #7dd3c8;
}
.hero .lead {
  color: rgba(255,255,255,.78);
  margin-bottom: 36px;
  font-size: 1.1rem;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.stat-item { text-align: left; }
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.hero-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  object-fit: cover;
  height: 420px;
}
.hero-card-float {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.hero-card-float .icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card-float .icon-wrap svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; }
.hero-card-float .card-text strong { display: block; font-size: .85rem; color: var(--navy); font-weight: 700; }
.hero-card-float .card-text span { font-size: .75rem; color: var(--grey-400); }

/* ── INTRO BANNER ─────────────────────────────────────────── */
.intro-banner {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
  padding: 20px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 48px 0;
}
.intro-banner p {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
}

/* ── INGREDIENTS SECTION ──────────────────────────────────── */
.ingredients-section { background: var(--off-white); }

.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header .lead { max-width: 600px; }
.section-header.centered { text-align: center; }
.section-header.centered .lead { margin: 0 auto; }

/* Ingredient Card */
.ingredient-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
  border: 1px solid var(--grey-100);
}
.ingredient-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.ingredient-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.ingredient-card-body { padding: 28px; }
.ingredient-card-body h3 { margin-bottom: 10px; font-size: 1.2rem; }
.ingredient-card-body p { font-size: .92rem; margin-bottom: 0; }

/* Ingredient Feature (alternating) */
.ingredient-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--grey-100);
}
.ingredient-feature:last-child { border-bottom: none; }
.ingredient-feature.reverse { direction: rtl; }
.ingredient-feature.reverse > * { direction: ltr; }

.ingredient-feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ingredient-feature-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.ingredient-feature-content {}
.ingredient-feature-content .eyebrow { margin-bottom: 8px; }
.ingredient-feature-content h2 { margin-bottom: 16px; }
.ingredient-feature-content p { margin-bottom: 20px; }

.benefit-list { list-style: none; margin: 24px 0; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: .92rem;
  color: var(--grey-600);
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list .check {
  width: 22px;
  height: 22px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.benefit-list .check svg { width: 12px; height: 12px; stroke: var(--teal); fill: none; stroke-width: 2.5; }

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ── PRODUCT SECTION ──────────────────────────────────────── */
.product-section {
  background: linear-gradient(135deg, #f0faf9 0%, #e6f5f3 100%);
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.product-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.product-img-wrap img {
  max-width: 380px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.product-badge-wrap {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--amber);
  color: white;
  border-radius: 50%;
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 0 4px 16px rgba(224,123,42,.4);
}
.product-content h2 { margin-bottom: 16px; }
.product-content .lead { margin-bottom: 28px; }

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.product-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--grey-600);
}
.product-feature-item .dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.ingredient-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}
.ingredient-tag {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--grey-600);
}
.ingredient-tag a {
  color: var(--teal);
  font-weight: 600;
}

/* ── CONTACT / FORM SECTION ───────────────────────────────── */
.contact-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13,122,110,.3) 0%, transparent 70%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { color: var(--white); margin-bottom: 16px; }
.contact-info .lead { color: rgba(255,255,255,.7); margin-bottom: 36px; }

.contact-points { list-style: none; }
.contact-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: .92rem;
}
.contact-points li:last-child { border-bottom: none; }
.contact-points .cp-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-points .cp-icon svg { width: 18px; height: 18px; stroke: var(--teal-light); fill: none; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 { margin-bottom: 24px; font-size: 1.3rem; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,122,110,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-note {
  font-size: .78rem;
  color: var(--grey-400);
  margin-top: 12px;
  line-height: 1.5;
}
.form-success {
  display: none;
  background: var(--teal-pale);
  border: 1px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 16px;
  color: var(--teal);
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

/* ── DISCLAIMER STRIP ─────────────────────────────────────── */
.disclaimer-strip {
  background: var(--amber-pale);
  border-top: 3px solid var(--amber);
  padding: 20px 0;
}
.disclaimer-strip p {
  font-size: .82rem;
  color: var(--grey-600);
  margin: 0;
  line-height: 1.6;
}
.disclaimer-strip strong { color: var(--grey-800); }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--grey-800);
  color: rgba(255,255,255,.65);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-text { color: var(--white); font-size: 1.1rem; }
.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-top: 12px;
  line-height: 1.7;
}
.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--teal-light); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal-links a:hover { color: rgba(255,255,255,.7); }

.footer-disclaimer {
  background: rgba(0,0,0,.2);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  margin-top: 24px;
}
.footer-disclaimer p {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin: 0;
  line-height: 1.7;
}
.footer-disclaimer p + p { margin-top: 8px; }
.footer-disclaimer a { color: rgba(255,255,255,.55); text-decoration: underline; }

/* ── INNER PAGE HERO ──────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); }
.page-hero p { color: rgba(255,255,255,.65); margin-top: 10px; }

/* ── CONTENT PAGE ─────────────────────────────────────────── */
.content-page { padding: 64px 0; }
.content-page .container { max-width: 820px; }
.content-page h2 { margin: 36px 0 12px; font-size: 1.4rem; }
.content-page h3 { margin: 28px 0 10px; font-size: 1.15rem; color: var(--teal); }
.content-page p { margin-bottom: 16px; font-size: .95rem; line-height: 1.8; }
.content-page ul { margin: 12px 0 20px 24px; }
.content-page ul li { margin-bottom: 8px; font-size: .95rem; color: var(--grey-600); line-height: 1.7; }
.content-page strong { color: var(--grey-800); }

.legal-box {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 32px 0;
}
.legal-box h3 { margin-top: 0; color: var(--navy); }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info-card h3 { margin-bottom: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-200);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail .cd-icon {
  width: 38px;
  height: 38px;
  background: var(--teal-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail .cd-icon svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; }
.contact-detail-text strong { display: block; font-size: .85rem; color: var(--navy); font-weight: 700; }
.contact-detail-text span { font-size: .9rem; color: var(--grey-600); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-content { padding-bottom: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .ingredient-feature { grid-template-columns: 1fr; gap: 32px; }
  .ingredient-feature.reverse { direction: ltr; }
  .ingredient-feature-img img { height: 260px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .product-features { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}