/* RedeKraft Akademie — soft-light-844.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #0d0d0d;
  --dark-alt:   #1e1e1e;
  --near-black: #090909;
  --white:      #fffffe;
  --lime:       #e2ffc5;
  --muted:      rgb(111,111,111);
  --label:      rgb(148,148,148);
  --card-bg:    #f2f2f2;
  --faq-bg:     #edebdc;
  --divider:    rgb(53,53,53);
  --border:     rgb(80,82,83);
  --ff:         'Inter', system-ui, sans-serif;
  --radius:     6px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff);
  background: #fff;
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--ff); }
input, textarea, select { font-family: var(--ff); }

/* ─── UTILITY ─────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 900px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
}
.btn--dark:hover { background: #2a2a2a; }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn--outline:hover { border-color: var(--white); }
.btn--lime {
  background: var(--lime);
  color: var(--dark);
}
.btn--lime:hover { background: #cff5a8; }
.btn--white {
  background: var(--white);
  color: var(--dark);
}
.btn--white:hover { background: #e8e8e8; }

/* ─── NAVBAR ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  mix-blend-mode: normal;
  background: rgba(13,13,13,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 30px;
  max-width: 1440px;
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo svg { height: 32px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 7px 14px;
  border-radius: 4px;
  background: rgba(251,251,251,0.05);
  backdrop-filter: blur(25px);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24px;
  transition: var(--transition);
}
.nav__link:hover, .nav__link--active { background: rgba(255,255,255,0.12); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__cta .btn { padding: 10px 20px; font-size: 13px; }

/* hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link { display: block; color: var(--white); }

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../picture/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}
.hero__heading {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 28px;
}
.hero__heading em {
  font-style: normal;
  color: rgba(255,255,255,0.35);
}
.hero__sub {
  max-width: 420px;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* ─── STATS ───────────────────────────────────────────── */
.stats {
  background: var(--dark);
  padding: 80px 0 100px;
  border-top: 1px solid var(--divider);
}
.stats__heading {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 60px;
}
.stats__heading span { color: rgba(255,255,255,0.22); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat {
  padding: 40px 30px 40px 0;
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 30px;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat__num {
  font-size: 42px;
  font-weight: 700;
  color: rgb(116,116,120);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 10px;
}
.stat__label { font-size: 14px; color: var(--white); margin-bottom: 8px; }
.stat__desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ─── SECTION COMMONS ─────────────────────────────────── */
.section { padding: 100px 0; }
.section--gray { background: var(--card-bg); }
.section--dark { background: var(--dark); color: var(--white); }
.section--faq { background: var(--faq-bg); }

.section__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.section__heading {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section__sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.section--dark .section__sub { color: rgba(255,255,255,0.5); }

/* ─── ABOUT STRIP ─────────────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip__img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-strip__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── SERVICES ────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.service-card {
  background: var(--dark-alt);
  padding: 40px 32px;
  border-radius: 4px;
  color: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover { background: #2a2a2a; }
.service-card__icon {
  font-size: 24px;
  color: var(--lime);
  margin-bottom: 20px;
}
.service-card__title {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.2px;
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card__price {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ─── PROCESS ─────────────────────────────────────────── */
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid #d0d0d0;
}
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid #d0d0d0;
  align-items: start;
}
.process-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  flex-shrink: 0;
}
.process-step__body {}
.process-step__title {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}
.process-step__desc { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ─── GALLERY ─────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 4px;
}
.gallery__item {
  overflow: hidden;
  border-radius: 4px;
}
.gallery__item:first-child { grid-row: 1 / 3; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.03); }

/* ─── FAQ ─────────────────────────────────────────────── */
.faq__row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq__heading-block .section__heading { margin-bottom: 0; }
.faq__heading-muted { color: rgba(12,12,12,0.25); display: block; }
.faq__list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid rgba(12,12,12,0.12);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid rgba(12,12,12,0.12); }
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 400;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--ff);
}
.faq-item__q i { color: var(--muted); font-size: 14px; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-item__q i { transform: rotate(180deg); }
.faq-item__a {
  display: none;
  padding-top: 16px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-item__a { display: block; }
.faq__cta { margin-top: 48px; }

/* ─── CTA SECTION ─────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  padding: 100px 0;
  text-align: center;
}
.cta-section__heading {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-section__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ─── TESTIMONIALS ────────────────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 28px 24px;
}
.testimonial-card__quote {
  font-size: 32px;
  font-weight: 600;
  color: rgba(0,0,0,0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.testimonial-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--dark);
  margin-bottom: 20px;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #c5c5c5;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-card__name { font-size: 13px; font-weight: 600; }
.testimonial-card__role { font-size: 12px; color: var(--muted); }

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 80px 0 40px;
  color: var(--white);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer__brand {}
.footer__brand svg { height: 28px; width: auto; margin-bottom: 16px; }
.footer__tagline { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 220px; }
.footer__contact-info { margin-top: 20px; }
.footer__contact-info p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer__contact-info i { margin-top: 2px; flex-shrink: 0; font-size: 12px; }
.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 20px;
}
.footer__col-links { display: flex; flex-direction: column; gap: 12px; }
.footer__col-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--transition);
}
.footer__col-links a:hover { color: var(--white); }
.footer__divider {
  height: 1px;
  background: var(--divider);
  margin-bottom: 32px;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy { font-size: 12px; color: var(--muted); }
.footer__legal { display: flex; gap: 32px; }
.footer__legal a { font-size: 12px; color: var(--muted); transition: color var(--transition); }
.footer__legal a:hover { color: var(--white); }
.footer__social { display: flex; gap: 24px; }
.footer__social a { font-size: 13px; color: var(--muted); transition: color var(--transition); }
.footer__social a:hover { color: var(--white); }
.footer__social i { font-size: 16px; }

/* ─── COOKIES BANNER ──────────────────────────────────── */
.cookies-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 540px;
  background: var(--dark-alt);
  color: var(--white);
  border-radius: 10px;
  padding: 24px 28px;
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--divider);
  display: none;
}
.cookies-banner.visible { display: block; }
.cookies-banner__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.cookies-banner__text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}
.cookies-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookies-banner__actions .btn { padding: 10px 20px; font-size: 13px; }
.cookies-banner__actions .btn--ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--divider);
}

/* ─── CONTACT FORM ────────────────────────────────────── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dark);
  font-size: 16px;
}
.contact-info__label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-info__value { font-size: 15px; }

.form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--dark); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #d8d8d8;
  border-radius: var(--radius);
  font-size: 15px;
  background: #fff;
  color: var(--dark);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--dark); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form__note { font-size: 12px; color: var(--muted); }
.form__submit { align-self: flex-start; }

/* ─── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  color: var(--white);
}
.page-hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.page-hero__heading {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  line-height: 1.65;
}

/* ─── TEXT CONTENT (inner pages) ─────────────────────── */
.text-content { max-width: 760px; margin: 0 auto; }
.text-content h2 {
  font-size: 24px;
  font-weight: 500;
  margin: 40px 0 14px;
  letter-spacing: -0.2px;
}
.text-content h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 28px 0 10px;
}
.text-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 16px;
}
.text-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.text-content ul li { font-size: 16px; color: #333; line-height: 1.7; margin-bottom: 8px; }
.text-content a { color: var(--dark); border-bottom: 1px solid #d0d0d0; }

/* ─── HISTORY PAGE ────────────────────────────────────── */
.timeline { max-width: 700px; margin: 60px auto 0; padding: 0 24px; }
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 0 0 48px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 28px;
  bottom: 0;
  width: 1px;
  background: #d0d0d0;
}
.timeline-item:last-child::before { display: none; }
.timeline-item__year {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding-top: 4px;
}
.timeline-item__dot {
  position: absolute;
  left: 30px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--dark);
}
.timeline-item__title { font-size: 18px; font-weight: 500; margin-bottom: 8px; }
.timeline-item__text { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ─── TEAM GRID ───────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.team-card { text-align: center; }
.team-card__photo {
  aspect-ratio: 1;
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name { font-size: 17px; font-weight: 500; margin-bottom: 4px; }
.team-card__role { font-size: 14px; color: var(--muted); }

/* ─── SEND.PHP ────────────────────────────────────────── */
.send-box {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 60px 24px;
}
.send-box__icon { font-size: 48px; color: var(--lime); margin-bottom: 24px; }
.send-box__title { font-size: 28px; font-weight: 400; margin-bottom: 12px; }
.send-box__text { font-size: 16px; color: var(--muted); line-height: 1.65; margin-bottom: 32px; }

/* ─── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .faq__row { grid-template-columns: 1fr; gap: 40px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery__item:first-child { grid-row: auto; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta .btn--white { display: none; }
  .nav__burger { display: flex; }
  .about-strip { grid-template-columns: 1fr; gap: 40px; }
  .about-strip__img { order: -1; }
  .services__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .stat:first-child { border-top: none; }
  .gallery { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 60px 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__top { grid-template-columns: 1fr; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .nav__inner { padding: 0 16px; }
}
