/* 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;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F7FA;
  color: #1D232A;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  background: none;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button {
  border: none;
  cursor: pointer;
  background: none;
  appearance: none;
}

/* VARIABLES & FONTS */
:root {
  --color-primary: #1D232A;
  --color-secondary: #F9B233;
  --color-accent: #F4F7FA;
  --color-bg: #F4F7FA;
  --color-card-bg: #FFF;
  --color-border: #E3E8F0;
  --color-muted: #757E8A;
  --color-contrast: #212531;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

html {
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-bg);
  color: var(--color-primary);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1rem; }
p, li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-primary);
  margin-bottom: 8px;
}
strong, b { font-weight: 700; }

/* SPACING & CONTAINER */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-card-bg);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(29,35,42,0.05);
  position: relative;
  padding: 24px;
}
.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;
  background: #FFF;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 12px 0 rgba(29,35,42,0.07);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* GAPS BETWEEN CARDS/ELEMENTS */
.event-cards,
.article-cards,
.idea-cards,
.team-list,
.team-member {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.event-card,
.article-card,
.idea-card,
.team-member {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 22px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(29,35,42,0.04);
  flex: 1 1 270px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, #eaf0f9 0%, #f2f5fa 100%);
  padding: 60px 0 40px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
}
.hero h1 {
  font-size: 2.7rem;
  margin-bottom: 14px;
}
.hero p {
  font-size: 1.15rem;
  color: var(--color-muted);
  margin-bottom: 22px;
}
/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 52px;
  border-radius: 8px;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px 0 rgba(249,178,51,0.15);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  border: none;
  margin-top: 10px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #eea517;
  color: var(--color-contrast);
  box-shadow: 0 2px 16px 0 rgba(249,178,51,0.23);
}
.btn {
  padding: 9px 24px;
  background: transparent;
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 600;
  margin-right: 12px;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.btn:hover, .btn:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 1.5px solid var(--color-secondary);
}

/* FILTER BAR */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0 10px 0;
  flex-wrap: wrap;
}
.filter-bar span {
  font-weight: 600;
  color: var(--color-muted);
}

/* CARDS & FEATURE GRIDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-card {
  flex: 1 1 240px;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px 20px 26px 20px;
  box-shadow: 0 2px 10px 0 rgba(29,35,42,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: box-shadow 0.2s, border 0.2s, transform 0.18s;
  margin-bottom: 20px;
}
.feature-card:hover {
  border: 1.5px solid var(--color-secondary);
  box-shadow: 0 8px 20px 0 rgba(249,178,51,0.12);
  transform: translateY(-2px) scale(1.02);
}
.feature-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

/* ARTICLE / IDEA / EVENT CARDS */
.article-card:hover, .idea-card:hover, .event-card:hover {
  border: 1.5px solid var(--color-secondary);
  box-shadow: 0 4px 16px 0 rgba(249,178,51,0.12);
  transform: translateY(-2px) scale(1.01);
}

/* TEAM LIST */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.team-member {
  flex: 1 1 280px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px 18px;
  min-width: 220px;
}

/* NEWSLETTER CTA */
.newsletter-cta form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.newsletter-cta input[type="email"] {
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  font-size: 1rem;
  min-width: 220px;
  background: #f7fafd;
  font-family: var(--font-body);
  transition: border 0.15s;
}
.newsletter-cta input[type="email"]:focus {
  border: 1.5px solid var(--color-secondary);
  outline: none;
}

/* CTA SECTION */
.cta {
  padding: 40px 0 32px 0;
  background: linear-gradient(90deg, #f7fafd 0%, #E3E8F0 100%);
  border-radius: 16px;
  margin: 20px 0 0 0;
  text-align: center;
}
.cta .btn-primary {
  margin: 0 auto;
}

/* FOOTER */
footer {
  background: var(--color-primary);
  color: #fff;
  margin-top: 30px;
}
footer .container {
  padding-top: 32px;
  padding-bottom: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-brand img {
  width: 40px;
  height: 40px;
}
.footer-nav, .footer-utility, .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
}
.footer-nav a, .footer-utility a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.85;
  transition: opacity 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-utility a:hover { opacity: 1; color: var(--color-secondary); }
.footer-contact {
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.footer-contact h3 {
  color: var(--color-secondary);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.footer-contact ul li img {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  opacity: 0.93;
  transition: opacity 0.18s, filter 0.18s;
}
.footer-social a:hover img { opacity: 1; filter: brightness(1.15); }
.footer-newsletter {
  margin-bottom: 18px;
}
.footer-newsletter h3 {
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: 8px;
}
.footer-newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.footer-newsletter input[type="email"] {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #dadada;
  min-width: 170px;
  background: #1D232A;
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border 0.15s;
}
.footer-newsletter input[type="email"]::placeholder { color: #bbb; opacity: 0.95; }
.footer-newsletter input[type="email"]:focus { border: 1.5px solid var(--color-secondary); outline: none; }
.footer-newsletter .btn-primary {
  padding: 0 26px;
  height: 42px;
  font-size: 1rem;
  border-radius: 7px;
}
.footer-bottom {
  padding: 20px 0 10px 0;
  font-size: 1rem;
  color: #98a1b3;
  border-top: 1px solid #222933;
  display: flex;
  justify-content: center;
}

/* HEADER / NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 74px;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 18px;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: auto;
  margin-left: 16px;
}
.main-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 3px 8px;
  border-radius: 5px;
  transition: background 0.12s, color 0.12s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--color-accent);
  color: var(--color-secondary);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.25rem;
  background: none;
  color: var(--color-primary);
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.14s;
  z-index: 40;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus { background: #e4e8ee; outline: none; }
/* Hide nav & show burger on mobile */
@media (max-width: 950px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* MOBILE SLIDE MENU */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(29,35,42,0.97);
  color: #FFF;
  z-index: 9999;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.22s;
}
.mobile-menu.active {
  transform: translateX(0vw);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 28px 0px 0;
  font-size: 2.35rem;
  color: #fff;
  background: none;
  border: none;
  border-radius: 4px;
  width: 50px; height: 50px;
  transition: background 0.14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(249,178,51,0.19);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  padding: 34px 34px 0 32px;
  margin-top: 10px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 10px 8px;
  border-radius: 6px;
  width: 100%;
  transition: background 0.16s, color 0.12s;
  display: flex;
  align-items: center;
}
.mobile-nav a:hover { background: var(--color-secondary); color: var(--color-primary); }

/* FORMS & INPUTS */
input, textarea, select {
  font-family: var(--font-body);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  outline: none;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-secondary);
}
label {
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-block;
  color: var(--color-primary);
}

/* COOKIES BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #222933;
  color: #fff;
  box-shadow: 0 -3px 20px 0 rgba(29,35,42,0.08);
  z-index: 2147483646;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 20px 22px 20px;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(0.7,0,0.2,1), opacity 0.2s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-message {
  flex: 1 1 260px;
  color: #fff;
}
.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-cookie-accept, .btn-cookie-reject, .btn-cookie-settings {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 6px;
  border: none;
  margin-right: 4px;
}
.btn-cookie-accept {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 700;
  transition: box-shadow 0.14s, background 0.14s;
}
.btn-cookie-accept:hover { background: #eea517; }
.btn-cookie-reject {
  background: #30363d;
  color: #fff;
  font-weight: 600;
  border: 1.2px solid #3d444d;
  transition: background 0.16s, box-shadow 0.13s;
}
.btn-cookie-reject:hover { background: #40464e; }
.btn-cookie-settings {
  background: transparent;
  border: 1.2px solid var(--color-secondary);
  color: var(--color-secondary);
  transition: background 0.14s, color 0.14s;
}
.btn-cookie-settings:hover { background: var(--color-secondary); color: var(--color-primary); }

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(20,24,33,0.52);
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: 16px;
  min-width: 320px;
  max-width: 430px;
  box-shadow: 0 16px 40px 0 rgba(29,35,42,0.16);
  padding: 32px 32px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalIn 0.52s cubic-bezier(.31,1.21,.63,1.02);
}
@keyframes cookieModalIn {
  from { transform: translateY(80px) scale(0.94); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 8px;
  font-family: var(--font-display);
  color: var(--color-primary);
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 9px 0 15px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid #ececec;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category-label {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-primary);
  min-width: 130px;
}
.cookie-category-toggle {
  margin-left: auto;
}
/* Switch toggle */
.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 24px;
}
.cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #dce0e6;
  border-radius: 24px;
  transition: background 0.2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--color-secondary);
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform 0.16s;
  box-shadow: 0 2px 2px 0 rgba(29,35,42,0.09);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}
/* Modal buttons */
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .btn-cookie-accept, .cookie-modal .btn-cookie-reject {
  padding: 10px 28px; font-size: 1.07rem;
}
.cookie-modal .btn-cookie-cancel {
  background: transparent; color: var(--color-primary);
  border-radius: 6px; font-size: 1.03rem; padding: 10px 20px;
  border: 1.1px solid var(--color-border); font-weight: 600;
  margin-right: 9px;
}
.cookie-modal .btn-cookie-cancel:hover {
  background: #f5f6f8;
}

/* TEXT SECTIONS */
.text-section {
  max-width: 800px;
  margin: 0 auto 24px auto;
  font-size: 1.1rem;
}
.text-section h2, .text-section h3 { margin-top: 16px; }
.text-section ul { margin: 18px 0 20px 24px; }
.text-section ul li { color: var(--color-primary); margin-bottom: 9px; font-size: 1rem; }
.text-section a { color: var(--color-secondary); text-decoration: underline; }
.text-section a:hover { color: #eea517; text-decoration: underline; }

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 22px 0 16px 0;
}
.contact-info ul {
  min-width: 220px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: var(--color-primary);
}
.contact-map {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-map img { width: 22px; height: 22px; }

/* GENERAL CARD HOVERS FOR ACCESSIBILITY */
.card, .feature-card, .article-card, .idea-card, .event-card, .team-member, .testimonial-card {
  transition: border 0.17s, box-shadow 0.18s, transform 0.14s;
}
.card:hover, .feature-card:hover, .article-card:hover, .event-card:hover, .team-member:hover, .testimonial-card:hover {
  box-shadow: 0 7px 24px 0 rgba(49,54,64,0.10);
  border-color: var(--color-secondary);
}

/* VISUAL HIERARCHY */
h1, .hero h1 { color: var(--color-primary); }
h2 { color: var(--color-primary); margin-top: 0; }
h3 { color: var(--color-contrast); }

/* TESTIMONIALS STYLING & CONTRAST */
.testimonial-card {
  background: #fff;
  color: #222a35;
  border-left: 4px solid var(--color-secondary);
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-card p {
  color: #1D232A;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: var(--color-primary);
}

/* CARD SPECIFICS (borders/corners) */
.card, .feature-card, .article-card, .idea-card, .event-card, .team-member {
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: #FFF;
}

/* UTILITY */
.mt-12 { margin-top: 12px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.t-center { text-align: center !important; }

/* ACCESSIBILITY & FOCUS STATES */
a:focus, button:focus, .btn-primary:focus, .btn:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
  z-index: 2;
}

/* ------------ RESPONSIVE DESIGN ------------- */
@media (max-width: 1200px) {
  .container { max-width: 950px; }
  .feature-grid, .team-list, .content-grid, .card-container {
    gap: 18px;
  }
}
@media (max-width: 950px) {
  .container { max-width: 95vw; }
  .feature-grid, .team-list, .content-grid, .card-container { gap: 16px; }
  .footer-newsletter form {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom {
    font-size: 0.96rem;
    padding-bottom: 8px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section { margin-bottom: 38px; padding: 30px 7px; }
  .hero { padding: 38px 0 18px 0; }
  .container {
    padding: 0 8px;
  }
  .hero h1 { font-size: 2.1rem; }
  .main-nav { display: none; }
  .btn-primary, .btn-cookie-accept, .btn-cookie-reject, .btn-cookie-settings { height: 48px; font-size: 1.07rem; }
  .feature-grid, .team-list, .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .feature-card, .article-card, .event-card, .idea-card, .team-member {
    min-width: 0;
    width: 100%;
    padding: 16px 11px;
  }
  .text-image-section { flex-direction: column; gap: 16px; }
  .contact-info, .filter-bar, .footer-nav, .footer-utility, .footer-social { gap: 8px; flex-direction: column; }
}
@media (max-width: 440px) {
  html { font-size: 14px; }
  .footer-brand img { width: 34px; height: 34px; }
  .footer-bottom { font-size: 0.92rem; }
  .cookie-consent-banner { padding: 14px 4px 12px 6px; font-size: 0.97rem; gap: 6px; }
  .cookie-modal { padding: 16px 5px 14px 5px; min-width: 90vw; width: 96vw; }
}
