/* ------------------------------------------------- */
/* 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,
main, 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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #F9FAF8;
  color: #244653;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-style: none;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
input[type="search"] {
  border: 1px solid #A2C5C1;
  border-radius: 24px;
  padding: 8px 16px;
  background: #fff;
  font-size: 16px;
  transition: border 0.2s;
  max-width: 330px;
  margin-top: 12px;
  margin-bottom: 8px;
}
input[type="search"]:focus {
  border-color: #244653;
}

/* ------------------------------------------------- */
/* TYPOGRAPHY SCALE                                 */
/* ------------------------------------------------- */
h1, .h1 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: #244653;
  margin-bottom: 18px;
}
h2, .h2 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #244653;
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #244653;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #244653;
}
p, li, blockquote {
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 1rem;
  color: #3B545C;
  line-height: 1.7;
  margin-bottom: 14px;
}
blockquote {
  font-style: italic;
  color: #244653;
  border-left: 4px solid #A2C5C1;
  margin: 18px 0 18px 0;
  padding: 14px 24px;
  background: #F5F7F7;
  border-radius: 0 8px 8px 0;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.125rem;
}
strong {
  color: #244653;
  font-weight: 700;
}

/* ------------------------------------------------- */
/* LAYOUT & CONTAINERS (FLEXBOX)                    */
/* ------------------------------------------------- */
.container {
  max-width: 1072px;
  width: 100%;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(36,70,83,0.06);
  padding: 36px 24px 32px 24px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container, .article-list, .services-list, .service-cards, .article-grid, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(36,70,83,0.08);
  padding: 22px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.24s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(36,70,83,0.13);
  transform: translateY(-3px) scale(1.02);
}
.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: 20px;
  background: #FAFBFB;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(36,70,83,0.08);
  padding: 20px;
  min-width: 270px;
  max-width: 410px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.17s;
}
.testimonial-card blockquote {
  margin: 0 0 8px 0;
  color: #244653;
  font-size: 1.08rem;
  border-radius: 0 8px 8px 0;
}
.testimonial-card strong {
  color: #244653;
}
.testimonial-card p {
  margin: 0;
  font-size: 0.99rem;
  color: #244653;
}
.testimonial-card:hover {
  box-shadow: 0 5px 24px rgba(36,70,83,0.15);
  transform: translateY(-2px) scale(1.01);
}

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

.services-list > div, .service-card, .article-list > article, .article-grid > article {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(36,70,83,0.070);
  margin-bottom: 20px;
  padding: 20px 18px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  min-width: 270px;
  max-width: 370px;
  transition: box-shadow 0.21s, transform 0.15s;
}
.services-list > div:hover, .service-card:hover, .article-list > article:hover, .article-grid > article:hover {
  box-shadow: 0 4px 18px rgba(36,70,83,0.13);
  transform: translateY(-2px) scale(1.015);
}
.services-list img, .service-card img, .article-list img, .article-grid img {
  width: 40px; height: 40px;
  margin-bottom: 10px;
}
.article-list > article h3, .article-grid > article h3 {
  margin-top: 3px;
  margin-bottom: 7px;
}
.services-list > div a, .service-card a, .article-list > article a, .article-grid > article a {
  color: #244653;
  font-weight: 600;
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 1rem;
  margin-top: 5px;
  position: relative;
  transition: color 0.21s;
}
.services-list > div a:hover, .service-card a:hover, .article-list > article a:hover, .article-grid > article a:hover {
  color: #FFD06B;
}

/* Article Pagination */
.pagination {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  justify-content: flex-end;
}
.pagination a {
  color: #244653;
  background: #F6F8F7;
  border-radius: 6px;
  padding: 8px 18px;
  margin-bottom: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  border: 1px solid #A2C5C1;
  transition: background 0.2s, color 0.2s;
}
.pagination a:hover, .pagination a:focus {
  color: #244653;
  background: #FFD06B;
  border-color: #FFD06B;
}

/* ------------------------------------------------- */
/* HEADER, NAVIGATION & CTA BUTTONS                  */
/* ------------------------------------------------- */
header {
  background: #FFFFFF;
  box-shadow: 0 1px 10px 0 rgba(36,70,83,0.04);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 40;
}
nav {
  max-width: 1072px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  height: 68px;
}
nav a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: #244653;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 8px 13px;
  border-radius: 6px;
  transition: background 0.16s, color 0.2s;
  position: relative;
}
nav a:hover, nav a:focus {
  background: #A2C5C1;
  color: #244653;
}
nav a.cta-btn, .cta-btn {
  background: #FFD06B;
  color: #244653;
  border-radius: 24px;
  padding: 10px 24px 10px 22px;
  font-size: 1.08rem;
  font-weight: 700;
  font-family: 'Georgia', serif;
  box-shadow: 0 2px 12px rgba(36,70,83,0.1);
  margin-left: 22px;
  outline: none;
  cursor: pointer;
  border: none;
  transition: box-shadow 0.18s, background 0.17s, color 0.18s;
}
nav a.cta-btn:hover, .cta-btn:hover, nav a.cta-btn:focus, .cta-btn:focus {
  background: #244653;
  color: #FFD06B;
  box-shadow: 0 6px 24px rgba(36,70,83,0.13);
}

.mobile-menu-toggle {
  display: none;
  background: #244653;
  color: #FFD06B;
  border-radius: 16px;
  font-size: 2rem;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px; right: 18px;
  z-index: 44;
  border: none;
  cursor: pointer;
  transition: background .21s, color .22s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #A2C5C1;
  color: #244653;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.61,.02,.29,.98);
  box-shadow: 0 0 0 100vw rgba(36,70,83,0.09);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: #244653;
  color: #fff;
  font-size: 2rem;
  border-radius: 16px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 90;
  transition: background .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #A2C5C1;
  color: #244653;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 90px;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 1.19rem;
  color: #244653;
  padding: 13px 10px;
  border-radius: 9px;
  margin-bottom: 3px;
  width: 100%;
  transition: background 0.19s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD06B;
  color: #244653;
}
@media (max-width: 1024px) {
  nav {
    gap: 7px;
    padding: 0 9px;
  }
  .container {
    padding: 0 9px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 94vw;
  }
  nav {
    padding: 0 8px;
  }
}
@media (max-width: 850px) {
  nav {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 840px) {
  .content-wrapper {
    padding: 30px 10px 26px 10px;
  }
}
@media (max-width: 860px) {
  .article-grid, .services-list, .service-cards, .article-list {
    justify-content: center;
  }
}
@media (max-width: 700px) {
  .container {
    padding: 0 4px;
  }
  .content-wrapper {
    padding: 20px 3px 18px 3px;
  }
  nav a.cta-btn {
    margin-left: 8px;
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .mobile-nav a {
    font-size: 1.26rem;
    padding: 16px 8px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .section {
    padding: 25px 7px;
    margin-bottom: 40px;
  }
  .card-container, .article-list, .services-list, .service-cards, .article-grid, .testimonial-slider {
    gap: 14px;
  }
  .testimonial-card, .service-card, .article-list > article, .article-grid > article, .services-list > div {
    min-width: unset;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 2px;
    max-width: 100vw;
  }
  .content-wrapper {
    padding: 11px 2px 13px 2px;
    border-radius: 0;
  }
  h1, .h1 {
    font-size: 1.42rem;
  }
  h2, .h2 {
    font-size: 1.225rem;
  }
  h3, .h3 {
    font-size: 1.08rem;
  }
  .section {
    margin-bottom: 24px;
    padding: 10px 3px;
  }
  .testimonial-card {
    padding: 13px 7px;
  }
}

/* ------------------------------------------------- */
/* SERVICE/ELEMENT HIGHLIGHTS                        */
/* ------------------------------------------------- */
.service-price {
  color: #A2C5C1;
  font-size: 1.07rem;
  font-family: 'Georgia', serif;
  font-weight: 600;
}

/* Contact Info blocks */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #F5F7F7;
  border-radius: 12px;
  padding: 20px 12px 10px 12px;
  margin-top: 10px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

/* List styles for values, approach, features */
ul, ol {
  padding-left: 0;
  margin-bottom: 18px;
}
ul li, ol li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: none;
  font-family: 'Open Sans', sans-serif;
  color: #3B545C;
  font-size: 1rem;
  margin-bottom: 10px;
  border: none;
  padding: 0 0 0 4px;
}
ul li img, ol li img {
  width: 26px;
  height: 26px;
}
ul li strong, ol li strong {
  color: #244653;
  font-family: 'Georgia', serif;
  font-weight: 700;
  margin-right: 2px;
}

/* ------------------------------------------------- */
/* FOOTER                                            */
/* ------------------------------------------------- */
footer {
  background: #244653;
  color: #fff;
  padding: 30px 0 15px 0;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a{
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  padding: 3px 5px;
  border-radius: 3px;
  transition: background 0.18s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #A2C5C1;
  color: #244653;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.98rem;
  color: #F6F7F4;
  align-items: center;
  margin-bottom: 0;
}
.footer-contact img {
  width: 19px; height: 19px; margin-right: 8px;
}
.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 7px;
}
.footer-social a {
  background: #FAFBFB;
  border-radius: 50%;
  padding: 7px;
  display: flex;
  transition: background 0.2s, transform 0.2s;
  border: 1px solid #A2C5C1;
}
.footer-social a:hover, .footer-social a:focus {
  background: #FFD06B;
  transform: scale(1.08);
}
.footer-social img {
  width: 23px; height: 23px;
  display: block;
}
.footer-legal {
  font-size: 0.95rem;
  color: #B7D1CC;
  text-align: center;
  margin-top: 12px;
  line-height: 1.45;
}
@media (max-width: 650px) {
  .footer-contact, .footer-legal, .footer-nav, .footer-social {
    text-align: center;
    align-items: center;
    flex-direction: column;
    gap: 7px;
  }
  footer {
    padding: 22px 0 9px 0;
    font-size: 0.95rem;
  }
}

/* ------------------------------------------------- */
/* COOKIE CONSENT BANNER & COOKIE SETTINGS MODAL      */
/* ------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: #FFFFFF;
  color: #244653;
  box-shadow: 0 -2px 24px rgba(36,70,83,0.09);
  padding: 20px 18px 20px 18px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  animation: cookieBannerIn 0.27s cubic-bezier(.49, .16, .46, 1.13);
}
@keyframes cookieBannerIn {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 22px;
  padding: 8px 22px;
  margin-left: 5px;
  background: #A2C5C1;
  color: #244653;
  border: none;
  outline: none;
  cursor: pointer;
  margin-bottom: 3px;
  transition: background 0.16s, color 0.13s;
}
.cookie-banner button.accept {
  background: #FFD06B;
  color: #244653;
  margin-right: 6px;
  font-weight: 700;
}
.cookie-banner button.reject {
  background: #F5F7F7;
  color: #244653;
  font-weight: 600;
}
.cookie-banner button.settings {
  background: #A2C5C1;
  color: #244653;
  font-weight: 600;
}
.cookie-banner button:focus, .cookie-banner button:hover {
  background: #244653;
  color: #FFD06B;
}

.cookie-modal-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,70,83,0.33);
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s cubic-bezier(.48, .14, .47, 1.1);
}
.cookie-modal-bg.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #FAFBFB;
  border-radius: 18px;
  box-shadow: 0 10px 50px rgba(36,70,83,0.15);
  padding: 36px 22px 28px 22px;
  max-width: 380px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: 1rem;
  position: relative;
  animation: cookieModalIn 0.24s cubic-bezier(.56, .09, .53, 1.04);
}
@keyframes cookieModalIn {
  from { transform: scale(.95) translateY(85px); opacity: 0 } to { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Georgia', serif;
  font-size: 1.26rem;
  color: #244653;
  margin-bottom: 7px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #244653;
  gap: 11px;
}
.cookie-modal input[type="checkbox"] {
  appearance: none;
  width: 19px;
  height: 19px;
  border: 2px solid #A2C5C1;
  border-radius: 5px;
  background: #fff;
  position: relative;
  transition: border-color 0.18s;
}
.cookie-modal input[type="checkbox"]:checked {
  border: 2px solid #244653;
  background: #A2C5C1;
}
.cookie-modal input[type="checkbox"]:checked:after {
  content: "";
  position: absolute;
  left: 5px; top: 2px;
  width: 5px; height: 10px;
  border: solid #244653;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.cookie-modal .essential {
  color: #B7D1CC;
  font-size: 0.97rem;
  font-style: italic;
  margin-left: 31px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-close {
  position: absolute;
  right: 18px;
  top: 14px;
  background: transparent;
  border: none;
  color: #244653;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 20;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  color: #FFD06B;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 13px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  border-radius: 22px;
  padding: 8px 22px;
  background: #A2C5C1;
  color: #244653;
  font-family: 'Georgia', serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.17s, color 0.14s;
}
.cookie-modal button.save {
  background: #FFD06B;
  color: #244653;
}
.cookie-modal button.cancel {
  background: #FAFBFB;
  color: #244653;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #244653;
  color: #FFD06B;
}

@media (max-width: 500px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    font-size: 0.97rem;
    padding: 16px 4px 12px 5px;
    gap: 10px;
  }
  .cookie-modal {
    padding: 14px 6px 12px 9px;
    max-width: 96vw; min-width: 0;
    border-radius: 0;
  }
}

/* ------------------------------------------------- */
/* TRANSITIONS/MICRO-INTERACTIONS                    */
/* ------------------------------------------------- */
.button, button, .cta-btn, .cookie-banner button, .cookie-modal button {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.12s;
}
.card, .article-list > article, .article-grid > article, .services-list > div, .service-card, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.17s;
}

/* ------------------------------------------------- */
/* SCROLLBAR STYLING                                 */
/* ------------------------------------------------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb {
  background: #A2C5C1;
  border-radius: 5px;
}
::-webkit-scrollbar-track {
  background: #F9FAF8;
}

/* ------------------------------------------------- */
/* ELEGANT SHADOWS & EFFECTS                         */
/* ------------------------------------------------- */
.card, .service-card, .testimonial-card {
  box-shadow: 0 1px 8px rgba(36,70,83,0.07);
}
.card:hover, .service-card:hover, .testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(36,70,83,0.13);
  transform: translateY(-2px) scale(1.01);
}

/* ------------------------------------------------- */
/* ACCESSIBILITY                                     */
/* ------------------------------------------------- */
:focus {
  outline: 2px solid #FFD06B;
  outline-offset: 1px;
}
::-moz-focus-inner { border: 0; }

/* Ensuring dark text on light for testimonials */
.testimonial-card,
.testimonial-card blockquote,
.testimonial-card p,
.testimonial-card strong { color: #244653 !important; background: #FAFBFB !important; }

/* ------------------------------------------------- */
/* UTILITY CLASSES                                   */
/* ------------------------------------------------- */
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 22px; }
.pt-2 { padding-top: 12px; }
.pt-3 { padding-top: 18px; }
.fw-bold { font-weight: 700; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.bg-white { background: #fff !important; }
.bg-light { background: #F9FAF8 !important; }
.bg-primary { background: #244653 !important; color: #fff !important; }

/* ------------------------------------------------- */
/* AVOID GRID/ABSOLUTE/COLUMN SPACING                */
/* ------------------------------------------------- */
/* All layouts use ONLY flexbox as required           */
