/* ===== CSS VARIABLES ===== */
:root {
  --bg-deep: #020d06;
  --bg-mid: #041a0d;
  --bg-glow: #062e14;
  --green-primary: #00ff6a;
  --green-soft: #00c94f;
  --green-dim: #1a4d2e;
  --green-ghost: rgba(0, 255, 106, 0.08);
  --glass-bg: rgba(4, 30, 15, 0.45);
  --glass-border: rgba(0, 255, 106, 0.18);
  --glass-shine: rgba(0, 255, 106, 0.06);
  --blur-amount: 22px;
  --blur-heavy: 40px;
  --text-primary: #e8fff2;
  --text-muted: rgba(200, 255, 220, 0.55);
  --shadow-glow: 0 0 40px rgba(0, 255, 106, 0.12), 0 8px 32px rgba(0,0,0,0.5);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(0, 255, 106, 0.1);
  --radius-card: 20px;
  --radius-pill: 100px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== BODY & BACKGROUND ===== */
body {
  min-height: 100vh;
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(0, 80, 30, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 90%, rgba(0, 120, 50, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(0, 255, 106, 0.04) 0%, transparent 60%);
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

body::before {
  content: '';
  position: fixed;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 200, 80, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: floatOrb 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 100, 0.09) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: floatOrb 16s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ===== GLASS MIXIN ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur-amount)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(0, 255, 106, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass::before {
  content: '';
  position: absolute;
  top: 0; left: 10%;
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 106, 0.4), transparent);
  pointer-events: none;
}
.glass:hover {
  border-color: rgba(0, 255, 106, 0.35);
  box-shadow: 0 0 60px rgba(0, 255, 106, 0.18), 0 12px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(0, 255, 106, 0.2);
  transform: translateY(-3px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: rgba(2, 20, 10, 0.7);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(0, 255, 106, 0.2);
  border-radius: var(--radius-pill);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4), 0 0 20px rgba(0, 255, 106, 0.08);
  white-space: nowrap;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--green-primary);
  text-shadow: 0 0 20px rgba(0, 255, 106, 0.5);
  letter-spacing: 0.05em;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s, text-shadow 0.25s;
}
.nav-link:hover {
  color: var(--green-primary);
  text-shadow: 0 0 12px rgba(0, 255, 106, 0.6);
}

/* ===== DROPDOWN ===== */
.dropdown { position: relative; }
.dropbtn {
  background: none; border: none;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  cursor: pointer; display: flex; align-items: center; gap: .3rem;
  transition: color 0.25s, text-shadow 0.25s; padding: 0;
}
.dropbtn::after { content: '▾'; font-size: 0.75rem; }
.dropbtn:hover, .dropdown:hover .dropbtn {
  color: var(--green-primary);
  text-shadow: 0 0 12px rgba(0, 255, 106, 0.6);
}
.dropdown-content {
  display: none; position: absolute; top: calc(100% + 1rem); right: -1rem;
  background: rgba(2, 15, 8, 0.92);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(0, 255, 106, 0.18);
  border-radius: 16px; min-width: 280px;
  max-height: 420px; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(0, 255, 106, 0.08);
  z-index: 200; padding: .6rem 0;
  animation: fadeIn .2s ease;
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a {
  color: var(--text-muted); padding: .55rem 1.2rem; display: block;
  font-size: .83rem; transition: all .2s;
}
.dropdown-content a:hover { background: rgba(0, 255, 106, 0.06); color: var(--green-primary); }
.dropdown-content::-webkit-scrollbar { width: 4px; }
.dropdown-content::-webkit-scrollbar-track { background: transparent; }
.dropdown-content::-webkit-scrollbar-thumb { background: rgba(0, 255, 106, 0.2); border-radius: 10px; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--green-primary); margin: 4px 0; transition: .3s; border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px,-5px); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== MAIN CONTENT WRAPPER ===== */
.main-content { padding-top: 6rem; min-height: calc(100vh - 120px); position: relative; z-index: 1; }

/* ===== PAGE WRAPPER (subpages) ===== */
.page-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: 960px;
  margin: 0 auto .5rem;
  padding: 0 1.5rem;
  font-size: .82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--green-soft); font-weight: 600; }
.breadcrumb a:hover { color: var(--green-primary); }
.breadcrumb span { margin: 0 .4rem; opacity: 0.4; }

/* ===== PAGE H1 ===== */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 40px rgba(0, 255, 106, 0.1);
}
h1 span.accent { color: var(--green-primary); }

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem;
}
h3 { font-size: 1.1rem; font-weight: 600; color: var(--green-soft); margin: 1.5rem 0 .6rem; }

/* ===== INTRO / SECTION TEXT ===== */
.intro-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}
.section-text { color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }

/* ===== TABLE OF CONTENTS ===== */
.toc {
  background: rgba(0, 255, 106, 0.04);
  border: 1px solid rgba(0, 255, 106, 0.15);
  border-radius: 16px;
  padding: 1.5rem 1.8rem;
  margin: 1.5rem 0 2rem;
  display: inline-block;
  min-width: 280px;
  backdrop-filter: blur(10px);
}
.toc-title {
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: .9rem;
  font-size: 1rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.toc-title::before { content: '◈'; font-size: 1rem; }
.toc ul { display: flex; flex-direction: column; gap: .5rem; }
.toc a {
  color: var(--text-muted);
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color .2s;
}
.toc a::before { content: '→'; color: var(--green-soft); }
.toc a:hover { color: var(--green-primary); }

/* ===== QUOTE CARDS GRID ===== */
.quotes-section {
  padding: 2rem 0 4rem;
  position: relative;
  z-index: 1;
}
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
  margin: 1.5rem 0 3rem;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(0, 255, 106, 0.08),
      0 8px 32px rgba(0, 0, 0, 0.45),
      0 0 30px rgba(0, 255, 106, 0.05),
      inset 0 0 40px rgba(0, 255, 106, 0.02);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(0, 255, 106, 0.14),
      0 8px 32px rgba(0, 0, 0, 0.45),
      0 0 55px rgba(0, 255, 106, 0.12),
      inset 0 0 40px rgba(0, 255, 106, 0.05);
  }
}

.quote-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur-heavy)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur-heavy)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  animation: glowPulse 4s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* Top shine streak on card */
.quote-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%;
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 106, 0.35), transparent);
  pointer-events: none;
}

/* Radial glow smear that appears on hover */
.quote-card::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(0, 255, 106, 0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.quote-card:hover::after { opacity: 1; }

.quote-card:hover {
  border-color: rgba(0, 255, 106, 0.45);
  transform: translateY(-8px) scale(1.015);
  animation-play-state: paused;
  box-shadow:
    0 0 0 1px rgba(0, 255, 106, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 100px rgba(0, 255, 106, 0.18),
    0 0 200px rgba(0, 255, 106, 0.06),
    inset 0 0 60px rgba(0, 255, 106, 0.05);
}

.quote-card .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 0.6;
  color: rgba(0, 255, 106, 0.12);
  position: absolute;
  top: 1.2rem; left: 1.5rem;
  user-select: none;
  pointer-events: none;
  text-shadow: 0 0 30px rgba(0, 255, 106, 0.2);
}
.quote-card .quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
  color: var(--text-primary);
  margin: 0 0 1.2rem;
  position: relative;
  z-index: 1;
  font-style: italic;
  letter-spacing: 0.01em;
  padding-left: 1.2rem;
}
.quote-card .q-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-soft);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
  padding-left: 1.2rem;
}
.quote-card .q-num::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: var(--green-primary);
  box-shadow: 0 0 10px var(--green-primary), 0 0 20px rgba(0, 255, 106, 0.4);
}

/* Featured card */
.quote-card.featured {
  grid-column: span 2;
  padding: 3.5rem 3rem;
  background: rgba(0, 40, 20, 0.5);
}

/* ===== TAG BADGE ===== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(0, 255, 106, 0.08);
  border: 1px solid rgba(0, 255, 106, 0.2);
  border-radius: var(--radius-pill);
  padding: .3rem .85rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green-soft);
  backdrop-filter: blur(8px);
  transition: all .25s ease;
}
.tag:hover { background: rgba(0, 255, 106, 0.15); border-color: rgba(0, 255, 106, 0.4); color: var(--green-primary); }

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, rgba(0, 255, 106, 0.15), rgba(0, 200, 80, 0.08));
  border: 1px solid rgba(0, 255, 106, 0.4);
  backdrop-filter: blur(10px);
  color: var(--green-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 2rem; border-radius: var(--radius-pill);
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(0, 255, 106, 0.1), inset 0 1px 0 rgba(0, 255, 106, 0.15);
}
.btn-primary:hover {
  background: linear-gradient(135deg, rgba(0, 255, 106, 0.25), rgba(0, 200, 80, 0.15));
  border-color: rgba(0, 255, 106, 0.7);
  box-shadow: 0 0 40px rgba(0, 255, 106, 0.25), 0 4px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(0, 255, 106, 0.3);
  transform: translateY(-2px);
}

/* ===== RELATED LINKS ===== */
.related-links { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(0, 255, 106, 0.1); }
.related-links h2 { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: .9rem;
}
.links-grid a {
  display: flex; align-items: center; gap: .6rem;
  padding: .85rem 1.2rem;
  background: rgba(0, 255, 106, 0.04);
  border: 1px solid rgba(0, 255, 106, 0.1);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: .88rem; font-weight: 500;
  transition: all .25s;
  backdrop-filter: blur(8px);
}
.links-grid a::before { content: '→'; color: var(--green-soft); font-size: .9rem; }
.links-grid a:hover { background: rgba(0, 255, 106, 0.1); border-color: rgba(0, 255, 106, 0.25); color: var(--green-primary); transform: translateX(4px); }

/* ===== LEGAL / ABOUT CONTENT ===== */
.legal-content { line-height: 1.9; color: var(--text-muted); }
.legal-content h2 { color: var(--text-primary); font-size: 1.25rem; margin-top: 2rem; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { margin: .8rem 0 1rem 1.5rem; list-style: disc; }
.legal-content li { margin-bottom: .4rem; }

/* ===== CONTACT FORM ===== */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-weight: 600; font-size: .9rem; color: var(--text-muted); }
.form-group input, .form-group textarea {
  padding: .85rem 1.2rem;
  background: rgba(0, 20, 10, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 106, 0.2);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: rgba(0, 255, 106, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 255, 106, 0.08);
  background: rgba(0, 30, 12, 0.65);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.btn-submit {
  padding: .9rem 2.5rem;
  background: linear-gradient(135deg, rgba(0, 255, 106, 0.2), rgba(0, 200, 80, 0.1));
  border: 1px solid rgba(0, 255, 106, 0.4);
  color: var(--green-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill); cursor: pointer;
  align-self: flex-start;
  transition: all .25s;
}
.btn-submit:hover { box-shadow: 0 0 30px rgba(0, 255, 106, 0.2); transform: translateY(-2px); }

/* ===== IN-TEXT LINKS ===== */
.in-text-link {
  color: var(--green-primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(0, 255, 106, 0.3);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: all .2s;
}
.in-text-link:hover { color: var(--green-soft); text-shadow: 0 0 10px rgba(0, 255, 106, 0.4); }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid rgba(0, 255, 106, 0.1);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  background: rgba(0, 10, 5, 0.5);
  backdrop-filter: blur(20px);
}
footer p { color: var(--text-muted); font-size: .82rem; letter-spacing: .06em; }
.footer-glow { color: var(--green-primary); text-shadow: 0 0 12px rgba(0, 255, 106, 0.5); }
.footer-links { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.footer-links a { color: var(--text-muted); font-size: .82rem; font-weight: 500; transition: color .2s; }
.footer-links a:hover { color: var(--green-primary); }

/* ===== SCROLL ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ===== DROPDOWN OPEN (JS class) ===== */
.dropdown.open .dropdown-content {
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

  /* --- Navbar: collapse to pill showing only logo + toggle --- */
  .navbar {
    top: .8rem;
    padding: .7rem 1.2rem;
    gap: 0;
    flex-direction: row;   /* keep horizontal for the collapsed state */
    align-items: center;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    max-width: calc(100vw - 2rem);
    width: auto;
    overflow: visible;
  }

  /* Hide regular links & dropdown in collapsed state */
  .nav-link  { display: none; }
  .dropdown  { display: none; }

  /* Show hamburger toggle */
  .nav-toggle { display: flex; margin-left: auto; }

  /* --- Navbar: expanded (mobile-open) --- */
  .navbar.mobile-open {
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
    padding: .7rem 1.2rem .9rem;
    gap: 0;
    width: calc(100vw - 2rem);
  }

  /* Logo row stays flex row inside the column */
  .navbar.mobile-open .nav-logo {
    margin-bottom: .5rem;
  }
  .navbar.mobile-open .nav-toggle {
    position: absolute;
    right: 1.2rem;
    top: .7rem;
  }

  /* Show nav links stacked */
  .navbar.mobile-open .nav-link {
    display: block;
    width: 100%;
    padding: .55rem 0;
    font-size: .88rem;
    border-top: 1px solid rgba(0,255,106,.08);
    color: var(--text-muted);
  }
  .navbar.mobile-open .nav-link:hover { color: var(--green-primary); }

  /* Show dropdown in mobile panel */
  .navbar.mobile-open .dropdown {
    display: block;
    width: 100%;
    border-top: 1px solid rgba(0,255,106,.08);
    padding: .2rem 0;
  }

  /* Dropdown list: static, scrollable within panel */
  .dropdown-content {
    position: static !important;
    display: none;
    max-height: 220px;
    overflow-y: auto;
    margin-top: .3rem;
    border-radius: 10px;
    border: 1px solid rgba(0,255,106,.12);
    background: rgba(2,12,6,.9);
    box-shadow: none;
    animation: none;
    min-width: unset;
    padding: .3rem 0;
  }
  .dropdown.open .dropdown-content { display: block; }

  .dropbtn {
    width: 100%;
    justify-content: space-between;
    padding: .55rem 0;
    font-size: .88rem;
  }

  .quote-card.featured { grid-column: span 1; }
  .main-content { padding-top: 5rem; }
}

@media (max-width: 600px) {
  .quotes-grid { grid-template-columns: 1fr; gap: 1rem; }
  .links-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.6rem; }
  .quote-card { padding: 2rem 1.5rem 1.5rem; }
  .quote-card .quote-mark { font-size: 5rem; }
}
