/* -----------------------------------------------
   CSS RESET & BASELINE
----------------------------------------------- */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F1F6F4;
  color: #151920;
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #236972;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #059CC3;
}
ul, ol {
  list-style: none;
}
:focus { outline: 2px solid #236972; outline-offset: 2px; }

/* -----------------------------------------------
   BRAND COLORS, TYPOGRAPHY, VIBRANT ENERGETIC AESTHETIC
----------------------------------------------- */
:root {
  --color-primary: #236972;
  --color-primary-dark: #16444C;
  --color-secondary: #8FC1B5;
  --color-accent: #F1F6F4;
  --color-electric-blue: #059CC3;
  --color-electric-lime: #CDF500;
  --color-pink: #FA297B;
  --color-white: #fff;
  --color-dark: #151920;
  --color-soft: #E3EBE9;
  --box-shadow: 0 4px 20px 0 rgba(35, 105, 114, 0.08), 0 2px 4px 0 rgba(250, 41, 123, 0.09);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --transition: 0.24s cubic-bezier(.6,.17,.3,1);
  --gap-main: 24px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: #059CC3;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(205,245,0,0.05);
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 22px;
  line-height: 1.1;
}
h2 {
  font-size: 2.1rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.32rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, ul, ol {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.09rem;
  margin-bottom: 16px;
  color: var(--color-dark);
}
strong, b { font-weight: 700; }
.subheadline {
  font-size: 1.27rem;
  color: #236972;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* -----------------------------------------------
   LAYOUT CONTAINER STYLES
----------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--box-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* -----------------------------------------------
   HEADER & NAVIGATION
----------------------------------------------- */
header {
  width: 100%;
  background: var(--color-primary);
  box-shadow: 0 3px 24px 0 rgba(35,105,114,0.05);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 14px;
}
.brand-logo {
  height: 56px;
  transition: transform var(--transition);
}
.brand-logo:hover {
  transform: scale(1.05) rotate(-2deg);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.08rem;
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}
.main-nav a:after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 0%;
  height: 3px;
  border-radius: 2px;
  background: var(--color-electric-blue);
  transition: width var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-electric-blue);
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 70%;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #8FC1B5 0%, #CDF500 100%);
  color: #151920;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.09rem;
  letter-spacing: .04em;
  padding: 12px 30px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 28px rgba(250,41,123,.13);
  border: none;
  cursor: pointer;
  margin-left: 18px;
  text-transform: uppercase;
  transition: box-shadow var(--transition), background var(--transition), color var(--transition), transform var(--transition);
  text-shadow: 0 2px 16px rgba(205,245,0,0.26);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(100deg, #059CC3 0%, #FA297B 100%);
  color: #fff;
  box-shadow: 0 6px 28px rgba(5,156,195,0.14);
  transform: translateY(-2px) scale(1.04);
}

/* -----------------------------------------------
   MOBILE NAVIGATION
----------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  z-index: 1002;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #23697222;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #151920ee;
  z-index: 2000;
  transform: translateX(-104vw);
  transition: transform .34s cubic-bezier(.6,.17,.3,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 36px 0 0 0;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  margin: 0 22px 10px 0;
  transition: color var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #CDF500;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  width: 100%;
  margin: 40px 0 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: none;
  line-height: 1.3;
  padding: 6px 0;
  border-bottom: 1px solid #8FC1B533;
  width: 90%;
  transition: color var(--transition), background var(--transition);
  border-radius: var(--radius-sm);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FA297B;
  background: #15192044;
}

/* -----------------------------------------------
   HERO SECTION
----------------------------------------------- */
.hero {
  background: linear-gradient(90deg, #8FC1B5 10%, #059CC3 90%);
  padding: 0;
  margin-bottom: 0;
}
.hero .container {
  padding-top: 38px;
  padding-bottom: 38px;
  justify-content: center;
}
.hero .content-wrapper {
  background: transparent;
  box-shadow: none;
  border-radius: 0px;
  color: #fff;
  text-align: left;
  align-items: flex-start;
  padding: 0;
}
.hero h1 {
  color: var(--color-electric-lime);
  text-shadow: 0 5px 80px #8FC1B5AA, 0 2px 12px #000;
}
.hero .subheadline {
  color: #fff;
  opacity: .93;
  text-shadow: 0 3px 20px #23697233;
}
.hero .btn-primary {
  margin-left: 0;
  margin-top: 18px;
}

/* -----------------------------------------------
   DYNAMIC FLEX LAYOUTS (MANDATORY PATTERNS)
----------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--box-shadow);
  padding: 28px 20px;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 4px #059cc330, 0 2px 10px #8FC1B580;
  transform: translateY(-6px) scale(1.03) rotate(-0.4deg);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 16px 0 #8fc1b51c, 0 1.5px 6px #f1f6f470;
  padding: 20px;
  margin-bottom: 22px;
  min-width: 0;
  flex: 1 1 320px;
  color: #151920;
}
.testimonial-card p {
  font-size: 1.11rem;
  font-family: var(--font-body);
  color: #151920;
  margin-bottom: 0;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-left: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -----------------------------------------------
   FEATURE GRID (used in multiple pages)
----------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.feature {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px #2369721a;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  flex: 1 1 260px;
  gap: 8px;
  border-left: 6px solid #CDF500;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.feature img {
  width: 46px;
  margin-bottom: 12px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 6px 30px 0 #fa297b29;
  border-left: 6px solid #FA297B;
}

/* -----------------------------------------------
   TEAM MEMBER CARDS (about page)
----------------------------------------------- */
.team-member-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.team-member {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 14px #8FC1B529;
  padding: 22px 18px;
  min-width: 220px;
  flex: 1 1 260px;
  transition: box-shadow var(--transition), background var(--transition);
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-left: 4px solid #8FC1B5;
}
.team-member:hover, .team-member:focus-within {
  background: #8FC1B511;
  box-shadow: 0 5px 20px #059cc31a;
  border-left: 4px solid #FA297B;
}

/* -----------------------------------------------
   NEWS LES & EVENT CLASSES (aktuelles.html)
----------------------------------------------- */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}
.news-list li {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px #2369721a;
  padding: 18px 17px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-left: 5px solid #059CC3;
  transition: border-color var(--transition);
}
.news-list li:hover, .news-list li:focus-within {
  border-left: 5px solid #FA297B;
}
.news-list h3 {
  color: #059CC3;
  font-size: 1.11rem;
}
.news-list span {
  align-self: flex-end;
  color: #236972;
  font-size: .95rem;
  margin-top: 4px;
}
.event-preview, .highlighted-news {
  background: #CDF500;
  color: #151920;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-family: var(--font-display);
  margin-bottom: 18px;
  font-weight: 700;
  box-shadow: 0 1.5px 10px #8FC1B54c;
}
.highlighted-news {
  background: #FA297B;
  color: #fff;
}

/* -----------------------------------------------
   UL LISTS (used in tip-lists, schedules)
----------------------------------------------- */
.course-list, .course-schedule, .tip-list, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.course-list li, .tip-list li {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  box-shadow: 0 2px 8px #059cc322;
  font-size: 1rem;
  color: #16444C;
  transition: box-shadow var(--transition);
}
.course-list li:hover, .tip-list li:hover {
  box-shadow: 0 5px 24px #FA297B19;
}
.course-schedule li {
  color: #236972;
  font-weight: 700;
}
.contact-details li {
  font-size: 1.08rem;
  color: #236972;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  box-shadow: none;
  padding: 8px 0;
}
.wellness-hacks {
  background: #059CC3;
  color: #fff;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
}
.wellness-hacks ul {
  gap: 12px;
}
.wellness-hacks li {
  color: #fff;
  list-style-type: disc;
  margin-left: 22px;
}

.next-steps {
  background: #8FC1B579;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  margin-bottom: 22px;
}
.next-steps h2 { color: #236972; font-size: 1.18rem; }

.confirmation-text {
  color: #059CC3;
  font-size: 1.22rem;
  margin-bottom: 22px;
}

/* -----------------------------------------------
   CTA SECTIONS
----------------------------------------------- */
.cta-section {
  background: linear-gradient(90deg, var(--color-pink) 4%, #8FC1B5 98%);
  color: #fff;
  padding-top: 38px;
  padding-bottom: 38px;
  margin-bottom: 0;
}
.cta-section .content-wrapper {
  background: none;
  box-shadow: none;
  color: #fff;
  text-align: center;
  align-items: center;
  padding: 0px;
  gap: 12px;
}
.cta-section h2, .cta-section .subheadline {
  color: #fff;
  text-shadow: 0 2px 18px #23697255;
}
.cta-section .btn-primary {
  margin: 0 auto;
  margin-top: 12px;
}

/* -----------------------------------------------
   FOOTER STYLES
----------------------------------------------- */
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 32px 0 18px 0;
  margin-top: auto;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #F1F6F4;
  font-family: var(--font-body);
  font-size: 1.08rem;
  opacity: .93;
  transition: color var(--transition), opacity var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #CDF500;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  font-size: 1.03rem;
  color: var(--color-accent);
}
.footer-contact img {
  height: 36px;
  margin-bottom: 7px;
}
.footer-contact p img {
  height: 21px;
  width: 21px;
  margin-right: 8px;
  vertical-align: middle;
}

/* -----------------------------------------------
   COOKIE CONSENT BANNER
----------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 5500;
  background: #151920e6;
  color: var(--color-accent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -2px 18px #23697246;
  padding: 20px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1rem;
  animation: slideUpBanner .55s cubic-bezier(.6,.17,.3,1);
}
@keyframes slideUpBanner {
  from { transform: translateY(120%); opacity:.65; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner button {
  margin-left: 10px;
}
.cookie-btn {
  border: none;
  font-family: var(--font-display);
  padding: 9px 21px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  margin-right: 9px;
}
.cookie-btn.accept {
  background: linear-gradient(90deg, #CDF500 30%, #8FC1B5 100%);
  color: #151920;
  box-shadow: 0 4px 16px #cdf50033;
}
.cookie-btn.reject {
  background: #FA297B;
  color: #fff;
  box-shadow: 0 4px 16px #fa297b33;
}
.cookie-btn.settings {
  background: #236972;
  color: #F1F6F4;
  box-shadow: none;
}
.cookie-btn:active, .cookie-btn:focus {
  outline: 2px solid #CDF500;
  box-shadow: 0 2px 8px #8FC1B5bb;
}
.cookie-btn.accept:hover {
  background: linear-gradient(102deg, #8FC1B5 10%, #CDF500 95%);
}
.cookie-btn.reject:hover {
  background: #059CC3;
}
.cookie-btn.settings:hover {
  background: #8FC1B5;
  color: #151920;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #151920bb;
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: showModal .55s cubic-bezier(.6,.17,.3,1);
}
@keyframes showModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 26px 28px 26px;
  box-shadow: 0 8px 48px #23697251, 0 2px 22px #fa297b23;
  min-width: 320px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #151920;
  font-family: var(--font-body);
  position: relative;
  animation: popIn .26s cubic-bezier(.6,.17,.3,1);
}
@keyframes popIn {
  from { transform: scale(0.97) translateY(30px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal h2 {
  color: #059CC3;
  margin-bottom: 0px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 12px 0;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1.04rem;
  color: #236972;
  margin-bottom: 0;
}
.toggle-switch {
  width: 46px;
  height: 27px;
  position: relative;
  display: inline-block;
}
.toggle-switch input { display: none; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: #E3EBE9;
  border-radius: 12px;
  transition: background var(--transition);
}
.toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(102deg, #8FC1B5 10%, #CDF500 95%);
}
.toggle-slider:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: left var(--transition), background var(--transition);
  box-shadow: 0 1px 6px #23697242;
}
.toggle-switch input:checked + .toggle-slider:before {
  left: 21px;
  background: #CDF500;
}
.cookie-modal .cookie-btn {
  margin-top: 14px;
}

/* -----------------------------------------------
   MEDIA QUERIES FOR RESPONSIVENESS
----------------------------------------------- */
@media (max-width: 1080px) {
  .container { max-width: 92vw; }
}
@media (max-width: 900px) {
  .feature-grid, .team-member-cards, .content-grid, .card-container {
    gap: 18px;
  }
  .footer-nav { gap: 7px; }
}
@media (max-width: 800px) {
  .container { max-width: 98vw; }
  .feature-grid, .team-member-cards, .card-container {
    flex-direction: column;
  }
}
@media (max-width: 680px) {
  .container { padding-left: 8px; padding-right: 8px; }
  .content-wrapper, .section {
    padding: 25px 6px;
    border-radius: var(--radius-md);
  }
  h1 { font-size: 2.12rem; }
  h2 { font-size: 1.47rem; }
  .btn-primary { padding: 10px 16px; font-size: 1rem; }
  .main-nav a, .footer-nav a { font-size: 1rem; }
  .footer-contact {
    font-size: .96rem;
    gap: 4px;
  }
}
@media (max-width: 900px) {
  .footer .container { flex-direction: column; gap: 18px; }
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 18px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 13px;
    padding-bottom: 13px;
    gap: 6px;
  }
  body {
    word-break: break-word;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .cta-section .content-wrapper { padding: 0 6px; }
  .text-image-section { flex-direction: column; gap: 18px; align-items: stretch; }
}
@media (max-width: 550px) {
  .hero .container { padding-top: 24px; padding-bottom: 24px; max-width: 99vw;}
  .hero h1, .subheadline { text-align: left; }
  .cookie-banner { padding: 12px 6px; font-size: .96rem; }
  .cookie-modal { padding: 18px 10px; min-width: 220px; }
}

/* -----------------------------------------------
   ANIMATIONS & MICRO-INTERACTIONS
----------------------------------------------- */
.btn-primary, .cookie-btn {
  transition: box-shadow var(--transition), background var(--transition), color var(--transition), transform var(--transition);
  will-change: transform;
}
.btn-primary:active, .cookie-btn:active {
  transform: scale(.98);
}
.card, .feature, .team-member, .testimonial-card, .news-list li {
  transition: box-shadow var(--transition), transform var(--transition);
  will-change: box-shadow, transform;
}
.card:active, .feature:active, .testimonial-card:active {
  transform: scale(.98) rotate(-0.5deg);
}

/* -----------------------------------------------
   SCROLLBAR DESIGN (subtle rainbow for fun!)
----------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #E3EBE9;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(140deg, #CDF500 30%, #059CC3 80%, #FA297B 100%);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(120deg, #059CC3, #FA297B, #CDF500);
}

/* -----------------------------------------------
   OVERRIDES FOR COMMON HTML ELEMENTS
----------------------------------------------- */
hr { border: 0; border-top: 2px solid #8FC1B5; margin: 24px 0; }
blockquote {
  background: #8FC1B529;
  border-left: 5px solid #FA297B;
  padding: 17px 19px;
  margin: 20px 0;
  border-radius: var(--radius-sm);
  font-size: 1.11rem;
  color: #236972;
  font-style: italic;
}
table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
th, td { padding: 10px; border-bottom: 1px solid #8fc1b56c; }
th { background: #8FC1B511; text-align: left; }

/* -----------------------------------------------
   END
----------------------------------------------- */
