/* === Kavonira Finanztipps – Global CSS (elegant_classic) === */
/* --- 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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #17333a;
  background: #F4F7F8;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #054752;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #15A88A;
  text-decoration: underline;
}

/* --- Typography --- */
h1 {
  font-family: 'Libre Baskerville', 'Georgia', serif;
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #054752;
  letter-spacing: 0.5px;
}
h2 {
  font-family: 'Libre Baskerville', 'Georgia', serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 12px;
  color: #054752;
  letter-spacing: 0.25px;
}
h3 {
  font-family: 'Libre Baskerville', 'Georgia', serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #17333a;
  letter-spacing: 0.2px;
}
h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 600;
  margin-bottom: 6px;
}
p, li {
  font-size: 1rem;
  color: #273b43;
}
strong {
  font-weight: 600;
  color: #054752;
}
.subheadline {
  font-size: 1.25rem;
  font-style: italic;
  color: #3c5b67;
  margin-bottom: 18px;
}

/* --- Global Spacing, Containers, Layout --- */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(5,71,82,0.04), 0 1px 2px 0 rgba(23,51,58,0.08);
}

/* --- Flexbox Patterns Provided --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px 0 rgba(5,71,82,0.10);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 360px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #F4F7F8;
  border-radius: 12px;
  border: 1px solid #E3ECEF;
  box-shadow: 0 1px 6px 0 rgba(5,71,82,0.06);
  margin-bottom: 24px;
  min-width: 250px;
  max-width: 520px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- Header & Navigation --- */
header {
  background: #fff;
  border-bottom: 1px solid #E3ECEF;
  padding: 0;
}
header .container {
  min-height: 72px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  height: 60px;
  padding-right: 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 24px;
}
.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: #054752;
  padding: 5px 4px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus  {
  background: #F4F7F8;
  color: #15A88A;
}
.cta-btn {
  font-family: 'Georgia', serif;
  font-weight: 600;
  font-size: 1rem;
  background: #15A88A;
  color: #fff !important;
  padding: 12px 36px;
  border-radius: 28px;
  box-shadow: 0 2px 10px 0 rgba(21, 168, 138, 0.04);
  border: none;
  outline: none;
  display: inline-block;
  margin-left: 18px;
  cursor: pointer;
  transition: box-shadow 0.28s, background 0.2s, color 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #054752;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(5, 71, 82, 0.16);
  text-decoration: none;
}

/* --- Mobile Navigation --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #054752;
  margin-left: 16px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 120;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #15A88A;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5,71,82,0.97);
  color: #fff;
  z-index: 2200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.29,1.01,0.62,0.98);
  overflow-y: auto;
  width: 100vw;
  height: 100vh;
  padding: 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  border: none;
  font-size: 2rem;
  margin: 18px 30px 12px 0;
  cursor: pointer;
  z-index: 2500;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #15A88A;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 32px 36px;
}
.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 1.24rem;
  color: #fff;
  padding: 12px 0 6px 0;
  letter-spacing: 0.1px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #15A88A;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(120deg, #F4F7F8 65%, #eaf4f3 100%);
  padding: 56px 0 56px 0;
  margin-bottom: 42px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  font-size: 2.65rem;
  margin-bottom: 10px;
}
.hero .subheadline {
  font-size: 1.16rem;
  margin-bottom: 10px;
}

/* --- Features / Services / Tips etc. --- */
.features, .services, .services-detail, .tips-list, .workshop-list,
.story, .about, .team, .faq, .legal, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px 36px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(5,71,82,0.05);
}
.features h2, .services h2, .services-detail h2,
.tips-list h2, .workshop-list h2, .blog-list h2,
.cta h2, .testimonials h2, .participants-testimonials h2 {
  margin-bottom: 18px;
}
.feature-grid, .service-list, .service-detailed-list, .usp-list, .workshop-teasers, .tip-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-top: 10px;
  margin-bottom: 8px;
}
.feature-grid li, .service-list li, .service-detailed-list li, .workshop-teasers li, .tip-teasers li {
  flex: 1 1 230px;
  min-width: 230px;
  background: #F4F7F8;
  border-radius: 10px;
  box-shadow: 0 0.8px 3px 0 rgba(5,71,82,0.03);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 0;
  margin-right: 0;
  gap: 12px;
  transition: box-shadow 0.24s, transform 0.15s;
}
.feature-grid li:hover, .service-list li:hover, .service-detailed-list li:hover, .workshop-teasers li:hover, .tip-teasers li:hover {
  box-shadow: 0 6px 18px 0 rgba(21, 168, 138, 0.09);
  transform: translateY(-3px) scale(1.01);
}
.service-price, .price {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: bold;
  font-size: 1.1rem;
  color: #15A88A;
}

.usp-list {
  margin-top: 16px;
  margin-bottom: 0;
  gap: 18px;
}
.usp-list li {
  background: #E3ECEF;
  color: #054752;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 1rem;
  font-family: 'Georgia', serif;
  font-weight: 500;
}

.category-filters {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.category-filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin:0;
}
.category-filters li {
  background: #eaf4f3;
  color: #054752;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.99rem;
  font-family: 'Georgia', serif;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  box-shadow: 0 0.5px 1.5px rgba(21,168,138, 0.05);
}
.category-filters li:hover, .category-filters li.active {
  background: #15A88A;
  color: #fff;
}

/* --- Cards for Posts and Previews --- */
.post-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 12px;
}
.post-preview {
  flex: 1 0 240px;
  background: #F4F7F8;
  border-radius: 8px;
  box-shadow: 0 1px 6px 0 rgba(5,71,82,0.08);
  padding: 18px 16px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.24s, transform 0.12s;
}
.post-preview:hover {
  box-shadow: 0 4px 14px 0 rgba(21, 168, 138, 0.09);
  transform: translateY(-2px) scale(1.01);
}

/* --- Newsletter signup Form --- */
.newsletter-signup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-top: 16px;
}
.newsletter-signup label {
  font-size: 1rem;
  color: #054752;
  font-family: 'Georgia', serif;
  margin-bottom: 0;
}
.newsletter-signup input[type="email"] {
  font-size: 1rem;
  border: 1px solid #E3ECEF;
  border-radius: 20px;
  padding: 10px 18px;
  outline: none;
  background: #fff;
  font-family: 'Roboto', serif;
  min-width: 180px;
  transition: border-color 0.16s;
  color: #17333a;
}
.newsletter-signup input[type="email"]:focus {
  border-color: #15A88A;
}
.newsletter-signup button {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  background: #15A88A;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.22s;
  font-weight: 600;
}
.newsletter-signup button:hover, .newsletter-signup button:focus {
  background: #054752;
  box-shadow: 0 4px 16px rgba(21,168,138, 0.08);
}

/* --- Testimonials & Review Cards --- */
.testimonials, .participants-testimonials {
  background: #f4f7f8;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 38px 20px 38px 20px;
  box-shadow: 0 1px 8px 0 rgba(5,71,82,0.03);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  flex: 1 1 250px;
  box-shadow: 0 1.5px 8px 0 rgba(5,71,82,0.12);
  background: #fff;
  color: #17333a;
  border-radius: 14px;
  border: 1px solid #E3ECEF;
  padding: 24px 20px;
  min-width: 250px;
  max-width: 410px;
  transition: box-shadow 0.19s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px 0 rgba(21, 168, 138, 0.14);
  transform: translateY(-3px) scale(1.01);
}
.testimonial-card p {
  font-size: 1.06rem;
  color: #17333a;
}
.testimonial-author {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: #15A88A;
  margin-top: 10px;
}

/* --- CTA Section --- */
.cta {
  margin-bottom: 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 10px 0 rgba(5,71,82,0.04);
  padding: 38px 20px 30px 20px;
  display: flex;
  align-items: center;
}
.cta .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.cta-btn {
  margin-top: 14px;
}

/* --- Footer --- */
footer {
  background: #054752;
  color: #fff;
  padding: 34px 0 0 0;
  margin-top: 72px;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 24px;
}
.footer-brand img {
  height: 46px;
  margin-bottom: 12px;
}
.contact-details {
  font-size: 1rem;
  color: #d6eceb;
}
.contact-details a {
  color: #E4F7F2;
  text-decoration: underline;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 0;
}
.footer-menu a {
  color: #a9c2be;
  font-size: 0.97rem;
  font-family: 'Georgia', serif;
  transition: color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
}

/* --- Section Spacing & Layouts --- */
.section, .features, .services, .tips-list, .blog-list,.workshop-list, .faq, .about, .team, .story, .testimonials, .participants-testimonials, .thank-you, .legal {
  margin-bottom: 60px!important;
  padding: 40px 20px;
}

.text-section {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.address-map {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #eaf4f3;
  border-radius: 8px;
  padding: 16px 18px;
  margin-top: 16px;
  font-style: italic;
}
.contact-info {
  margin: 22px 0 0 0;
  font-size: 1.1rem;
  background: #F4F7F8;
  border-radius: 8px;
  padding: 19px 20px;
  color: #17333a;
  box-shadow: 0 0.7px 2px rgba(21,168,138, 0.02);
}
.faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 20px;
  margin-bottom: 0;
}
.faq-list li strong {
  display: block;
  margin-bottom: 8px;
}

/* --- Legal Pages --- */
.legal .text-section {
  background: #F4F7F8;
  border-radius: 12px;
  padding: 26px 18px;
  box-shadow: 0 1.5px 6px 0 rgba(5,71,82,0.07);
  font-size: 1rem;
}
.legal .text-section ul {
  margin: 16px 0 18px 18px;
}
.legal .text-section li {
  margin-bottom: 7px;
}

/* --- Thank You Section --- */
.thank-you {
  min-height: 320px;
  background: #f4f7f8;
  padding: 44px 20px 54px 20px;
  border-radius: 18px;
  box-shadow: 0 1.5px 8px 0 rgba(5,71,82,0.06);
}
.thank-you .text-section a.cta-btn {
  margin-top: 14px;
}

/* --- Animations --- */
.cta-btn, .main-nav a, .newsletter-signup button, .category-filters li, .footer-menu a {
  transition: background 0.17s, box-shadow 0.16s, color 0.17s, transform 0.11s;
}

/* --- Cookie Consent Banner & Modal --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #17333a;
  font-family: 'Georgia', serif;
  border-top: 1px solid #e3ecef;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 18px;
  box-shadow: 0 -2px 10px 0 rgba(21,168,138,0.07);
  gap: 20px;
  min-height: 60px;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.28s, transform 0.18s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner-content {
  font-size: 1rem;
  max-width: 560px;
  margin-right: 22px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Georgia', serif;
  font-size: 0.99rem;
  padding: 9px 20px;
  margin: 0;
  border-radius: 22px;
  background: #eaf4f3;
  border: 1px solid #15A88A;
  color: #054752;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.15s, border 0.15s;
}
.cookie-btn.accept {
  background: #15A88A;
  color: #fff;
  border: none;
}
.cookie-btn.reject {
  background: #fff;
  color: #054752;
  border: 1px solid #cbcfcf;
}
.cookie-settings-btn {
  background: #F4F7F8;
  color: #17333a;
  border: 1px solid #E3ECEF;
}
.cookie-btn:hover, .cookie-settings-btn:hover{
  background: #054752;
  color: #fff;
  border: 1px solid #15A88A;
}

/* Cookie modal overlay */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(5,71,82,0.68);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 450px;
  width: 94vw;
  padding: 36px 26px;
  box-shadow: 0 6px 44px rgba(5,71,82,0.33);
  font-family: 'Georgia', serif;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalIn 0.38s both;
}
@keyframes modalIn {
  from { transform: translateY(64px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-header {
  font-family: 'Libre Baskerville', 'Georgia', serif;
  font-size: 1.33rem;
  margin-bottom: 4px;
  color: #054752;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 6px 0;
}
.cookie-modal-category label {
  font-size: 1rem;
  font-family: 'Georgia', serif;
}
.cookie-toggle {
  appearance: none;
  background: #eaf4f3;
  border: 1px solid #15A88A;
  width: 36px;
  height: 20px;
  border-radius: 13px;
  position: relative;
  outline: none;
  transition: background 0.15s, border 0.15s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #15A88A;
  border: 1px solid #15A88A;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 3px; left: 5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.17s;
}
.cookie-toggle:checked::before {
  transform: translateX(13px);
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  font-size: 1rem;
  padding: 10px 24px;
}

/* --- Responsive Design (Mobile First) --- */
@media (max-width: 1080px) {
  .container {
    max-width: 95vw;
    padding-left: 6px;
    padding-right: 6px;
  }
}
@media (max-width: 900px) {
  .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .service-detailed-list, .workshop-teasers, .post-preview-grid, .testimonial-slider {
    gap: 18px;
  }
  .feature-grid li, .service-list li, .service-detailed-list li, .workshop-teasers li, .tip-teasers li {
    min-width: 170px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    flex-direction: row;
    gap: 0;
    padding: 0 10px;
    min-height: 54px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    font-size: 2rem;
    margin-left: auto;
  }
  .cta-btn {
    padding: 10px 24px;
    margin-left: 8px;
    font-size: 1rem;
  }
  .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .section, .features, .services, .tips-list, .blog-list, .workshop-list, .faq, .about, .team, .story, .testimonials, .participants-testimonials, .thank-you, .legal, .hero {
    padding: 22px 2vw !important;
    border-radius: 12px;
  }
  .footer-info {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
  }
  .feature-grid, .service-list, .service-detailed-list, .workshop-teasers, .post-preview-grid, .testimonial-slider {
    flex-direction: column;
    gap: 15px;
  }
  .feature-grid li, .service-list li, .service-detailed-list li, .workshop-teasers li, .tip-teasers li, .post-preview, .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  .testimonial-card {
    padding: 16px 10px;
    border-radius: 8px;
  }
  .testimonial-slider {
    gap: 12px;
  }
  .newsletter-signup {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .category-filters {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 14px 8px;
  }
  .cookie-banner-content {
    margin-right: 0;
    font-size: 0.95rem;
  }
  .cookie-banner-buttons {
    gap: 6px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  .container { max-width: 98vw; }
  .address-map, .contact-info { padding: 10px 6px; font-size: 0.96rem; }
  .testimonial-card { padding: 10px 4px; }
  .section { padding: 12px 2.5vw !important; border-radius: 8px; }
  .features, .services, .about, .team, .testimonials, .tips-list, .workshop-list, .participants-testimonials, .blog-list, .thank-you, .legal {
    border-radius: 7px;
    box-shadow: 0 1px 3px 0 rgba(5,71,82,0.06);
  }
}

/* --- Utility & Miscellaneous --- */
::-webkit-input-placeholder { color: #8ea6ae; }
::-moz-placeholder          { color: #8ea6ae; }
:-ms-input-placeholder      { color: #8ea6ae; }
::placeholder              { color: #8ea6ae; }

[hidden] { display: none !important; }

/* Hide scrollbars for mobile menu overlay */
.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/* === End of CSS === */