/* ---- CSS RESET & BASE ---- */
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;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #FAFAFA;
  color: #181920;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #272A37;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F04E23;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #181920;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  font-weight: 500;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}
p, label {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #282828;
}
strong {
  font-weight: 700;
  color: #1B1D21;
}

/* ---- CONTAINERS & SECTIONS ---- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(40,40,40,0.06), 0 1.5px 5px rgba(48,52,60,0.04);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ---- HEADER / NAVIGATION ---- */
header {
  width: 100%;
  background: #181920;
  color: #f5f5f5;
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 18px;
}
header img {
  height: 50px;
  margin-right: 24px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #f5f7fa;
  font-size: 1rem;
  font-weight: 500;
  padding: 2px 4px;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
header nav a:hover,
header nav a:focus {
  color: #F04E23;
  border-bottom: 2px solid #F04E23;
}
.btn-primary {
  background: #F04E23;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 28px;
  padding: 12px 32px;
  margin-left: 20px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(240,78,35,0.10);
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.03em;
  outline: none;
  text-align: center;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #22242C;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px 0 rgba(30,30,30,0.1);
}

/* ---- MOBILE NAVIGATION ---- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #f5f7fa;
  cursor: pointer;
  z-index: 55;
  margin-left: 18px;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #F04E23;
  outline: none;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,25,32, 0.98);
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.46,.03,.52,.96);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #fff;
  position: absolute;
  top: 22px;
  right: 32px;
  z-index: 10001;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F04E23;
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin-top: 68px;
  margin-left: 38px;
  width: 80vw;
  max-width: 340px;
}
.mobile-menu nav.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 8px 0 8px 16px;
  border-radius: 6px;
  transition: background 0.17s, color 0.18s;
  width: 100%;
  display: block;
}
.mobile-menu nav.mobile-nav a:hover, .mobile-menu nav.mobile-nav a:focus {
  background: #22242C;
  color: #F04E23;
}

/* Header Responsive */
@media (max-width: 1024px) {
  header .container {
    flex-wrap: wrap;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 900px) {
  header nav,
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ---- LAYOUT PATTERNS (MANDATORY FLEXBOX ONLY!) ---- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(48,48,48,0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  min-width: 270px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(30,30,30,0.16);
  transform: translateY(-2px) scale(1.01);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.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;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FAFAFA;
  border-radius: 14px;
  box-shadow: 0 1.5px 7px rgba(36,36,36,0.09);
  margin-bottom: 20px;
  position: relative;
  color: #181920;
  min-width: 260px;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card footer {
  font-size: 0.95rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-left: 18px;
}

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

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F5F7FA;
  border-radius: 10px;
  padding: 18px 28px 18px 18px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #272A37;
  font-weight: 500;
  min-width: 220px;
  box-shadow: 0 0.5px 2px rgba(30,30,30,0.07);
}
.features-list img {
  width: 40px;
  height: 40px;
}

/***** MISC SECTION SHARED UTILITIES *****/
.policy-document {
  background: #f4f5f7;
  border-radius: 10px;
  padding: 24px 24px;
  margin-top: 10px;
  color: #2b2b2b;
  line-height: 1.65;
  box-shadow: 0 1px 6px #23232308;
  font-size: 1rem;
}

.live-update-banner {
  background: #F04E23;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 14px;
  padding: 12px 24px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 6px;
}

/***** SCREENS: NEWS ARTICLES *****/
.news-articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.news-articles-grid article {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 5px rgba(30,30,30,0.065);
  padding: 24px 20px 22px 22px;
  min-width: 240px;
  flex: 1 1 300px;
  transition: box-shadow 0.18s, transform 0.16s;
  margin-bottom: 20px;
}
.news-articles-grid article h3 {
  color: #22242C;
  margin-bottom: 10px;
  font-size: 1.17rem;
}
.news-articles-grid article p {
  margin-bottom: 0;
  color: #232323;
}
.news-articles-grid .featured-story-highlight {
  border-left: 4px solid #F04E23;
  background: #F04E23;
  color: #FFF;
  box-shadow: 0 4px 18px 0 rgba(40,40,40,0.12);
}
.news-articles-grid .featured-story-highlight h3 {
  color: #fff;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
}
.filter-options span {
  font-weight: 500;
  color: #22242C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.filter-options button {
  background: #fff;
  border: 1px solid #E3E6EA;
  border-radius: 8px;
  padding: 6px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #22242C;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, border 0.18s;
  margin-bottom: 4px;
}
.filter-options button:hover, .filter-options button:focus {
  background: #22242C;
  color: #fff;
}

/***** REVIEWS PAGE *****/
.review-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review-list li {
  background: #f8f8f8;
  padding: 22px 18px;
  border-radius: 8px;
  box-shadow: 0 0.5px 3px rgba(19, 19, 19, 0.07);
}
.review-list h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
  font-weight: 600;
}

.filter-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  align-items: center;
  margin-top: 5px;
}
.filter-controls span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #181920;
}
.filter-controls button {
  background: #fff;
  border: 1px solid #D5D6DA;
  border-radius: 7px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #181920;
  padding: 5px 15px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, border 0.16s;
}
.filter-controls button:hover, .filter-controls button:focus {
  background: #272A37;
  color: #fff;
}
.sorting-options {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.sorting-options label {
  color: #383838;
  font-weight: 500;
  margin-bottom: 0;
}
.sorting-options select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background: #fff;
  border: 1px solid #CCC;
  border-radius: 8px;
  padding: 5px 14px;
  outline: none;
}

input[type="text"] {
  font-size: 1rem;
  padding: 12px 18px;
  border-radius: 9px;
  border: 1px solid #DFDFDF;
  width: 100%;
  max-width: 350px;
  margin-top: 8px;
  background: #f9f9f9;
  box-shadow: 0 1px 4px rgba(40,41,49,0.07);
  transition: border 0.15s, box-shadow 0.15s;
}
input[type="text"]:focus {
  border: 1.5px solid #272A37;
  background: #fff;
}

/***** PREMIERES PAGE *****/
.premiere-calendar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.premiere-calendar li {
  background: #EFEFEF;
  padding: 16px 18px;
  border-radius: 6px;
  color: #131313;
  font-size: 1rem;
  margin-bottom: 4px;
}
.premiere-calendar li strong {
  color: #22242C;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.premiere-calendar li span {
  font-size: 0.98rem;
  color: #363637;
}
input[type=date] {
  background: #fcfcfc;
  color: #181920;
  font-size: 1rem;
  border: 1px solid #E4E6EA;
  padding: 7px 13px;
  border-radius: 7px;
  margin-left: 6px;
}
input[type=date]:focus {
  border-color: #272A37;
  outline: none;
}

/***** INTERVIEWS PAGE *****/
.interview-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.interview-list li {
  background: #F9F9F9;
  border-radius: 8px;
  box-shadow: 0 0.5px 3px rgba(20,20,20,0.08);
  padding: 22px 18px;
}
.guest-profiles {
  display: flex;
  gap: 24px;
  background: #E6E8EA;
  padding: 16px 20px;
  border-radius: 9px;
}
.audio-clips {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  color: #272A37;
}
.audio-clips img {
  width: 24px; height: 24px;
}

/***** ABOUT PAGE *****/
.team-list {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.team-list li {
  min-width: 230px;
  flex: 1 1 230px;
  background: #FFF;
  border-radius: 8px;
  box-shadow: 0 1px 7px #20203006;
  padding: 20px 13px 16px 18px;
}
.team-list h3 {
  font-size: 1.12rem;
  margin-bottom: 6px;
}
.team-values {
  background: #EBEBEB;
  border-radius: 10px;
  padding: 18px 18px 14px 22px;
}
.press-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.press-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.press-list img {
  width: 28px;
  height: 28px;
}

/***** CONTACT PAGE *****/
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  background: #FAFAFB;
  padding: 18px 15px 14px 18px;
  border-radius: 10px;
  align-items: flex-start;
}
.contact-details address {
  min-width: 210px;
  color: #242426;
  font-size: 1rem;
}
.contact-details strong {
  color: #272A37;
}
.map-embed {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 180px;
}
.map-embed img {
  width: 60px;
  height: 60px;
}
.working-hours {
  min-width: 160px;
  color: #242426;
  font-size: 0.98rem;
}
.cta-section {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.faq-list div {
  background: #F8F8FC;
  border-radius: 9px;
  padding: 16px 14px;
  box-shadow: 0 0.5px 2px #B8B7BD11;
}
.faq-list h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: #272A37;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.faq-list p {
  margin-bottom: 0;
}

/***** FOOTER *****/
footer {
  width: 100%;
  background: #181920;
  color: #fff;
  padding: 32px 0 24px 0;
  margin-top: 80px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 44px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #f3f3f3;
  font-size: 1rem;
  margin-bottom: 0;
  transition: color 0.18s, text-decoration 0.16s;
  text-decoration: none;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
footer nav a:hover, footer nav a:focus {
  color: #F04E23;
  text-decoration: underline;
}
footer img {
  width: 48px; height: 48px; margin-bottom: 9px;
}
footer p {
  margin-bottom: 4px;
  color: #f8f8f8;
  font-size: 0.99rem;
}
footer address {
  color: #E0E0E1;
  font-style: normal;
  font-size: 0.98rem;
  margin-top: 12px;
}
footer address img {
  width: 18px; height: 18px; vertical-align: middle; margin-right: 6px;
}

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #272A37;
  color: #fff;
  box-shadow: 0 -3px 22px rgba(37,28,28,0.08);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 24px 19px 24px;
  gap: 14px;
  font-size: 1rem;
  animation: fadeInUp 0.36s cubic-bezier(.7,.11,.17,1.08);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1.01rem;
  text-align: center;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
.cookie-banner button {
  padding: 9px 22px;
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, color .15s, box-shadow 0.13s;
}
.cookie-banner .accept {
  background: #F04E23;
  color: #fff;
  box-shadow: 0 1px 1.5px #18192028;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #22242C;
}
.cookie-banner .reject {
  background: #fff;
  color: #272A37;
  border: 1.5px solid #eaf0f8;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  border-color: #F04E23;
  color: #F04E23;
}
.cookie-banner .settings {
  background: #232224;
  color: #fff;
  border: 1.5px solid #36363b;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #22242C;
}

/***** COOKIE SETTINGS MODAL *****/
.cookie-modal {
  position: fixed;
  left: 0; right:0; top: 0; bottom:0;
  z-index: 3010;
  background: rgba(30,29,36,0.81);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: fadeInUp 0.34s cubic-bezier(.68,.16,.18,1.1);
}
.cookie-modal .modal-content {
  background: #fff;
  color: #181920;
  border-radius: 15px;
  box-shadow: 0 10px 40px #191b2112;
  padding: 36px 30px 24px 30px;
  min-width: 310px;
  max-width: 96vw;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal .modal-content h2 {
  margin-bottom: 9px;
  font-size: 1.35rem;
  color: #272A37;
}
.cookie-modal .modal-content .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-modal .modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #F5F7FA;
  border-radius: 7px;
  padding: 8px 14px;
}
.cookie-modal .modal-content .cookie-category label {
  margin-bottom: 0;
  font-size: 1rem;
  color: #22242C;
  flex: 1;
  font-weight: 500;
}
.cookie-modal .modal-content input[type='checkbox'] {
  width: 21px;
  height: 21px;
  border-radius: 5px;
  accent-color: #F04E23;
}
.cookie-modal .modal-content .desc {
  font-size: 0.96rem;
  color: #464549;
}
.cookie-modal .modal-content .modal-actions {
  margin-top: 8px;
  display: flex;
  gap: 17px;
}
.cookie-modal .modal-content .close {
  position: absolute;
  top: 13px;
  right: 16px;
  background: none;
  border: none;
  color: #272A37;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .modal-content .close:hover, .cookie-modal .modal-content .close:focus {
  color: #F04E23;
}
.cookie-modal .modal-content button {
  padding: 9px 24px;
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .16s, color .14s, box-shadow .12s;
}
.cookie-modal .modal-content .accept {
  background: #F04E23;
  color: #fff;
}
.cookie-modal .modal-content .reject {
  background: #272A37;
  color: #fff;
}

/***** SHARED UTILITIES & MICROINTERACTIONS *****/
@media (max-width: 768px) {
  .container {
    padding-right: 8px;
    padding-left: 8px;
  }
  .footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .content-wrapper, .section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .features-list {
    gap: 18px;
    flex-direction: column;
  }
  .card-container {
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .news-articles-grid {
    flex-direction: column;
    gap: 12px;
  }
  .team-list,
  .press-list,
  .contact-details {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
}

/* Tagline */
.tagline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  color: #F04E23;
  margin-top: 8px;
  font-weight: 500;
}

/* Accessibility focus style */
:focus {
  outline: 2px solid #F04E23;
}
::-webkit-input-placeholder { color: #9a9a9a; opacity: 1; }
::-moz-placeholder { color: #9a9a9a; opacity: 1; }
:-ms-input-placeholder { color: #9a9a9a; opacity: 1; }
::placeholder { color: #9a9a9a; opacity: 1; }

/* Hide cookie modal and banner by default (JS will show them) */
.cookie-banner,
.cookie-modal {
  display: none;
}

/* Show when active class applied by JS */
.cookie-banner.show,
.cookie-modal.show {
  display: flex;
}

/* ---- END ---- */
