/* RESET & BASE TYPOGRAPHY ---------------------------------------------------------*/
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  color: #20222b;
  background-color: #F3F6F9;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 16px;
  min-height: 100vh;
  /* For elegant appearance, more vertical whitespace */
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #16304B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #27A58E;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
  padding-left: 0;
}
li {
  margin-bottom: 8px;
  font-size: 16px;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TYPOGRAPHY ------------------------------------------------------*/
h1, h2, h3, h4, h5 {
  font-family: "Georgia", serif;
  color: #16304B;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  margin-top: 18px;
}
h2 {
  font-size: 1.75rem;
  margin-top: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-top: 10px;
}
strong, b {
  font-weight: 700;
}
p, blockquote {
  margin-bottom: 18px;
  font-family: 'Georgia', serif;
  color: #243048;
  font-size: 1rem;
  line-height: 1.68;
}
blockquote {
  font-style: italic;
  padding-left: 18px;
  border-left: 3px solid #27A58E;
  margin-bottom: 22px;
  color: #16304B;
}

/* HEADER & NAV ---------------------------------------------------------*/
header {
  background: #fff;
  box-shadow: 0 3px 12px rgba(22, 48, 75, 0.04);
  border-bottom: 1px solid #E4E9F1;
  position: sticky;
  top: 0;
  z-index: 201;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.logo img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 1.02rem;
  color: #16304B;
  position: relative;
  padding: 6px 2px;
  transition: color 0.19s;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #27A58E;
  transition: width 0.2s;
  margin: 0 auto 0.1em auto;
}
.main-nav a:hover, .main-nav a:focus {
  color: #27A58E;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 80%;
}
.btn-primary {
  display: inline-block;
  background: #16304B;
  color: #fff;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 7px;
  padding: 12px 38px;
  margin-left: 20px;
  box-shadow: 0 2px 10px rgba(22, 48, 75, 0.08);
  transition: background 0.19s, box-shadow 0.2s, color 0.19s;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus {
  background: #27A58E;
  color: #fff;
  box-shadow: 0 6px 16px rgba(39, 165, 142, 0.10);
}

/* -------------------------------------------------------------------------------------------------*/
/* MOBILE MENU ---------------------------------------------------------*/
.mobile-menu-toggle {
  display: none;
  background: transparent;
  font-size: 2.1rem;
  color: #16304B;
  border: none;
  cursor: pointer;
  margin-left: 22px;
  z-index: 300;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: none;
  color: #27A58E;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 84vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  z-index: 310;
  box-shadow: -2px 0 20px rgba(22,48,75,0.12);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.7,.2,.2,1);
  display: flex;
  flex-direction: column;
  padding: 36px 28px 0 32px;
  gap: 36px;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.36s cubic-bezier(.7,.2,.2,1);
}
.mobile-menu-close {
  position: absolute;
  top: 19px;
  right: 21px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #16304B;
  cursor: pointer;
  z-index: 320;
}
.mobile-menu-close:focus {
  outline: none;
  color: #27A58E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 1.16rem;
  padding: 7px 0;
  color: #16304B;
  border-radius: 5px;
  transition: background 0.22s, color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3F6F9;
  color: #27A58E;
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }
  .btn-primary {
    margin-left: 12px;
    padding: 12px 22px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .logo img {
    height: 33px;
  }
  .btn-primary {
    display: none;
  }
}

/* -------------------------------------------------------------------------------------------------*/
/* SECTIONS & LAYOUT --------------------------------------------------*/
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.features-section, .solutions-overview-section, .services-highlight-section,
.benefits-section, .brand-values-section, .case-studies-section,
.resources-section, .downloads-section, .privacy-policy-section,
.gdpr-section, .cookies-policy-section, .terms-section,
.thank-you-section, .about-section, .team-section, .faq-section,
.process-section, .contact-section, .map-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 22px 0 rgba(22, 48, 75, 0.06);
}

@media (max-width: 600px) {
  .section, section {
    padding: 24px 5px 34px 5px;
    margin-bottom: 36px;
  }
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

/* FLEXBOX PATTERNS ---------------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 22px rgba(22, 48, 75, 0.07);
  padding: 32px 28px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  min-width: 210px;
}
.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;
    gap: 16px;
    align-items: flex-start;
  }
}

.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.testimonial-card {
  background: #F3F6F9;
  border-left: 4px solid #27A58E;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(39, 165, 142, 0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 32px;
  min-width: 220px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  color: #16304B;
}
.testimonial-card p {
  color: #16304B;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card strong {
  color: #243048;
  font-size: 1rem;
  font-weight: 700;
}
.client-logos {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(22, 48, 75, 0.07);
  padding: 28px 24px;
  min-width: 210px;
  flex: 1 1 220px;
}
.feature-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
}
@media (max-width: 900px) {
  .feature-grid, .solution-cards, .service-cards,
  .case-study-cards, .testimonials-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .feature-grid, .solution-cards, .service-cards, .case-study-cards, .testimonials-wrapper {
    flex-direction: column;
    gap: 14px;
  }
}

/* HERO SECTION -----------------------------------------------*/
.hero-section {
  background: #16304B;
  color: #fff;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 6px 26px rgba(22,48,75,0.09);
  padding-bottom: 55px;
  position: relative;
}
.hero-section h1, .hero-section h2,
.hero-section p {
  color: #fff;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.hero-section .btn-primary {
  background: #27A58E;
  color: #fff;
  margin-left: 0;
}
.hero-section .btn-primary:hover {
  background: #16304B;
  color: #fff;
}

/* SOLUTION, FEATURE, SERVICES, CARDS ---------------------------*/
.feature-grid, .solution-cards, .service-cards, .case-study-cards, .solution-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.solution-card, .service-card, .case-study-card, .solution-detail {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 14px rgba(22, 48, 75, 0.05);
  padding: 28px 20px 28px 24px;
  flex: 1 1 235px;
  min-width: 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: box-shadow 0.24s;
  border-left: 2px solid #27A58E;
  /* Elegant shadow on hover */
}
.solution-card:hover, .service-card:hover, .case-study-card:hover, .solution-detail:hover {
  box-shadow: 0 7px 22px rgba(22, 48, 75, 0.08), 0 0 1px #27A58E;
}

.results-highlight strong {
  color: #27A58E;
  font-size: 1rem;
  margin-bottom: 9px;
}
.results-highlight ul {
  margin-bottom: 9px;
}
@media (max-width: 700px) {
  .feature-grid, .solution-cards, .service-cards, .case-study-cards, .solution-list {
    flex-direction: column;
    gap: 13px;
  }
}

.icon-grid {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.icon-grid img {
  width: 38px;
  height: 38px;
  background: #E4E9F1;
  border-radius: 7px;
  padding: 7px;
}

/* SERVICE LIST & PRICING TABLES ----------------------------------*/
.service-list, .benefit-list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.service-list li, .benefit-list li {
  font-size: 1.08rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E4E9F1;
}
.service-list li span {
  font-weight: 400;
  font-size: 1rem;
  color: #27A58E;
  margin-left: 14px;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0 24px 0;
  background: #F3F6F9;
  border-radius: 10px;
  overflow: hidden;
  font-family: 'Georgia', serif;
}
.pricing-table th, .pricing-table td {
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid #e3e3e9;
}
.pricing-table thead th {
  background: #27A58E;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 700px) {
  .pricing-table th, .pricing-table td { font-size: 0.98rem; padding: 8px 9px; }
}

/* FAQ -----------------------------------------------------------*/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #F3F6F9;
  border-radius: 11px;
  padding: 22px 26px;
  box-shadow: 0 2px 10px rgba(22,48,75,0.04);
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item h3 {
  font-size: 1.10rem;
  margin-bottom: 6px;
}

/* PROCESS STEPS -------------------------------------------------*/
.process-steps {
  list-style: decimal inside;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 24px;
  font-size: 1.08rem;
}
.process-steps li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #243048;
}

/* RESOURCES & DOWNLOADS ------------------------------------------*/
.guides-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.downloads-section ul {
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.downloads-section li a {
  color: #16304B;
  font-family: 'Georgia', serif;
  font-weight: 500;
  transition: color 0.20s;
}
.downloads-section li a:hover {
  color: #27A58E;
  text-decoration: underline;
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  align-items: flex-start;
  margin-bottom: 22px;
}
@media (max-width: 700px) {
  .contact-block {
    flex-direction: column;
    gap: 18px;
  }
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-short-info {
  margin-top: 14px;
  font-size: 1.01rem;
}
.contact-short-info a {
  color: #27A58E;
}

/* FOOTER -----------------------------------------------------------*/
footer {
  background: #16304B;
  color: #fff;
  border-radius: 28px 28px 0 0;
  margin-top: 40px;
  font-family: 'Georgia', serif;
  font-size: 1.02rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  padding: 44px 16px 30px 16px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #F3F6F9;
  font-size: 1.01rem;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #27A58E;
  text-decoration: underline;
}
.footer-contact {
  color: #E5EAEE;
  font-size: 0.98rem;
  text-align: center;
}
.footer-contact a {
  color: #27A58E;
}
footer small {
  color: #AAB2BD;
  margin-top: 13px;
  font-size: 0.95rem;
}

/* COOKIE CONSENT BANNER & POPUP  --------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #243048;
  border-top: 1px solid #E4E9F1;
  box-shadow: 0 -3px 18px rgba(22,48,75,0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 17px 24px 17px 24px;
  z-index: 9999;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  animation: fadein-banner 0.7s;
}
@keyframes fadein-banner {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner button {
  margin-left: 14px;
  background: #16304B;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 9px 24px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  margin-right: 7px;
  transition: background 0.19s, color 0.19s;
  cursor: pointer;
}
.cookie-banner button:hover, .cookie-banner button:focus { background: #27A58E; color: #fff; }
.cookie-banner .btn-secondary {
  background: #27A58E;
  color: #fff;
}
.cookie-banner .btn-secondary:hover, .cookie-banner .btn-secondary:focus {
  background: #16304B;
  color: #fff;
}
.cookie-banner .btn-plain {
  background: none;
  color: #16304B;
  border: 1px solid #AAB2BD;
  transition: background 0.20s, color 0.20s;
}
.cookie-banner .btn-plain:hover, .cookie-banner .btn-plain:focus {
  background: #E4E9F1;
  color: #16304B;
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 12000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22,48,75,0.30);
  animation: fadein-modal 0.45s;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes fadein-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #243048;
  padding: 36px 32px 22px 32px;
  border-radius: 20px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 8px 32px rgba(22,48,75,0.18);
  font-family: 'Georgia', serif;
  font-size: 1.03rem;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F3F6F9;
  padding: 12px 20px;
  margin-top: 8px;
  border-radius: 8px;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-modal .toggle-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 23px;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E4E9F1;
  border-radius: 23px;
  transition: background 0.18s;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider {
  background: #27A58E;
}
.cookie-modal .toggle-slider:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.23s;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  color: #16304B;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 2px 7px;
  border-radius: 5px;
  transition: background 0.2s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #F3F6F9;
}
.cookie-modal .modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-modal .modal-actions button {
  padding: 9px 20px;
  font-size: 1rem;
  border-radius: 7px;
  border: none;
  color: #fff;
  background: #27A58E;
  transition: background 0.19s;
  cursor: pointer;
}
.cookie-modal .modal-actions .btn-secondary {
  background: #16304B;
}
.cookie-modal .modal-actions button:hover, .cookie-modal .modal-actions button:focus {
  background: #16304B;
  color: #fff;
}

/* MICRO-INTERACTIONS, HOVER, AND TRANSITIONS --------------------------*/
.card, .feature-item, .solution-card, .service-card, .case-study-card, .testimonial-card, .faq-item {
  transition: box-shadow 0.19s, transform 0.20s;
}
.card:hover, .feature-item:hover, .solution-card:hover, .service-card:hover, .case-study-card:hover, .testimonial-card:hover, .faq-item:hover {
  box-shadow: 0 7px 28px 0 rgba(22, 48, 75, 0.13);
  transform: translateY(-3.5px) scale(1.015);
}
.btn-primary, .cookie-banner button, .cookie-modal .modal-actions button {
  transition: background 0.18s, color 0.17s, box-shadow 0.17s, border 0.17s;
}
input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

/* RESPONSIVE DESIGN --------------------------------------------------*/
@media (max-width: 600px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.15rem; }
  .hero-section { padding-bottom: 36px; border-radius: 0 0 18px 18px; }
  .feature-item, .solution-card, .service-card, .case-study-card {
    min-width: 90vw;
    padding: 20px 11px 20px 14px;
  }
  .testimonial-card {
    min-width: 90vw;
    padding: 18px 10px 18px 16px;
  }
}

/* HIGH CONTRAST FOR REVIEWS/TESTIMONIALS (DARK ON LIGHT) ------------*/
.testimonials-section, .testimonial-card {
  background: #F3F6F9 !important;
  color: #16304B !important;
}
.testimonial-card p, .testimonial-card strong {
  color: #16304B !important;
}

/* FORM FIELDS (future contact form/inputs) --------------------------*/
input[type="text"], input[type="email"], textarea {
  border: 1px solid #E4E9F1;
  background: #fff;
  padding: 9px 15px;
  border-radius: 7px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 14px;
  transition: border-color 0.19s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #27A58E;
}

/* MISCELLANEOUS ELEMENTS -------------------------------------------*/
::-webkit-scrollbar {
  width: 10px;
  background: #F3F6F9;
}
::-webkit-scrollbar-thumb {
  background: #E4E9F1;
  border-radius: 5px;
}

/* Hide visually, but keep accessible for screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* OVERLAY FOR MODALS + z-index layering -----------------------------*/
.overlay {
  position: fixed;
  z-index: 11000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22, 48, 75, 0.20);
  backdrop-filter: blur(1px);
}

/* THANK-YOU PAGE ---------------------------------------------------*/
.thank-you-section {
  text-align: center;
}
.thank-you-section .btn-primary {
  margin-top: 22px;
}

/* ENSURE FLEX WRAP EVERYWHERE --------------------------------------*/
.feature-grid, .solution-cards, .service-cards, .case-study-cards, .testimonials-wrapper, .solution-list, .card-container, .content-grid {
  flex-wrap: wrap !important;
  gap: 20px !important;
}

/* Remove unwanted absolute or grid layout usage (future-proof) -----*/
/* Never use display: grid, grid-*, columns, column-*, position: absolute (except as allowed for overlay/close elements) */

