/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F9F6F2;
  color: #342948;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #342948;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 3px dashed #F6C15B;
  outline-offset: 2px;
}
button, .cta-button, .cta-button-secondary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #342948;
}
h2 {
  font-size: 2rem;
  color: #F6C15B;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
h3 {
  font-size: 1.25rem;
  color: #342948;
  margin-bottom: 16px;
}
.section p, .section ul, .section li, .content-wrapper p {
  color: #3D314F;
  font-size: 1rem;
  margin-bottom: 12px;
}
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #342948;
  margin-bottom: 12px;
  line-height: 1.7;
}

/* BRAND COLORS (Artistic Theme) */
:root {
  --primary: #342948;
  --secondary: #B7AFA3;
  --accent: #F6C15B;
  --neutral-bg: #F9F6F2;
  --white: #fff;
  --shadow: 0 8px 32px rgba(52,41,72,0.09);
  --radius: 24px;
}

/* COMMON FLEX SPACING & LAYOUTS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
@media (max-width: 991px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 32px 24px;
  transition: transform 0.35s cubic-bezier(.75,.1,.19,1.21), box-shadow 0.25s;
}
.card:hover, .feature-card:hover, .service-card:hover, .testimonial-card:hover {
  transform: translateY(-6px) scale(1.02) rotate(-0.7deg);
  box-shadow: 0 16px 40px rgba(52,41,72,0.13);
}
.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;
  padding: 20px;
  border-radius: 16px;
  background: #fffbe4;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(246,193,91,0.10), 0 0px 0px #0000;
  border-left: 8px solid var(--accent);
  min-width: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
}
.testimonial-card .stars {
  color: var(--accent);
  font-size: 1.2em;
  letter-spacing: 0.1em;
}
/* Dark text/high contrast for testimonials */
.testimonial-card blockquote, .testimonial-meta span {
  color: #342948;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(88deg, #f6c15b 0%, #fff 100%);
  border-radius: var(--radius);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-height: 260px;
  justify-content: center;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.5rem;
  letter-spacing: 0.02em;
}
.hero p {
  font-size: 1.2rem;
  color: #513985;
  margin-bottom: 15px;
}

/* CTAs */
.cta-button, .cta-button-secondary {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 25px;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 8px;
  background: var(--accent);
  color: #362658;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 12px 0 rgba(252,191,80,0.12);
  border: 2px solid var(--accent);
  transition: background 0.22s, color 0.18s, box-shadow 0.2s, border-color 0.2s, transform 0.28s;
  text-align: center;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: #362658;
  color: var(--accent);
  border-color: #362658;
  transform: scale(1.045) rotate(-1deg);
  box-shadow: 0 6px 24px 0 rgba(54,38,88,0.10);
}
.cta-button-secondary {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--primary);
}
.cta-button-secondary:hover,.cta-button-secondary:focus {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.cta-text {
  font-size: 1.11rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* NAVIGATION HEADER */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary);
  font-size: 1.02rem;
  transition: color 0.15s;
  padding: 6px 8px;
  border-radius: 8px;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: #f8ecd7;
  color: var(--accent);
}
header a.cta-button {
  margin-left: 18px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  border-radius: 12px;
  border: none;
  font-size: 2em;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: background 0.2s, color 0.2s;
  z-index: 150;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(52,41,72,0.89);
  backdrop-filter: blur(3px);
  transform: translateX(-110vw);
  transition: transform 0.33s cubic-bezier(.72,.42,.17,1.19);
  z-index: 190;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 13px;
  font-size: 2.15rem;
  margin-top: 26px;
  margin-left: 22px;
  padding: 6px 14px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(54,38,88,0.13);
  z-index: 200;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: var(--accent);
}
.mobile-nav {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0 36px;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fffbe4;
  font-weight: 700;
  font-size: 1.18em;
  padding: 14px 0;
  width: 100%;
  border-radius: 10px;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
@media (max-width: 991px) {
  header nav, header a.cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 992px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* FEATURE CARDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-card {
  flex: 1 1 220px;
  background: #fff2cd;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(246,193,91,0.13);
  padding: 28px 18px 22px 18px;
  min-width: 200px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
}
.feature-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  filter: drop-shadow(2px 4px 4px #f6c15b33);
}
.feature-card h3 {
  color: var(--primary);
  font-size: 1.05em;
  text-align: center;
}
.feature-card p {
  color: #3D314F;
  font-size: 0.97em;
  text-align: center;
}

/* SERVICES CARDS */
.services .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.service-card {
  flex: 1 1 240px;
  background: #f5f3f8;
  border-radius: 18px;
  padding: 32px 20px 20px 20px;
  box-shadow: 0 2px 12px rgba(52,41,72,0.08);
  min-width: 200px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
}
.service-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  filter: drop-shadow(1px 2px 3px #34294816);
}
.service-card h3 {
  color: var(--primary);
  text-align: center;
  font-size: 1.04rem;
  margin-bottom: 3px;
}
.service-card p {
  font-size: 0.98rem;
  color: #3D314F;
  text-align: center;
  margin-bottom: 2px;
}
.service-price {
  color: var(--accent);
  font-weight: bold;
  margin-top: 5px;
  font-size: 1.09em;
}

/* ABOUT / TEAM SECTION STYLES */
.team-introduction {
  background: #f6c15b1a;
  border-radius: 13px;
  padding: 18px 16px;
  margin-top: 28px;
  margin-bottom: 0;
  font-size: 0.98em;
  box-shadow: 0 2px 10px rgba(246,193,91,0.05);
}

/* PROJECTS / REALIZACJE */
.project-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.project-item {
  flex: 1 1 260px;
  background: #f5f3f8;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(52,41,72,0.06);
  padding: 26px 17px 22px 17px;
  margin-bottom: 20px;
}
.results-statistics {
  padding: 18px 14px;
  background: #fffbe4;
  border-radius: 13px;
  margin-top: 20px;
  box-shadow: 0 1px 8px 0 #f6c15b16;
}

/* BLOG ARTICLES */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.blog-list article {
  background: #f5f3f8;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(183,175,163,0.093);
  flex: 1 1 290px;
  min-width: 220px;
  max-width: 340px;
  padding: 30px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
  transition: transform 0.29s, box-shadow 0.19s;
}
.blog-list article:hover, .blog-list article:focus {
  box-shadow: 0 7px 22px rgba(246,193,91,0.12);
  transform: translateY(-5px) scale(1.012);
}
.read-more {
  color: var(--accent);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.96em;
  margin-top: 4px;
  transition: color 0.12s, text-decoration 0.18s;
}
.read-more:hover, .read-more:focus {
  color: var(--primary);
  text-decoration: underline;
}
.featured-articles {
  background: #fffbe4;
  padding: 16px 12px;
  border-radius: 11px;
  box-shadow: 0 2px 8px 0 #f6c15b13;
}
.featured-articles h3 {
  font-size: 1.07em;
  margin-bottom: 8px;
}

/* LISTS */
.section ul, .content-wrapper ul, .benefit-list, .service-list {
  margin-bottom: 20px;
  margin-left: 0;
  padding-left: 0;
  font-size: 1em;
  color: #3D314F;
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
}
.section ul li, .benefit-list li, .service-list li {
  position: relative;
  padding-left: 30px;
  min-height: 24px;
  font-size: 1em;
  line-height: 1.5;
}
.section ul li:before, .service-list li:before, .benefit-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  background-color: var(--accent);
  border-radius: 50%;
  opacity: 0.75;
  box-shadow: 0 2px 4px #f6c15b14;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 42px 0 24px 0;
  font-size: 1.05em;
  font-family: 'Montserrat', Arial, sans-serif;
  border-top-right-radius: 22px;
  border-top-left-radius: 22px;
  box-shadow: 0 -4px 22px 0 #34294811;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.07em;
}
.footer-brand img {
  width: 38px;
  height: 38px;
}
footer nav.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
footer .footer-links a {
  color: #fffbe4;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: underline transparent;
  transition: color 0.17s, text-decoration-color 0.2s;
}
footer .footer-links a:hover,
footer .footer-links a:focus {
  color: var(--accent);
  text-decoration-color: var(--accent);
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  opacity: 0.95;
  transition: opacity 0.15s, transform 0.18s;
}
.footer-social a:hover img, .footer-social a:focus img {
  opacity: 1;
  transform: scale(1.05) rotate(-3deg);
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe4;
  color: #342948;
  box-shadow: 0 -2px 20px #F6C15B70;
  padding: 23px 16px 18px 16px;
  z-index: 350;
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 1.01em;
  animation: cookie-slide-in 0.77s cubic-bezier(.57,-0.22,.29,1.4) 1;
}
@keyframes cookie-slide-in {
  from { transform: translateY(120%); }
  to { transform: translateY(0); }
}
.cookie-banner button {
  border: none;
  border-radius: 12px;
  padding: 8px 22px;
  margin: 0 3px;
  margin-top: 8px;
  font-size: 1em;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.15s, border-color 0.18s;
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 2px 7px 0 #f6c15b26;
}
.cookie-banner .reject {
  background: #fff;
  color: #F6C15B;
  border: 2px solid #F6C15B;
}
.cookie-banner .settings {
  background: #B7AFA3;
  color: #342948;
  border: 2px solid #B7AFA3;
}
.cookie-banner button:focus, .cookie-banner button:hover {
  background: #342948;
  color: #fffbe4;
  border-color: #342948;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(52,41,72,0.63);
  z-index: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInCookieModal 0.28s;
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffbe4;
  color: #342948;
  border-radius: 18px;
  box-shadow: 0 8px 55px #F6C15B60;
  padding: 36px 26px 22px 26px;
  min-width: 320px;
  max-width: 90vw;
  position: relative;
  font-size: 1.08em;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: bounceDown 0.36s cubic-bezier(.32,1.43,.42,1.03) 1;
}
@keyframes bounceDown {
  0% { transform: translateY(-60px) scale(0.95); opacity: 0; }
  50% { transform: translateY(20px) scale(1.04); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--primary);
  font-size: 1.15em;
  margin-bottom: 11px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-modal-category label {
  cursor: pointer;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: var(--accent);
  width: 20px;
  height: 20px;
  border-radius: 7px;
}
/* Essential always enabled style */
.cookie-modal-category.essential label::after {
  content: " (wymagane)";
  font-size: 0.91em;
  color: #888;
  font-weight: 400;
}
.cookie-modal-buttons {
  margin-top: 13px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 17px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 12px;
  padding: 5px 12px;
  font-size: 1.21em;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--primary);
  color: var(--accent);
}

/* CONTACT-DETAILS & FORMS */
.contact-details ul {
  gap: 15px;
}
.contact-details ul li,
.contact-intro .contact-details li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1em;
  color: #3D314F;
}
.contact-details ul img,
.contact-intro .contact-details img {
  width: 24px;
  height: 24px;
}
.contact-alert {
  margin-top: 18px;
  background: #fffbe4;
  color: #342948;
  border-left: 7px solid var(--accent);
  padding: 13px 16px;
  border-radius: 11px;
  box-shadow: 0 1px 5px #f6c15b22;
  font-size: 0.98em;
}

/* POLICY & LEGAL PAGES */
.privacy-policy, .rodo-information, .cookies-policy, .terms {
  background: #fffbe4;
  color: #342948;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px #f6c15b14;
}
.privacy-policy h1,
.rodo-information h1,
.cookies-policy h1,
.terms h1 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Other Utilities */
.cta {
  text-align: center;
  margin-top: 70px;
  margin-bottom: 0px;
}
.cta h2 {
  color: var(--primary);
  font-size: 2em;
  margin-bottom: 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
  /* Stack on smaller screens */
  .container {
    max-width: 98vw;
    padding: 0 5vw;
  }
  .content-grid, .feature-grid, .service-cards, .blog-list, .card-container, .project-highlights {
    flex-direction: column;
    gap: 20px 0;
    align-items: stretch;
  }
  .footer-brand, .footer-links, .footer-social {
    justify-content: flex-start;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .hero .content-wrapper {
    min-height: 170px;
    padding: 23px 2px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section {
    padding: 18px 4px;
    margin-bottom: 30px;
  }
  .project-item, .feature-card, .service-card, .blog-list article {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .cta-button, .cta-button-secondary {
    padding: 12px 10px;
    font-size: 1em;
  }
}

/* ARTISTIC / CREATIVE EXTRAS */
.section:before {
  content: '';
  position: absolute;
  right: -70px; top: -20px;
  width: 120px; height: 120px;
  background: #fffbe4;
  border-radius: 50%;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}
.section:after {
  content: '';
  position: absolute;
  left: -78px; bottom: -45px;
  width: 110px; height: 110px;
  background: #f6c15b;
  border-radius: 40% 60% 50% 50%;
  opacity: 0.09;
  z-index: 0;
  pointer-events: none;
}
.hero:before {
  content: '';
  position: absolute;
  left: -70px; top: -61px;
  width: 135px; height: 135px;
  background: var(--secondary);
  border-radius: 50% 50% 44% 56%;
  opacity: 0.15;
  z-index: 0;
}
.hero:after {
  content: '';
  position: absolute;
  right: -78px; bottom: -45px;
  width: 120px; height: 120px;
  background: var(--accent);
  border-radius: 40% 60% 60% 40%;
  opacity: 0.09;
  z-index: 0;
}

/* Artistic fonts */
body, .content-wrapper, .section, .hero, .cta-button, .cta-button-secondary, .testimonials, .feature-card, .service-card, .footer-brand {
  font-family: 'Roboto', 'Montserrat', Arial, sans-serif;
}
h1,h2,h3,.cta-button,.cta-button-secondary,header nav a, .mobile-nav a,footer {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* === CUSTOM SCROLL === */
::-webkit-scrollbar {
  width: 12px;
  background: #E0DBD3;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(110deg,#f6c15b,#b7afa3);
  border-radius: 8px;
}

/* FOCUS OUTLINES */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* HIDE outline for mouse, keep for keyboard */
*:focus:not(:focus-visible) {
  outline: none;
}

/* UTILITY */
.gap-top {margin-top: 24px;}
.gap-bottom {margin-bottom: 32px;}

/* END OF CSS */
