/* =========================================================
   Nutrition Health Zone — Main Stylesheet
   ========================================================= */

:root {
  --nhz-primary: #0f9d76;
  --nhz-primary-dark: #0b7a5b;
  --nhz-primary-soft: #e3f5ee;
  --nhz-accent: #f5a623;
  --nhz-accent-dark: #d98c0a;
  --nhz-dark: #12332e;
  --nhz-body: #4c5b58;
  --nhz-light: #f4faf7;
  --nhz-border: #e2ece7;
  --nhz-shadow: 0 10px 30px rgba(18, 51, 46, 0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--nhz-body);
  background-color: #fff;
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--nhz-dark);
  font-weight: 700;
  line-height: 1.3;
}

a { transition: all 0.25s ease; }
a:hover { color: var(--nhz-primary); }

img { max-width: 100%; }

::selection { background: var(--nhz-primary); color: #fff; }

/* ---------- Buttons ---------- */
.btn-nhz {
  background: var(--nhz-primary);
  color: #fff;
  border: 2px solid var(--nhz-primary);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
}
.btn-nhz:hover, .btn-nhz:focus {
  background: var(--nhz-primary-dark);
  border-color: var(--nhz-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 157, 118, 0.3);
}

.btn-nhz-outline {
  background: transparent;
  color: var(--nhz-primary);
  border: 2px solid var(--nhz-primary);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
}
.btn-nhz-outline:hover, .btn-nhz-outline:focus {
  background: var(--nhz-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--nhz-accent);
  color: #fff;
  border: 2px solid var(--nhz-accent);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
}
.btn-accent:hover, .btn-accent:focus {
  background: var(--nhz-accent-dark);
  border-color: var(--nhz-accent-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Fixed header (topbar + navbar) ---------- */
#siteHeader { z-index: 1030; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--nhz-dark);
  color: #cfe8de;
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar a { color: #cfe8de; }
.topbar a:hover { color: #fff; }
.topbar .bi { color: var(--nhz-accent); margin-right: 6px; }

/* ---------- Navbar ---------- */
.navbar {
  background: #fff;
  padding: 14px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 6px 24px rgba(18, 51, 46, 0.1);
  padding: 8px 0;
}
.navbar .navbar-brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--nhz-dark);
  letter-spacing: -0.3px;
}
.navbar .navbar-brand em {
  font-style: normal;
  color: var(--nhz-primary);
}
.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--nhz-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.navbar .nav-link {
  color: var(--nhz-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 6px;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--nhz-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { width: 60%; }
.navbar .nav-link.active { color: var(--nhz-primary); }
.navbar .btn-subscribe {
  border-radius: 50px;
  font-weight: 600;
  padding: 9px 26px;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(15, 157, 118, 0.14), transparent 60%),
    radial-gradient(900px 420px at -10% 110%, rgba(245, 166, 35, 0.10), transparent 60%),
    var(--nhz-light);
  padding: 90px 0 70px;
  overflow: hidden;
}
.hero-badge {
  display: inline-block;
  background: var(--nhz-primary-soft);
  color: var(--nhz-primary-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 20px;
}
.hero h1 { font-size: 3rem; font-weight: 800; }
.hero h1 span { color: var(--nhz-primary); }
.hero-lead { font-size: 1.1rem; max-width: 540px; }
.hero-img-wrap { position: relative; }
.hero-img-wrap img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(18, 51, 46, 0.18);
  object-fit: cover;
}
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--nhz-shadow);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float-card .icon-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.hero-float-card strong { display: block; color: var(--nhz-dark); font-size: 0.95rem; }
.hero-float-card small { color: var(--nhz-body); }
.float-1 { bottom: -22px; left: -18px; }
.float-2 { top: -20px; right: -10px; }

/* Stats strip */
.stats-strip {
  margin-top: -30px;
  position: relative;
  z-index: 5;
}
.stats-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--nhz-shadow);
  padding: 32px 20px;
  text-align: center;
  border-top: 4px solid var(--nhz-primary);
}
.stats-card .stat-num {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--nhz-primary);
}
.stats-card .stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--nhz-body);
  margin: 0;
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-light { background: var(--nhz-light); }
.section-white { background: #fff; }
.section-dark { background: var(--nhz-dark); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.section-header { max-width: 680px; margin: 0 auto 50px; text-align: center; }
.section-overline {
  display: inline-block;
  color: var(--nhz-primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title { font-size: 2.2rem; margin-bottom: 14px; }
.section-sub { color: var(--nhz-body); margin: 0; }

/* ---------- About (home) ---------- */
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 24px; box-shadow: var(--nhz-shadow); width: 100%; object-fit: cover; }
.about-exp-badge {
  position: absolute;
  right: -14px;
  bottom: -18px;
  background: var(--nhz-primary);
  color: #fff;
  border-radius: 16px;
  padding: 18px 26px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(15, 157, 118, 0.35);
}
.about-exp-badge strong { display: block; font-size: 1.9rem; font-weight: 800; }
.about-exp-badge small { font-size: 0.8rem; opacity: 0.9; }
.about-check li { margin-bottom: 12px; font-weight: 500; color: var(--nhz-dark); }
.about-check .bi { color: var(--nhz-primary); margin-right: 10px; font-size: 1.1rem; }

/* ---------- Why Choose Us ---------- */
.why-card {
  background: #fff;
  border: 1px solid var(--nhz-border);
  border-radius: 18px;
  padding: 34px 28px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--nhz-shadow);
  border-color: transparent;
}
.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: var(--nhz-primary-soft);
  color: var(--nhz-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}
.why-card:hover .why-icon {
  background: var(--nhz-primary);
  color: #fff;
}
.why-card h5 { font-size: 1.1rem; }
.why-card p { margin: 0; font-size: 0.95rem; }

/* ---------- Service cards ---------- */
.service-card {
  border: 1px solid var(--nhz-border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--nhz-shadow);
  border-color: transparent;
}
.service-card .service-img {
  height: 210px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img { transform: scale(1.05); }
.service-card .card-body { padding: 26px 24px; }
.service-card .card-title { font-size: 1.15rem; margin-bottom: 10px; }
.service-card .card-text { font-size: 0.95rem; margin-bottom: 20px; flex-grow: 1; }
.service-card .btn { padding: 9px 22px; font-size: 0.9rem; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--nhz-shadow);
  padding: 34px 30px;
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 26px;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--nhz-primary-soft);
  font-family: Georgia, serif;
}
.testimonial-stars { color: var(--nhz-accent); margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-card p { font-size: 0.98rem; font-style: italic; }
.testimonial-person { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--nhz-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-person strong { display: block; color: var(--nhz-dark); font-size: 0.98rem; }
.testimonial-person small { color: var(--nhz-body); }

/* ---------- Blog cards ---------- */
.blog-card {
  background: #fff;
  border: 1px solid var(--nhz-border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--nhz-shadow);
  border-color: transparent;
}
.blog-card .blog-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.blog-card .card-body { padding: 24px; }
.blog-card h5 { font-size: 1.08rem; }
.blog-card h5 a { color: var(--nhz-dark); text-decoration: none; }
.blog-card h5 a:hover { color: var(--nhz-primary); }
.blog-card .card-text { font-size: 0.93rem; }
.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nhz-primary);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
}
.read-more-link:hover { color: var(--nhz-primary-dark); gap: 12px; }

/* Anchor offset for fixed navbar */
section[id], [id^="post-"] { scroll-margin-top: 120px; }

/* Blog full post (blog page) */
.blog-post-row {
  background: #fff;
  border: 1px solid var(--nhz-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--nhz-shadow);
}
.blog-post-row .post-img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.blog-post-row .post-body { padding: 40px; }
.post-body h3 { font-size: 1.5rem; }
.post-body .post-text p:last-child { margin-bottom: 0; }

/* ---------- FAQ ---------- */
.accordion-item {
  border: 1px solid var(--nhz-border);
  border-radius: 14px !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
}
.accordion-button {
  font-weight: 600;
  color: var(--nhz-dark);
  background: #fff;
  font-size: 1rem;
  padding: 18px 22px;
}
.accordion-button:not(.collapsed) {
  background: var(--nhz-primary-soft);
  color: var(--nhz-primary-dark);
  box-shadow: none;
}
.accordion-button::after {
  filter: hue-rotate(110deg);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f9d76'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b7a5b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body { color: var(--nhz-body); }

/* ---------- CTA ---------- */
.cta-band {
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(255, 255, 255, 0.12), transparent 60%),
    linear-gradient(120deg, var(--nhz-primary-dark), var(--nhz-primary));
  border-radius: 24px;
  padding: 56px 40px;
  color: #fff;
}
.cta-band h2, .cta-band h3 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 560px; }
.cta-band .btn-light { border-radius: 50px; font-weight: 700; }

/* Dark stats band variant */
.section-dark .stats-card {
  background: rgba(255, 255, 255, 0.06);
  border-top-color: var(--nhz-accent);
}
.section-dark .stat-num { color: #fff; }
.section-dark .stat-label { color: #cfe8de; }

/* ---------- Page banner (subpages) ---------- */
.page-banner {
  background:
    radial-gradient(800px 300px at 90% -20%, rgba(245, 166, 35, 0.15), transparent 60%),
    var(--nhz-light);
  padding: 130px 0 60px;
  text-align: center;
}
.page-banner h1 { font-size: 2.6rem; font-weight: 800; }
.page-banner .breadcrumb {
  justify-content: center;
  margin-bottom: 0;
  font-size: 0.9rem;
}
.page-banner .breadcrumb a { color: var(--nhz-primary); text-decoration: none; }
.page-banner .breadcrumb-item.active { color: var(--nhz-body); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: var(--nhz-border); }

/* ---------- Forms ---------- */
.form-control, .form-select {
  border: 1.5px solid var(--nhz-border);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--nhz-dark);
  background-color: #fff;
}
.form-control:focus, .form-select:focus {
  border-color: var(--nhz-primary);
  box-shadow: 0 0 0 0.2rem rgba(15, 157, 118, 0.15);
}
.form-label { font-weight: 600; color: var(--nhz-dark); font-size: 0.92rem; }
.form-control.is-invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.invalid-feedback { font-size: 0.82rem; }
.form-control.is-valid { border-color: var(--nhz-primary); }

.form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--nhz-shadow);
  padding: 40px;
}

.form-alert {
  display: none;
  border-radius: 14px;
  padding: 16px 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.form-alert.show { display: block; animation: fadeSlide 0.4s ease; }
.alert-success-custom { background: var(--nhz-primary-soft); color: #0b7a5b; border: 1px solid #b9e6d5; }
.alert-info-custom { background: #e7f2fb; color: #1d5f96; border: 1px solid #bcdcf5; }
.alert-warning-custom { background: #fdf3e0; color: #9a6a08; border: 1px solid #f3ddb0; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Contact info cards ---------- */
.contact-info-card {
  background: #fff;
  border: 1px solid var(--nhz-border);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nhz-shadow);
  border-color: transparent;
}
.contact-info-card .icon-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--nhz-primary-soft);
  color: var(--nhz-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.contact-info-card h5 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-info-card p, .contact-info-card a { font-size: 0.93rem; margin: 0; }
.contact-info-card a:hover { color: var(--nhz-primary); text-decoration: none; }

.map-frame {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 18px;
  background: var(--nhz-light);
}

/* ---------- Subscribe / Unsubscribe ---------- */
.subscribe-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--nhz-shadow);
  overflow: hidden;
}
.subscribe-card .form-side { padding: 48px 40px; }
.subscribe-card .info-side {
  background: linear-gradient(150deg, var(--nhz-primary-dark), var(--nhz-primary));
  color: #fff;
  padding: 48px 40px;
}
.subscribe-card .info-side h3 { color: #fff; }
.subscribe-card .info-side li { margin-bottom: 12px; color: rgba(255, 255, 255, 0.92); }
.subscribe-card .info-side .bi { color: var(--nhz-accent); margin-right: 10px; }

/* ---------- About page extras ---------- */
.mvv-card {
  background: #fff;
  border: 1px solid var(--nhz-border);
  border-radius: 18px;
  padding: 36px 30px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}
.mvv-card:hover { transform: translateY(-8px); box-shadow: var(--nhz-shadow); border-color: transparent; }
.mvv-card .icon-circle {
  width: 68px; height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--nhz-primary-soft);
  color: var(--nhz-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.mvv-card p { font-size: 0.95rem; margin: 0; }

.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--nhz-primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* ---------- Legal pages ---------- */
.legal-content h4 {
  font-size: 1.25rem;
  margin-top: 34px;
  margin-bottom: 12px;
}
.legal-content h4:first-of-type { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 0.97rem; }
.legal-content ul { padding-left: 22px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--nhz-dark);
  color: #b9d4cc;
  padding: 70px 0 0;
  font-size: 0.95rem;
}
.footer h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer h5::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 3px;
  border-radius: 2px;
  background: var(--nhz-accent);
}
.footer a { color: #b9d4cc; text-decoration: none; }
.footer a:hover { color: #fff; padding-left: 4px; }
.footer .footer-brand {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
}
.footer .footer-brand em { font-style: normal; color: var(--nhz-primary); }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  margin-right: 8px;
  font-size: 1rem;
}
.footer-social a:hover { background: var(--nhz-primary); padding-left: 0; }
.footer ul li { margin-bottom: 10px; }
.footer .contact-line { display: flex; gap: 10px; margin-bottom: 12px; }
.footer .contact-line .bi { color: var(--nhz-accent); margin-top: 4px; }
.footer-newsletter {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
}
.footer-newsletter h4 { color: #fff; }
.footer-newsletter form { max-width: 480px; }
.footer-newsletter .form-control {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.footer-newsletter .form-control::placeholder { color: rgba(255, 255, 255, 0.5); }
.footer-newsletter .form-control:focus {
  border-color: var(--nhz-primary);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.newsletter-feedback { font-size: 0.9rem; margin-top: 12px; min-height: 22px; }
.newsletter-feedback.ok { color: #7fe0bd; }
.newsletter-feedback.err { color: #ffb3a3; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 0.88rem;
}
.footer-bottom a { color: #b9d4cc; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--nhz-primary);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  box-shadow: 0 10px 25px rgba(15, 157, 118, 0.4);
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--nhz-primary-dark); color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .hero h1 { font-size: 2.4rem; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.85rem; }
  .page-banner { padding: 110px 0 45px; }
  .page-banner h1 { font-size: 2.1rem; }
  .float-1 { left: 10px; bottom: -15px; }
  .float-2 { right: 10px; top: -15px; }
  .navbar .nav-link { margin: 0 4px; }
  .navbar-collapse {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    margin-top: 12px;
    box-shadow: var(--nhz-shadow);
  }
}

@media (max-width: 575.98px) {
  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: 2rem; }
  .cta-band { padding: 40px 24px; }
  .form-card { padding: 28px 22px; }
  .subscribe-card .form-side,
  .subscribe-card .info-side { padding: 34px 24px; }
  .blog-post-row .post-body { padding: 26px 22px; }
}
