/* ===============================================================
   SCANDINAVIAN_CLEAN STYLE – Rare Waves Ernährung CSS Framework
   Author: Senior CSS Developer
   Last Updated: 2024-06-29
   ============================================================== */

/* ===== CSS RESET & NORMALIZE ===== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FFFFFF;
  color: #28423F;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}


/* ===== SCANDINAVIAN_CLEAN BRAND COLORS ===== */
:root {
  --brand-primary: #39736E;
  --brand-primary-dark: #28524F;
  --brand-secondary: #EAEAEA;
  --brand-bg: #FFFFFF;
  --brand-accent: #EDA53F;
  --brand-accent-dark: #C77606;
  --text-main: #28423F;
  --text-light: #7A8B88;
  --neutral-100: #FFFFFF;
  --neutral-200: #F6F6F6;
  --neutral-300: #E0E1DF;
  --neutral-900: #111A16;
  --shadow-low: 0 1px 8px rgba(58, 75, 70, 0.05);
  --shadow-mid: 0 4px 32px rgba(58,75,70,0.07);
  --radius-s: 8px;
  --radius-m: 16px;
}

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500&display=swap');

/* ===== GLOBAL TYPOGRAPHY ===== */
html {
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: var(--text-main);
  background: var(--brand-bg);
  min-height: 100vh;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary-dark);
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.125rem; margin-bottom: 12px; font-weight: 600; }
h4 { font-size: 1rem; margin-bottom: 10px; font-weight: 500; }
p, ul, ol, li { font-size: 1rem; color: var(--text-main); }

@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1rem; }
}
@media (max-width: 640px) {
  h1 { font-size: 1.4rem; margin-bottom: 16px; }
  h2 { font-size: 1.1rem; margin-bottom: 12px; }
}
strong { font-weight: 600; }
em { font-style: italic; }

/* ===== SPACING, CONTAINER, SECTION ===== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--neutral-200);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-low);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
}

/* Clean up overlapping: always margin between sections */
section + section {
  margin-top: 32px;
}

/* ===== HEADER & MAIN NAVBAR ===== */
header {
  background: var(--neutral-100);
  box-shadow: var(--shadow-low);
  z-index: 20;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 18px 0;
  justify-content: flex-start;
  gap: 16px;
}
.main-nav > a {
  padding: 8px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--radius-s);
  transition: background 0.15s, color 0.15s;
  color: var(--brand-primary-dark);
}
.main-nav > a:hover:not(.btn-primary),
.main-nav > a:focus:not(.btn-primary) {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.main-nav > a img {
  height: 36px;
  vertical-align: middle;
  margin-right: 8px;
}

/* ===== BUTTONS & CTAs ===== */
.btn-primary, .btn-primary:visited {
  appearance: none;
  background: var(--brand-primary);
  color: #fff;
  border-radius: var(--radius-s);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 12px 32px;
  margin-top: 8px;
  box-shadow: var(--shadow-low);
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.16s, color 0.15s;
  border: none;
  display: inline-block;
  letter-spacing: 0.01em;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-accent);
  color: #fff;
  box-shadow: 0 2px 16px rgba(58,75,70,0.12);
}
.btn-secondary {
  background: var(--brand-secondary);
  color: var(--brand-primary-dark);
  border-radius: var(--radius-s);
  padding: 10px 22px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.17s, color 0.13s;
  border: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--brand-primary);
  color: #fff;
}

/* Link as button (e.g. footer) */
a.btn-primary, a.btn-secondary {
  text-align: center;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(102deg, #F6F6F6 60%, var(--brand-secondary) 100%);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-low);
  margin-bottom: 60px;
  padding: 48px 0 56px 0;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  color: var(--brand-primary-dark);
  font-size: 2.3rem;
}
.hero p {
  font-size: 1.18rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .hero {
    padding: 28px 0 32px 0;
  }
}
@media (max-width: 640px) {
  .hero .container,
  .hero .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hero {
    padding: 22px 0 18px 0;
  }
}

/* ===== FLEX UTILITIES & PATTERNS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-low);
  padding: 24px 20px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-mid);
  transform: translateY(-4px) scale(1.01);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive Flex Patterns */
@media (max-width: 900px) {
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .section, section {
    padding: 22px 6px;
  }
}

/* ===== FEATURE GRIDS & TAGS ===== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
}
.feature-grid li, .feature-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-low);
  padding: 24px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.15s;
}
.feature-grid li:hover, .feature-grid > div:hover {
  box-shadow: var(--shadow-mid);
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}
.category-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.category-tags li span {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.13s, color 0.13s;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(58,75,70,0.06);
}
.category-tags li span:hover {
  background: var(--brand-accent);
  color: #fff;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--neutral-100);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-low);
  margin-bottom: 60px;
  padding: 38px 0;
}
.testimonial-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius-s);
  padding: 28px 24px;
  min-width: 230px;
  max-width: 400px;
  box-shadow: var(--shadow-low);
  font-size: 1rem;
  margin-bottom: 20px;
  border-left: 5px solid var(--brand-primary);
  color: var(--brand-primary-dark);
  position: relative;
  transition: box-shadow 0.15s, border-color 0.13s;
  z-index: 1;
}
.testimonial-card:hover {
  box-shadow: 0 6px 36px rgba(58,75,70,0.15);
  border-left: 5px solid var(--brand-accent-dark);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: var(--brand-primary-dark);
  margin-bottom: 6px;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  color: var(--text-light);
  font-style: italic;
}
.stars {
  font-size: 1.2rem;
  color: var(--brand-accent);
  margin-top: -8px;
}

/* ===== MAIN & SUB SECTIONS ===== */
.about-short, .about-team, .values, .services-cta, .principles, .scienced-based, .abo-features, .cta,
.contact-info, .about-contact, .confirmation, .legal, .about-blog, .blog-features, .recipe-categories {
  background: var(--neutral-200);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-low);
  padding: 38px 0 25px 0;
}

.benefits-list, .category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 16px;
}
.benefits-list li, .category-list li {
  position: relative;
  padding-left: 16px;
  color: var(--brand-primary-dark);
}
.benefits-list li::before, .category-list li::before {
  content: '\2022';
  color: var(--brand-accent);
  position: absolute;
  left: 0;
  font-size: 1.2em;
  top: 1px;
}

.map-snippet {
  background: var(--brand-secondary);
  border-radius: var(--radius-s);
  padding: 12px 18px;
  color: var(--text-main);
  margin-top: 12px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 44px 0 20px 0;
  margin-top: 48px;
  font-size: 0.97rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
}
.footer-nav a, .footer-legal a {
  color: #fff;
  opacity: 0.85;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.14s, opacity 0.17s;
  margin-bottom: 2px;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: var(--brand-accent);
  opacity: 1;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 19px 0 12px 0;
}
.footer-socials a img {
  width: 26px;
  height: 26px;
  filter: grayscale(0.4) brightness(1.05) contrast(1.1);
  transition: filter 0.16s;
}
.footer-socials a:hover img {
  filter: grayscale(0) brightness(1.2) drop-shadow(0 2px 4px rgba(39,60,51,0.06));
}
.footer-note {
  color: #eee;
  opacity: 0.76;
  margin-top: 12px;
  font-size: 0.89rem;
}
@media (max-width: 700px) {
  footer .container {
    padding-left: 8px;
    padding-right: 8px;
    gap: 10px;
    font-size: 0.94rem;
  }
}

/* ====== MOBILE MENU ====== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 21px;
  right: 24px;
  background: var(--brand-primary);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 120;
  box-shadow: var(--shadow-low);
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-accent-dark);
  color: #fff;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(41, 82, 79, 0.98);
  color: #fff;
  z-index: 5000;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.7,.3,.2,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 12px 0 18px 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0 20px 0 0;
  align-self: flex-start;
  transition: color 0.18s;
  z-index: 5050;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 32px;
  margin-top: 10px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  font-weight: 600;
  padding: 10px 0 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  width: fit-content;
  transition: color 0.15s, background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-accent);
  background: none;
}
@media (max-width: 1024px) {
  .main-nav > a:not(:first-child) { font-size: 0.96rem; }
}
@media (max-width: 900px) {
  .main-nav {
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.97rem;
    padding-right: 44px;
  }
}
@media (max-width: 760px) {
  .main-nav > a, .main-nav > a.btn-primary {
    display: none;
  }
  .main-nav > a:first-child {
    display: flex;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Mobile menu: lock body scroll when open (utility class from JS) */
body.mobile-menu-active {
  overflow: hidden;
}

/* ===== CARDS (GENERIC) ===== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* ===== CONTACT SECTIONS ===== */
.contact-info ul, .about-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 12px;
}
.contact-info li, .about-contact li, .contact-short ul li {
  font-size: 1rem;
  color: var(--brand-primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}
.contact-info li img {
  width: 20px; height: 20px; flex-shrink: 0;
  margin-right: 5px;
}
.contact-info p img {
  width: 18px; height: 18px; margin-right: 5px;
}

/* ===== LEGAL SECTIONS & TYPOGRAPHY ===== */
.legal h1,
.legal h2,
.legal h3 {
  color: var(--brand-primary-dark);
}
.legal {
  background: var(--neutral-200);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-low);
  padding: 32px 0 32px 0;
  margin-bottom: 40px;
}
.legal ul {
  margin-left: 20px;
  margin-bottom: 18px;
}
.legal ul li {
  color: var(--brand-primary-dark);
  margin-bottom: 7px;
  position: relative;
  padding-left: 17px;
}
.legal ul li::before {
  content: '\2022';
  color: var(--brand-accent);
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 1.2em;
}

/* ===== BLOG & CATEGORY LISTS ===== */
.blog-features .content-wrapper, .recipe-categories .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.blog-features .category-list, .blog-features ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-features h3 {
  margin-top: 18px;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--neutral-300);
  color: var(--brand-primary-dark);
  box-shadow: 0 -4px 24px rgba(58,75,70,0.07);
  padding: 18px 4vw 16px 4vw;
  z-index: 5002;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  justify-content: space-between;
  transition: transform 0.3s cubic-bezier(.7,.3,.2,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__text {
  flex: 1 1 200px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-btn {
  border-radius: var(--radius-s);
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  background: var(--brand-primary);
  color: #fff;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.16s, color 0.13s;
  box-shadow: var(--shadow-low);
}
.cookie-btn.settings {
  background: var(--brand-secondary);
  color: var(--brand-primary-dark);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--brand-secondary);
  color: var(--brand-accent);
}
.cookie-btn.accept {
  background: var(--brand-accent);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--brand-accent-dark);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--brand-secondary);
  color: var(--brand-primary-dark);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fce9cd;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 2vw 12px 2vw;
    font-size: 0.97rem;
  }
  .cookie-banner__actions { gap: 8px; }
}

/* ===== COOKIE SETTINGS MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(41,82,79,0.78);
  z-index: 7000;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transition: opacity 0.25s;
}
.cookie-modal {
  width: 98vw;
  max-width: 460px;
  background: var(--brand-bg);
  border-radius: var(--radius-m) var(--radius-m) 0 0;
  box-shadow: 0 -4px 24px rgba(58,75,70,0.10);
  padding: 30px 30px 18px 30px;
  margin-bottom: 0;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.43s cubic-bezier(.7,.26,.2,1);
}
.cookie-modal.show {
  transform: translateY(0);
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 22px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--brand-primary);
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal .cookie-modal-close:hover {
  color: var(--brand-accent-dark);
}
.cookie-modal h2 {
  color: var(--brand-primary);
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  margin-left: 0;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 6px;
  background: var(--neutral-200);
  border-radius: var(--radius-s);
}
.cookie-modal label {
  font-family: 'Roboto',Arial,sans-serif;
  font-size: 1rem;
}
.cookie-toggle {
  margin-left: auto;
}
.cookie-modal .cookie-category-essential {
  color: var(--brand-accent-dark);
  font-weight: 600;
}

@media (max-width: 680px) {
  .cookie-modal {
    padding: 18px 4vw 8px 4vw;
    max-width: 98vw;
    font-size: 0.96rem;
  }
}

/* ====== FORMS & INPUTS ===== */
input[type="text"], input[type="email"], input[type="number"], textarea, select {
  background: var(--neutral-100);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-s);
  padding: 10px 14px;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 8px;
  transition: border 0.13s, box-shadow 0.17s;
  box-shadow: var(--shadow-low);
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--brand-accent);
  box-shadow: 0 2px 12px rgba(237,165,63,0.12);
  outline: none;
}

label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--brand-primary-dark);
  margin-bottom: 4px;
  font-weight: 500;
  display: block;
}

/* ===== MICRO-INTERACTIONS & TRANSITIONS ===== */
a, button, .btn-primary, .btn-secondary, .card, .card li, .feature-grid li, .category-tags li span, .cookie-btn {
  transition: all 0.15s cubic-bezier(.76,.25,.34,1.03);
}
.card:active, .feature-grid li:active {
  transform: scale(0.98);
}

/* Subtle visual separation for cards, testimonials, lists */
ul, ol {
  margin-left: 18px;
  margin-bottom: 12px;
}
ul li, ol li {
  margin-bottom: 7px;
  color: var(--text-main);
}

/* ===== ACCESSIBILITY/UTILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
  }
}

/* ====== END OF STYLE.CSS ====== */
