/* ==== 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, main, aside, section, header, footer, nav {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: #21293A;
  color: #F4F6FB;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after { box-sizing: inherit; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { display: block; max-width: 100%; height: auto; border: 0; }
button, input, select, textarea { font-family: inherit; font-size: inherit; background: none; outline: none; border: none; color: inherit; }
ul, ol { list-style: none; }
hr { border: none; border-top: 1px solid #353C4D; margin: 20px 0; }

/* ==== VARIABLES (Fall back to solid colors for legacy) ==== */
:root {
  --color-primary: #21293A;
  --color-secondary: #F4F6FB;
  --color-accent: #E94F3C;
  --color-dark: #181F2A;
  --color-met: #979DA8;
  --color-muted: #3C4455;
  --color-shadow: rgba(33, 41, 58, 0.3);
  --radius-base: 10px;
  --radius-card: 14px;
  --shadow-card: 0 2px 16px rgba(20,28,44,0.13);
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  color: #F4F6FB;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
h1 { font-size: 2.4rem; line-height: 1.18; }
h2 { font-size: 1.8rem; margin-top: 20px; line-height: 1.22; }
h3 { font-size: 1.28rem; margin-top: 12px; }
h4 { font-size: 1.08rem; margin-top: 12px; font-weight: 600; }
p, li, blockquote { color: #F4F6FB; }
blockquote {
  background: #303849;
  color: #F4F6FB;
  border-left: 5px solid var(--color-accent);
  padding: 14px 28px 14px 16px;
  margin-bottom: 10px;
  border-radius: 0 var(--radius-base) var(--radius-base) 0;
  font-size: 1.07rem;
  font-style: italic;
}
strong { color: #fafbfc; font-weight: bold; }

/* Contrast for testimonials and light cards */
.testimonial-card blockquote, .testimonial-card, .testimonial-author {
  color: #181F2A;
}
.testimonial-card {
  background: #F4F6FB;
  box-shadow: 0 2px 16px rgba(60, 68, 85, 0.08);
  border-radius: var(--radius-card);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px;
}

.testimonial-author {
  font-weight: 700;
  color: #979DA8;
  margin-top: 6px;
  font-size: 1rem;
}

/* ==== CONTAINER, SECTION SPACING ==== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

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

/* ==== HEADER, NAV ==== */
header {
  width: 100%;
  background: #181F2A;
  box-shadow: 0 2px 16px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  height: 64px;
  margin-right: 26px;
  padding: 8px 0;
}
header {
  /* Ensure never grid, always flex */
  display: flex;
  flex-direction: row;
  align-items: center;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-left: 10px;
}
.main-nav a {
  color: #F4F6FB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--color-accent);
  transition: width 0.2s;
  border-radius: 2px;
}
.main-nav a:hover:after,.main-nav a:focus:after { width: 100%; }

.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-left: auto;
  align-items: center;
}

.btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  background: transparent;
  color: #F4F6FB;
  border-radius: var(--radius-base);
  border: 2px solid #979DA8;
  padding: 11px 24px;
  cursor: pointer;
  transition: background 0.2s, border 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 7px rgba(0,0,0,0.04);
  min-width: 166px;
  margin-bottom: 0;
}
.btn.primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #FFFFFF;
}
.btn.secondary {
  background: #21293A;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn.accent {
  background: #232b39;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn:hover, .btn:focus {
  box-shadow: 0 4px 18px rgba(233, 79, 60, 0.19);
  color: #fff;
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.btn.secondary:hover, .btn.secondary:focus {
  background: var(--color-accent);
  color: #fff;
}
.btn.accent:hover, .btn.accent:focus {
  background: #E94F3C;
  color: #fff;
}

/* ==== HAMBURGER MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2em;
  color: var(--color-accent);
  cursor: pointer;
  margin-left: 24px;
  z-index: 1001;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 84vw;
  max-width: 360px;
  height: 100vh;
  background: #181F2A;
  box-shadow: -4px 0 18px rgba(0,0,0,0.15);
  z-index: 1003;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.55,.13,.36,1.17);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 14px 18px 10px 0;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.1em;
  cursor: pointer;
  transition: color 0.1s;
}
.mobile-menu-close:hover { color: #fff; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 26px;
}
.mobile-nav a {
  font-size: 1.13rem;
  color: #fff;
  padding: 14px 4px;
  border-radius: 5px;
  background: none;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #232b39;
  color: var(--color-accent);
}

@media (max-width: 1040px) {
  .main-nav, .cta-buttons {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
}

@media (min-width: 1041px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  header .container, .content-wrapper { flex-direction: row; align-items: center; }
}

/* HEADER WRAP */
header .container {
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
  min-height: 64px;
}

/* ==== HERO ==== */
.hero {
  width: 100%;
  background: linear-gradient(110deg,#21293A 60%,#232e40 100%);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(33,41,58,0.10);
  border-bottom: 1px solid #232e40;
  margin-bottom: 60px;
  padding: 48px 0 28px 0;
}
.hero .container,
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  font-size: 2.7rem;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 6px;
}
.hero .subheadline,
.hero p {
  color: #979DA8;
  font-size: 1.15em;
  font-weight: 400;
}

/* ==== SECTIONS, GRIDS & PATTERNS ==== */
/* Utilized flexbox in all layouts below as required */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: #232b39; border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: 24px 20px; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

@media (max-width: 768px) {
  .text-image-section,
  .content-grid,
  .feature-grid,
  .footer-nav,
  .footer-contact,
  .footer-social {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: flex-start !important;
  }
}

/* ==== HIGHLIGHT & FEATURE GRIDS ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #232B39;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 10px rgba(33,41,58,0.08);
  padding: 26px 24px 18px 24px;
  min-width: 240px;
  flex: 1 1 240px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 3px solid #E94F3C;
}
.feature-grid img { width: 36px; height: 36px; margin-bottom: 5px; filter: grayscale(45%) brightness(0.98); }
.feature-grid h3 { color: #fff; margin-bottom: 2px; font-size: 1.12rem; }
.feature-grid p { font-size: 1rem; color: #BFC3CB; }

/* News highlights*/
.news-highlights { display: flex; flex-direction: column; gap: 18px; }
.breaking-news-bar {
  width: 100%;
  background: #E94F3C;
  border-radius: var(--radius-base);
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 16px;
  margin-bottom: 6px;
  box-shadow: 0 0 0 2px #3C4455, 0 2px 7px rgba(60,68,85,0.09);
  letter-spacing: .05em;
  display: flex;
  align-items: center;
}
.featured-news-slider ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.featured-news-slider li { font-size: 1.04rem; font-family: 'Montserrat', Arial, sans-serif; }
.featured-news-slider a {
  color: #E94F3C;
  transition: color .16s;
  font-weight: 700;
}
.featured-news-slider a:hover,
.featured-news-slider a:focus { color: #fff; text-decoration: underline; }

.events-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
  margin-bottom: 14px;
}
.classifieds-snippet-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: #E94F3C;
  margin-bottom: 14px;
}

/* ==== NEWS LISTS and FILTERS ==== */
.news-list-filters,
.classifieds-filter-bar,
.calendar-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
}
.news-list-filters input,
.classifieds-filter-bar input {
  background: #232b39;
  border: 1.3px solid #363d48;
  border-radius: 8px;
  padding: 11px 18px;
  color: #F4F6FB;
  font-size: 1rem;
  margin-right: 5px;
  min-width: 200px;
  transition: border 0.16s;
}
input:focus, select:focus {
  border-color: #E94F3C;
}
.news-list-filters select,
.calendar-filters select,
.classifieds-filter-bar select {
  background: #232b39;
  border: 1.3px solid #363d48;
  border-radius: 8px;
  color: #F4F6FB;
  padding: 11px 14px;
  font-size: 1rem;
}

.news-article-list,
.classifieds-grid,
.calendar-grid-view {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 18px 0 0 0;
}
.news-article-list li,
.classifieds-grid li,
.calendar-grid-view li {
  background: #232b39;
  border-radius: var(--radius-base);
  padding: 20px 18px;
  box-shadow: var(--shadow-card);
  min-width: 235px;
  flex: 1 1 235px;
  margin-bottom: 10px;
}
.news-article-list h3 { margin-top: 0; font-size: 1.1em; letter-spacing: .04em; line-height: 1.3; }
.news-article-list a {
  color: #E94F3C;
  transition: color .13s;
  font-weight: 700;
}
.news-article-list a:hover { color: #fff; text-decoration: underline; }

.category-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 18px;
}
.category-tabs span {
  background: #232b39;
  border-radius: 6px;
  padding: 7px 16px;
  color: #BFC3CB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border: 1px solid #303849;
}
.category-tabs span:hover, .category-tabs span.active { background: #E94F3C; color: #fff; border-color: #E94F3C; }

/* ==== SERVICE, PARTNER, VALUES ==== */
.service-list, .values-list, .newsletter-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-list li {
  background: #232b39;
  border-radius: var(--radius-base);
  padding: 28px 20px 20px 22px;
  box-shadow: 0 1px 8px rgba(33,41,58,0.12);
  font-size: 1rem;
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #E94F3C;
  font-weight: 700;
  margin-top: 7px;
}

.values-list li {
  font-size: 1rem;
  color: #F4F6FB;
  padding-left: 8px;
  margin-bottom: 4px;
  position: relative;
}
.values-list li:before {
  content: '•';
  color: #E94F3C;
  font-weight: 800;
  margin-right: 10px;
}

.newsletter-benefits-list li {
  padding-left: 8px;
  position: relative;
  margin-bottom: 4px;
}
.newsletter-benefits-list li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free', Arial, sans-serif;
  font-weight: 900;
  color: #E94F3C;
  margin-right: 9px;
  display: inline-block;
}

/* ==== SIDEBAR, TAGS ==== */
.sidebar-box {
  background: #232b39;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  padding: 20px 18px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tags {
  display: flex; flex-wrap: wrap; gap: 11px;
}
.tags span {
  background: #181F2A;
  color: #E94F3C;
  border-radius: 7px;
  padding: 2px 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ==== CALENDAR and EVENTS ==== */
.calendar-grid-view li {
  color: #E94F3C;
  background: #232b39;
  font-weight: 600;
  padding-bottom: 18px;
  margin-bottom: 8px;
}

.event-highlight-card {
  background: #F4F6FB;
  color: #181F2A;
  border-radius: 14px;
  box-shadow: 0 1px 11px rgba(60,68,85,0.11);
  padding: 28px 20px;
  margin: 8px 0 12px 0;
}
.event-highlight-card h3 { color: #181F2A; }
.event-highlight-card p { color: #21293A; }

.partner-logos {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 12px;
  align-items: center;
}
.partner-logos img { height: 38px; filter: grayscale(20%); opacity: 0.8; }

/* ==== CONTACT & FAQ ==== */
.contact-info-box, .contact-details, .note {
  background: #232b39;
  border-radius: 10px;
  color: #fff;
  padding: 20px 24px;
  margin-bottom: 12px;
  box-shadow: 0 1px 12px rgba(33,41,58,0.13);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
}
.note { background: #21293A; color: #BFC3CB; font-style: italic; }

.faq-accordion h3 {
  font-size: 1.05rem;
  color: #E94F3C;
  cursor: pointer;
  margin-bottom: 7px;
  margin-top: 6px;
}
.faq-accordion p { color: #BFC3CB; margin-bottom: 13px; }

/* ==== CONFIRMATION ==== */
.confirmation {
  background: #21293A;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirmation h1 {
  color: #fff;
  margin-bottom: 18px;
}
.confirmation .btn {
  margin-top: 30px;
  min-width: 200px;
}

/* ==== FOOTER ==== */
footer {
  background: #181F2A;
  color: #BFC3CB;
  margin-top: 70px;
  padding: 38px 0 8px 0;
  font-size: 0.98rem;
}
footer .container { flex-direction: column; align-items: stretch; }
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 42px;
  margin-bottom: 18px;
}
.footer-nav nav {
  display: flex; flex-direction: column; gap: 9px;
}
.footer-nav a {
  color: #BFC3CB;
  font-size: 1rem;
  margin-bottom: 2px;
  transition: color .13s;
  letter-spacing: .04em;
}
.footer-nav a:hover { color: #E94F3C; }

.footer-contact { display: flex; flex-direction: row; gap: 20px; margin-bottom: 18px; align-items: flex-start; }
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}
.footer-social a img { height: 26px; filter: grayscale(50%) brightness(0.93); opacity: 0.8; transition: filter .16s; }
.footer-social a:hover img { filter: grayscale(0%) brightness(1.15); opacity: 1; }
.footer-copy {
  color: #485166;
  text-align: left;
  font-size: .95rem;
  margin-top: 12px;
}

/* ==== NEWSLETTER SECTION ==== */
.newsletter-section {
  background: #232b39;
  border-radius: var(--radius-base);
  margin-top: 26px;
}
.newsletter-info {
  background: none;
  font-size: 1rem;
  padding: 15px 0 7px 0;
  color: #BFC3CB;
}
.newsletter-info ul {
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 18px;
}

/* ==== MODALS, OVERLAYS, ANIMATION ==== */
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==== RESPONSIVE <768px ==== */
@media (max-width:768px) {
  html { font-size: 15px; }
  header .container, .content-wrapper, .footer-nav, .footer-contact, .footer-social {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 13px !important;
  }
  .main-nav,
  .cta-buttons { display: none !important; }
  .mobile-menu-toggle { display: block !important; }
  .section,.hero { padding: 24px 7px; min-height: unset; }
  .feature-grid, .card-container, .calendar-grid-view,.news-article-list,.classifieds-grid { flex-direction: column !important; gap: 17px !important; }
  .card,.feature-grid>div,.news-article-list li,.calendar-grid-view li,.classifieds-grid li { min-width: 0 !important; max-width: 100vw !important; }
}

/* ---- Cookie Consent Banner & Modal ---- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #232e40;
  color: #fff;
  z-index: 11000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 20px 22px 30px;
  font-size: 1rem;
  box-shadow: 0 -2px 22px rgba(33,41,58,0.22);
  animation: slideUp .5s;
}
.cookie-banner p { color: #fff; margin-bottom: 0; }
.cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  background: none;
  border: 2px solid #E94F3C;
  color: #fff;
  padding: 9px 18px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .17s, color .15s, border .15s;
}
.cookie-btn.accept {
  background: #E94F3C;
  border-color: #E94F3C;
}
.cookie-btn.accept:hover { background: #fff; color: #E94F3C;}
.cookie-btn.reject {
  background: #232b39;
  border-color: #E94F3C;
  color: #E94F3C;
}
.cookie-btn.reject:hover { background: #E94F3C; color: #fff; }
.cookie-btn.settings {
  background: #232e40;
  border-color: #979DA8;
  color: #979DA8;
}
.cookie-btn.settings:hover { border-color: #E94F3C; color: #fff; }

@media (max-width:768px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 18px 13px; gap: 11px; }
  .cookie-btn-group { gap: 10px; flex-wrap: wrap; }
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(33,41,58,0.80);
  z-index: 11001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideDown 0.45s;
}
.cookie-modal {
  background: #181F2A;
  color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 34px rgba(33,41,58,0.33);
  max-width: 410px;
  width: 95vw;
  padding: 34px 28px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal h3 { color: #fff; font-size: 1.23rem; }
.cookie-modal .modal-close-btn {
  position: absolute;
  top: 17px;
  right: 21px;
  background: none;
  border: none;
  color: #E94F3C;
  font-size: 2rem;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 13px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.cookie-category input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: #E94F3C;
  border-radius: 4px;
  background: #232b39;
  margin-right: 5px;
}
.cookie-category label {
  font-size: 1rem;
  color: #fff;
}
.cookie-category.essential label {
  color: #979DA8;
  font-style: italic;
}

/* ==== Misc. UTILS ==== */
@media (max-width:540px) {
  .btn { font-size: 0.98rem; min-width: 120px; padding: 8px 11px; }
  .footer-nav nav { gap: 5px; }
  .category-tabs span { font-size: .98rem; padding: 5px 9px; }
}
::-webkit-scrollbar-thumb { background: #222; border-radius: 6px; }
::-webkit-scrollbar-track { background: #232b39; }
::-webkit-scrollbar { width: 7px; background: #232b39; }

::-moz-selection { background: #E94F3C; color: #fff; }
::selection { background: #E94F3C; color: #fff; }

