/* ===============================================================
   RESET & ROOTS – NATURE ORGANIC STYLE for VorkoBuild Haushaltservice
   =============================================================== */

/* CSS RESET – margin & padding, box-sizing */
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,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;
  vertical-align: baseline;
  font: inherit;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  background: #f6f8fb;
  color: #263026;
  font-family: 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.01em;
  background-color: #f6f8fb;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #328245;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #205c2c;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #283c5a;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; margin-bottom: 24px; }
h2 { font-size: 1.75rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #263026;
}
strong, b { color: #283c5a; font-weight: 700; }

/* FONTS: fallback */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:400,700&family=Open+Sans:400,700&display=swap');

/* ROOT COLORS - earthy, natural theme with green accents */
:root {
  --primary: #283c5a;
  --secondary: #328245;
  --accent: #f6f8fb;
  --sand: #e8e3d5;
  --earth: #b5ad86;
  --leaf: #6fa775;
  --brown: #7c7551;
  --grey: #a8b2a1;
  --danger: #ba3f2f;
  --info: #e1f2ec;
}

/* ===============================================================
   CONTAINER & LAYOUT PATTERNS
   =============================================================== */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 3px 28px 0 rgba(50, 130, 69, 0.06);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 18px 8px;
    margin-bottom: 38px;
  }
}

/* Organic background shapes for hero/featured */
.hero, .cta-short, .cta-service {
  background: linear-gradient(140deg, #f6f8fb 80%, #e8e3d5 100%);
  position: relative;
  border-radius: 38px 38px 16px 16px/60px 40px 16px 16px;
  margin-bottom: 60px;
  box-shadow: 0 3px 20px 0 #cde5cd11;
}
.hero::before {
  content: '';
  position: absolute;
  top: -38px;
  right: -30px;
  width: 180px;
  height: 120px;
  background: #e8e3d5;
  opacity: 0.29;
  filter: blur(4px);
  border-radius: 45% 60% 55% 50%;
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero h1, .hero p {
  color: #283c5a;
}

/* ===============================================================
   HEADER & NAVIGATION - ORGANIC/NATURE THEME
   =============================================================== */
header {
  background: #f6f8fb;
  border-bottom: 1px solid #e8e3d5;
  box-shadow: 0 2px 14px -6px #7c75511a;
  position: sticky;
  top: 0; left: 0; width: 100%;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;  /* vertical center */
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  min-height: 72px;
}
header img {
  height: 50px;
  width: auto;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
header nav a {
  color: #283c5a;
  font-weight: 500;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
  line-height: 1.2;
}
header nav a:hover, header nav a:focus {
  background: #e8e3d5;
  color: #328245;
}
.button-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #328245 96%, #6fa775 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: 26px 18px 24px 20px / 24px 18px 35px 22px;
  border: none;
  box-shadow: 0 2px 12px 0 #6fa7751a;
  transition: background 0.2s, box-shadow 0.2s;
  margin-left: 14px;
  cursor: pointer;
}
.button-primary:hover, .button-primary:focus {
  background: linear-gradient(90deg, #205c2c 96%, #328245ee 100%);
  box-shadow: 0 3px 16px #32824530;
}
.button-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #e8e3d5;
  color: #328245;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 22px 22px 14px 22px/22px 18px 24px 30px; /* organic shape */
  padding: 11px 22px;
  margin-top: 18px;
  box-shadow: 0 1px 6px 1px #7c755115;
  transition: background 0.18s, color 0.2s, box-shadow 0.18s;
  cursor: pointer;
}
.button-secondary:hover, .button-secondary:focus {
  background: #328245;
  color: #fff;
  box-shadow: 0 3px 14px #32824521;
}

/* Hamburger menu - mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #328245;
  margin-left: 18px;
  cursor: pointer;
  z-index: 999;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover {
  color: #205c2c;
}

/* Hide desktop nav when mobile */
@media (max-width: 1020px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  header .container {
    padding: 10px 6px;
    min-height: 60px;
  }
  header img {
    height: 36px;
  }
}

/*
 * MOBILE MENU: Slide-in left
 */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40, 60, 90, 0.92);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.86,0,.07,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  align-self: flex-end;
  margin: 22px 24px 8px 0;
  cursor: pointer;
  z-index: 9999;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #e8e3d5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  padding: 0 32px;
}
.mobile-nav a {
  color: #f6f8fb;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 10px;
  transition: background 0.17s, color 0.17s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #6fa77544;
  color: #b5ad86;
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===============================================================
   FOOTER
   =============================================================== */
footer {
  background: #f6f8fb;
  border-top: 1px solid #e8e3d5;
  margin-top: 40px;
  box-shadow: 0 -2px 14px -7px #7c755116;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 30px 10px 12px 10px;
  font-size: 1rem;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #283c5a;
  justify-content: center;
  margin-bottom: 6px;
}
footer nav a {
  color: #328245;
  font-weight: 500;
}
footer p {
  color: #7c7551;
  font-size: 0.97rem;
}

/* ===============================================================
   FLEXBOX CONTENT PATTERNS (mandatory classes)
   =============================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 #b5ad860a;
  padding: 24px 20px;
  flex: 1 1 300px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--info);
  border-radius: 24px 18px 32px 20px/28px 18px 32px 16px;
  box-shadow: 0 2px 13px 0 #32824510;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
  position: relative;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 5px 22px 0 #32824525;
  transform: translateY(-4px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 20px 24px 16px 28px/20px 18px 30px 22px;
  padding: 14px 15px 14px 15px;
  background: #f6f8fb;
  margin-bottom: 20px;
}

/* Gaps between all cards/sections */
.card:not(:last-child), .section:not(:last-child), .testimonial-card:not(:last-child), .feature-item:not(:last-child) {
  margin-bottom: 20px;
}

/* ===============================================================
   PAGE SPECIFIC STYLES - ORGANIC EARTHY CARD FEEL
   =============================================================== */
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  padding: 38px 0 46px 0;
}
.hero h1 {
  font-size: 2.3rem;
  color: #283c5a;
  font-weight: 700;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 17px;
  color: #263026;
}

.features {
  background: #e8e3d5;
  border-radius: 32px;
  padding: 36px 20px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 18px;
}
.features-grid li {
  background: #f6f8fb;
  border-radius: 18px 16px 26px 20px/18px 30px 20px 20px;
  box-shadow: 0 1px 6px 1px #b5ad8613;
  padding: 20px 16px 18px 18px;
  flex: 1 1 210px;
  min-width: 185px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  margin-bottom: 0 !important;
  transition: box-shadow 0.19s, transform 0.16s;
}
.features-grid li:hover {
  box-shadow: 0 4px 20px 0 #32824521;
  transform: translateY(-3px) scale(1.02);
}
.features-grid img {
  height: 42px;
  width: 42px;
  margin-bottom: 6px;
  filter: saturate(0.85) hue-rotate(-13deg);
}
.features-grid h3 {
  font-size: 1.11rem;
  margin-bottom: 7px;
}
.features-grid p {
  color: #283c5a;
  font-size: 0.96rem;
}
.trust-note {
  margin-top: 17px;
  font-size: 1.08rem;
  color: #328245;
  font-weight: 600;
}

.services-overview,
.services-listing {
  background: #f6f8fb;
  border-radius: 26px;
  padding: 38px 20px 30px 20px;
}
.services-teasers, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 20px;
}
.service-teaser, .service-block {
  background: #fff;
  border-radius: 20px 32px 18px 18px / 14px 26px 18px 16px;
  box-shadow: 0 1px 7px 0 #7c755111;
  padding: 22px 20px 18px 22px;
  flex: 1 1 220px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: flex-start;
  position: relative;
  border-left: 4px solid #32824536;
  transition: box-shadow 0.17s, border-color 0.17s;
}
.service-teaser:hover, .service-block:hover {
  box-shadow: 0 3px 24px 0 #6fa77516;
  border-left: 4px solid #328245bb;
}
.service-teaser h3, .service-block h2 {
  font-size: 1.16rem;
}
.service-teaser .price, .service-block .price {
  color: #328245;
  font-weight: 700;
  margin-top: 4px;
  font-size: 1.06rem;
}
.services-list {
  gap: 26px;
}

.value-item {
  background: #e8e3d5;
  border-radius: 18px 20px 22px 20px;
  box-shadow: 0 1px 6px 1px #b5ad860a;
  padding: 20px 18px;
  margin-bottom: 20px;
  flex: 1 1 280px;
}
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}

.team-highlight {
  background: #f6f8fb;
  border-radius: 20px 24px 30px 18px/18px 20px 24px 24px;
  box-shadow: 0 1px 6px 1px #b5ad860a;
  padding: 18px 18px;
  margin-bottom: 16px;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 18px;
}
.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 19px 12px 12px;
  border-radius: 15px 15px 13px 17px;
  background: #f6f8fb;
  box-shadow: 0 0.5px 2px #b5ad860a;
  font-size: 1.08rem;
  color: #263026;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.faq-list li {
  background: #f6f8fb;
  border-radius: 16px 20px 16px 18px;
  box-shadow: 0 0.8px 8px #7c75510d;
  padding: 20px 18px;
}
.faq-list h2 {
  font-size: 1.15rem;
}
.faq-contact-shortcut {
  margin-top: 10px;
  border-radius: 20px;
  background: #e8e3d5;
  padding: 40px 18px 33px 18px;
  box-shadow: 0 1px 12px 0 #3282450a;
}

.contact-form-section {
  background: #f6f8fb;
  border-radius: 24px;
  padding: 38px 20px;
}
.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form-fields li {
  font-size: 1rem;
  color: #283c5a;
  background: #e8e3d5;
  border-radius: 12px 12px 9px 14px;
  padding: 11px 16px;
  margin-bottom: 0;
}
.contact-form-fields li:last-child {
  background: none;
  padding: 0;
}
.text-section {
  background: #e8e3d5;
  border-radius: 15px 19px 13px 16px;
  padding: 15px 17px;
  color: #263026;
  margin-bottom: 13px;
}
.text-section.note {
  background: #f6f8fb;
  color: #7c7551;
}

.confirmation-section {
  background: #f6f8fb;
  border-radius: 24px;
  text-align: center;
  padding: 50px 20px 45px 20px;
}
.confirmation-section h1 {
  color: #328245;
}

.legal-section, .gdpr-section, .cookie-policy-section, .terms-section {
  background: #e8e3d5;
  border-radius: 24px;
  padding: 38px 20px;
  margin-bottom: 40px;
}

/* Service detail note, contact hints */
.service-detail-hint, .contact-hint {
  background: #f6f8fb;
  border-radius: 14px 16px 18px 16px;
  padding: 13px 17px;
  margin-bottom: 8px;
  color: #328245;
  font-size: 1.01rem;
}

address {
  font-style: normal;
  background: #e8e3d5;
  border-radius: 13px 15px 13px 12px;
  padding: 13px 16px;
  color: #263026;
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Testimonials */
.testimonials {
  background: #e8e3d5;
  border-radius: 28px;
  padding: 37px 20px 30px 20px;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.testimonial-card {
  flex: 1 1 300px;
  min-width: 210px;
  background: #f6f8fb;
  color: #283c5a;
  font-size: 1rem;
}
.testimonial-card p {
  color: #283c5a;
  margin-bottom: 7px;
}
.testimonial-author {
  color: #328245;
  font-weight: 700;
  font-size: 0.99rem;
}

/* CTA short */
.cta-short .text-section {
  background: #e8e3d5;
  color: #263026;
  border-radius: 20px;
  padding: 21px 28px 20px;
  font-size: 1.09rem;
}

/* Responsive Adjustments */
@media (max-width: 975px) {
  .card-container, .features-grid, .services-teasers, .values-grid, .testimonial-cards {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .container { max-width: 99vw; }
  .content-wrapper { gap: 16px; }
  .features, .services-overview, .testimonials, .cta-short, .section { padding: 18px 6px; }
}
@media (max-width: 768px) {
  .features-grid li, .service-teaser, .service-block, .testimonial-card {
    min-width: 140px;
  }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.1rem; }
  .hero .content-wrapper { padding: 17px 0 20px 0; }
}
@media (max-width: 570px) {
  .container { padding-left: 6px; padding-right: 6px; }
  .card, .section, .hero, .legal-section, .team-highlight, .cta-short,
  .services-overview, .services-listing, .testimonials, .features, .confirmation-section {
    padding-left: 2px;
    padding-right: 2px;
  }
}

/* =============================================================
   MICRO-INTERACTIONS, EFFECTS, TRANSITIONS
   ============================================================= */
.button-primary, .button-secondary {
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
}
.button-primary:active, .button-secondary:active {
  transform: scale(0.96);
}
.card, .features-grid li, .testimonial-card, .service-teaser, .service-block, .value-item {
  transition: box-shadow 0.16s, transform 0.12s;
}
.card:focus, .features-grid li:focus, .testimonial-card:focus, .service-teaser:focus, .service-block:focus {
  box-shadow: 0 4px 22px #32824525;
  outline: 2px solid #32824588;
  outline-offset: 2px;
}

/* Organic hover effect: subtle scale + elevation */
.features-grid li:hover, .service-teaser:hover, .service-block:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 5px 24px 0 #32824522;
}

/* =============================================================
   COOKIE CONSENT BANNER & COOKIE MODAL
   ============================================================= */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #e8e3d5;
  color: #263026;
  z-index: 9999;
  box-shadow: 0 -3px 24px #283c5a18;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 23px 7vw 22px 7vw;
  font-size: 1.03rem;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.36s cubic-bezier(.81,0,.15,1), opacity 0.24s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 4px;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 16px;
  padding: 10px 22px;
  font-size: 1rem;
  margin: 0 3px;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
  box-shadow: 0 1px 5px #7c75517a;
}
.cookie-accept {
  background: #328245;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #205c2c;
}
.cookie-reject {
  background: #ba3f2f;
  color: #fff;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #8f271a;
}
.cookie-settings {
  background: #a8b2a1;
  color: #263026;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #6fa775;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(40, 60, 90, 0.44);
  z-index: 12000;
  opacity: 1;
  transition: opacity 0.26s;
}
.cookie-modal-bg.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  max-width: 420px;
  width: 93vw;
  background: #f6f8fb;
  color: #283c5a;
  border-radius: 26px 38px 21px 28px/22px 28px 30px 19px;
  box-shadow: 0 8px 32px rgba(40,60,90,0.21);
  padding: 35px 27px 24px 25px;
  z-index: 14000;
  transform: translate(-50%,-50%) scale(1);
  transition: opacity 0.32s, transform 0.26s cubic-bezier(.8,0,.17,1);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  transform: translate(-50%,-46%) scale(0.96);
  pointer-events: none;
}
.cookie-modal h2 { font-size: 1.22rem; margin-bottom: 12px; }
.cookie-modal .category-list {
  margin: 13px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e8e3d5;
  border-radius: 12px 16px 16px 12px;
  padding: 10px 18px 10px 16px;
}
.cookie-category label {
  font-size: 1.03rem;
  color: #283c5a;
}
.cookie-category input[type=checkbox] {
  accent-color: #328245;
  width: 18px;
  height: 18px;
}
.cookie-category input[disabled] {
  opacity: .6;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 17px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  background: none;
  border: none;
  color: #263026;
  font-size: 1.4rem;
  position: absolute; top: 13px; right: 17px;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.cookie-modal .modal-close:hover {
  color: #328245;
}
/* Responsive for cookie banner and modal */
@media (max-width: 600px) {
  .cookie-consent-banner {
    font-size: .98rem;
    padding: 14px 2vw 12px 2vw;
  }
  .cookie-modal {
    max-width: 99vw;
    padding: 20px 8px 14px 8px;
  }
}

/* =============================================================
   UTILITIES & MISC
   ============================================================= */
.hide, .is-hidden {
  display: none !important;
}
.visible {
  display: block !important;
}

/* Error/Info Colors */
.alert {
  background: #f6e2d8;
  color: #ba3f2f;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 1rem;
}

/* Autofocus/focus outline for accessibility */
:focus-visible {
  outline: 2px solid #32824588;
  outline-offset: 2px;
}

/*=============================================================
 END OF CSS
============================================================*/
