/* ============================================================
   DIY手工包 — diykits.com.hk
   Mobile-first stylesheet
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary:    #E85D7A;
  --primary-dk: #C9435F;
  --accent:     #FFD166;
  --bg:         #FFF9F5;
  --white:      #FFFFFF;
  --text:       #2D2D2D;
  --text-light: #666666;
  --border:     #F0E0E0;
  --shadow:     0 4px 20px rgba(232,93,122,0.12);
  --radius:     16px;
  --radius-sm:  8px;
  --font:       'Noto Sans TC', sans-serif;
  --nav-h:      64px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 900; line-height: 1.2; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }

/* ---------- Layout Helpers ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { margin-bottom: 8px; }
.section-title p { color: var(--text-light); font-size: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232,93,122,0.4);
}
.btn-primary:hover { background: var(--primary-dk); box-shadow: 0 6px 20px rgba(232,93,122,0.5); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
}
.btn-wa:hover { background: #1ebe5a; box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,249,245,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
}
.nav-logo span { display: block; font-size: 0.65rem; font-weight: 400; color: var(--text-light); }
.nav-links {
  display: none;
  gap: 8px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--primary);
  color: var(--white);
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 999;
  padding: 16px 20px 24px;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  font-size: 1rem;
}
.nav-mobile a:last-child { border-bottom: none; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #FFF0F4 0%, #FFF9F5 50%, #FFF6E8 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '🌸';
  position: absolute;
  font-size: 120px;
  top: -20px; right: -20px;
  opacity: 0.15;
}
.hero::after {
  content: '💐';
  position: absolute;
  font-size: 100px;
  bottom: -10px; left: -10px;
  opacity: 0.12;
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.hero h1 { margin-bottom: 16px; color: var(--primary-dk); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 32px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(232,93,122,0.2); }
.card-body { padding: 20px; }
.card-emoji { font-size: 2.5rem; margin-bottom: 12px; }
.card-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.card-desc { font-size: 0.88rem; color: var(--text-light); margin-bottom: 12px; }
.card-price { font-size: 1.2rem; font-weight: 900; color: var(--primary); }
.card-meta { font-size: 0.8rem; color: var(--text-light); margin-top: 6px; }

/* Tags / badges */
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  margin-right: 4px;
}
.tag-hot   { background: #FFE0E8; color: #C9435F; }
.tag-new   { background: #E8F4FF; color: #2567C0; }
.tag-festival { background: #F0F8E8; color: #4A7C28; }

/* Difficulty stars */
.difficulty { color: var(--accent); font-size: 0.85rem; }

/* ---------- Grid Layouts ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Feature Highlights (icon grid) ---------- */
.highlights { background: var(--white); }
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .highlights-grid { grid-template-columns: repeat(4, 1fr); }
}
.highlight-item { text-align: center; padding: 24px 16px; }
.highlight-icon { font-size: 2.2rem; margin-bottom: 12px; }
.highlight-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.highlight-desc { font-size: 0.82rem; color: var(--text-light); }

/* ---------- FAQ Block ---------- */
.faq-block { background: #FFF0F4; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(232,93,122,0.08);
}
.faq-q { font-weight: 700; color: var(--primary-dk); margin-bottom: 8px; font-size: 1rem; }
.faq-q::before { content: 'Q：'; }
.faq-a { color: var(--text-light); font-size: 0.92rem; }
.faq-a::before { content: 'A：'; font-weight: 700; color: var(--text); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 12px; left: 20px;
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
}
.testimonial-text { font-size: 0.92rem; color: var(--text-light); margin-bottom: 16px; padding-top: 12px; }
.testimonial-author { font-weight: 700; font-size: 0.88rem; }
.testimonial-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 8px; }

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 998;
  background: #25D366;
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 28px rgba(37,211,102,0.55); }

/* ---------- Product Catalogue Filters ---------- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  justify-content: center;
}
.filter-tab {
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-light);
  transition: all .2s;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 560px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card { display: flex; flex-direction: column; }
.product-card .card-body { flex: 1; display: flex; flex-direction: column; }
.product-card .card-desc { flex: 1; }
.product-card.hidden { display: none; }

.product-card-img {
  background: linear-gradient(135deg, #FFF0F4, #FFF6E8);
  aspect-ratio: 1 / 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Product Detail Page ---------- */
.breadcrumb { font-size: 0.82rem; color: var(--text-light); margin-bottom: 24px; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

.product-detail { padding: 40px 0 80px; }
.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .product-layout { grid-template-columns: 1fr 1fr; gap: 60px; }
}

.product-image-box {
  background: linear-gradient(135deg, #FFF0F4, #FFF6E8);
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: var(--shadow);
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 16px 0;
}
.product-price { font-size: 2rem; font-weight: 900; color: var(--primary); }
.stock-badge {
  background: #E8F9EE;
  color: #2E7D32;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.materials-list { margin: 12px 0 0; padding-left: 0; }
.materials-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.materials-list li::before { content: '✦'; color: var(--primary); font-size: 0.7rem; }
.materials-list li:last-child { border-bottom: none; }

.specs-table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 0.9rem; }
.specs-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.specs-table td:first-child { font-weight: 700; color: var(--text-light); width: 40%; }

.steps-list { counter-reset: step; padding-left: 0; }
.steps-list li {
  counter-increment: step;
  padding: 14px 14px 14px 54px;
  position: relative;
  margin-bottom: 12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
}

/* ---------- Services Page ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: transform .2s;
}
.service-card:hover { transform: translateY(-4px); }
.service-icon { font-size: 2.5rem; margin-bottom: 12px; }
.service-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.service-desc { font-size: 0.9rem; color: var(--text-light); margin-bottom: 12px; }
.service-suitable { font-size: 0.82rem; font-weight: 700; color: var(--primary); }

/* ---------- About Page ---------- */
.about-hero { background: linear-gradient(135deg, #FFF0F4, #FFF9F5); padding: 60px 0; }
.about-story { padding: 60px 0; }
.story-content { max-width: 760px; margin: 0 auto; }
.story-content p { margin-bottom: 16px; font-size: 0.98rem; line-height: 1.8; }

.commitments { background: var(--white); padding: 60px 0; }
.commitment-list { max-width: 700px; margin: 0 auto; }
.commitment-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.commitment-item:last-child { border-bottom: none; }
.commitment-icon { font-size: 1.4rem; flex-shrink: 0; }

.credentials { padding: 60px 0; }
.credential-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.credential-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}
.credential-item::before { content: '🏆'; font-size: 1.5rem; }

/* ---------- Contact Page ---------- */
.contact-wa-hero {
  background: linear-gradient(135deg, #E8F9EE, #F0FAF4);
  padding: 50px 0;
  text-align: center;
  border-bottom: 1px solid #C8E6C9;
}
.contact-wa-hero h2 { color: #1B5E20; margin-bottom: 16px; }
.contact-wa-hero p { color: #388E3C; margin-bottom: 24px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 60px 0;
}
@media (min-width: 768px) { .contact-layout { grid-template-columns: 1fr 1.4fr; } }

.contact-info h3 { margin-bottom: 20px; }
.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; font-size: 0.92rem; }
.contact-info-item-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-info-item-text strong { display: block; margin-bottom: 2px; }

/* Form */
.form-label { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color .2s;
  appearance: none;
}
.form-control:focus { outline: none; border-color: var(--primary); }
.form-group { margin-bottom: 20px; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { margin-bottom: 28px; opacity: 0.9; }

/* ---------- Footer ---------- */
.site-footer {
  background: #2D2D2D;
  color: #CCCCCC;
  padding: 40px 0 24px;
  font-size: 0.88rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-brand-name { color: var(--white); font-size: 1.1rem; font-weight: 900; margin-bottom: 8px; }
.footer-tagline { color: #999; margin-bottom: 12px; font-size: 0.82rem; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 12px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: #AAAAAA; transition: color .2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  text-align: center;
  color: #777;
  font-size: 0.8rem;
}

/* ---------- Related Products ---------- */
.related { background: #FFF0F4; padding: 60px 0; }
.related .grid-3 { margin-top: 0; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #FFF0F4 0%, #FFF9F5 100%);
  padding: 50px 0 40px;
  text-align: center;
}
.page-hero h1 { margin-bottom: 10px; }
.page-hero p { color: var(--text-light); }

/* ---------- 404 ---------- */
.page-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.page-404-inner { padding: 40px 20px; }
.page-404-emoji { font-size: 5rem; margin-bottom: 20px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.color-primary { color: var(--primary); }
.fw-bold { font-weight: 700; }
.hidden { display: none !important; }

/* ---------- Animations ---------- */
@keyframes bounce-in {
  0%   { transform: scale(0.9); opacity: 0; }
  60%  { transform: scale(1.04); }
  100% { transform: scale(1); opacity: 1; }
}
.animate-bounce-in { animation: bounce-in .4s ease forwards; }

/* ---------- Why Choose Us ---------- */
.why-us { background: var(--white); }
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .why-us-grid { grid-template-columns: repeat(4, 1fr); }
}
.why-us-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--bg);
  transition: transform .2s, box-shadow .2s;
}
.why-us-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-us-icon { font-size: 2.4rem; margin-bottom: 12px; }
.why-us-title { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.why-us-desc { font-size: 0.84rem; color: var(--text-light); }

/* ---------- Stats / Counter Band ---------- */
.stats-band {
  background: linear-gradient(135deg, var(--primary-dk) 0%, #8B2252 100%);
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-number {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
}
.stat-label { font-size: 0.88rem; opacity: 0.85; margin-top: 6px; }

/* ---------- Parallax Banner ---------- */
.parallax-banner {
  position: relative;
  background-image: url('../products/images/Kids-painting-diy.jpg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  padding: 100px 0;
  text-align: center;
}
.parallax-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
}
.parallax-banner .container { position: relative; }
.parallax-quote {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}
.parallax-sub {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
  font-size: 1rem;
}

/* ---------- Quotes Section ---------- */
.quotes-section { background: #FFF0F4; }
.quotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .quotes-grid { grid-template-columns: 1fr 1fr; }
}
.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.quote-mark {
  font-size: 5rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 8px;
  left: 20px;
  font-family: Georgia, serif;
}
.quote-text {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text);
  padding-top: 20px;
}
.quote-author {
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-dk);
}
