:root {
  --charcoal: #22242a;
  --charcoal-2: #15171c;
  --ink: #172033;
  --muted: #5f6978;
  --line: #e5e8ef;
  --surface: #ffffff;
  --soft: #f6f7fb;
  --purple: #9c1aa7;
  --blue: #46aee8;
  --green: #83c83d;
  --yellow: #ffcf25;
  --orange: #f2492c;
  --radius: 24px;
  --shadow: 0 18px 45px rgba(21, 23, 28, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 1rem; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 6vw, 5rem); letter-spacing: -0.06em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); letter-spacing: -0.035em; }
h3 { font-size: 1.2rem; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--charcoal);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229,232,239,0.9);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-logo { width: 52px; height: 52px; border-radius: 16px; object-fit: cover; box-shadow: 0 8px 22px rgba(0,0,0,.12); }
.brand-text { font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.98rem; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 10px 12px;
  border-radius: 999px;
  color: #364052;
  font-weight: 650;
  font-size: 0.95rem;
}
.nav-link:hover, .nav-link.active { background: var(--soft); color: var(--charcoal); }
.nav-link.active { box-shadow: inset 0 0 0 1px var(--line); }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.lang-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  color: var(--muted);
  padding: 5px 6px;
  border-radius: 999px;
}
.lang-btn.active { color: #fff; background: var(--charcoal); }
.lang-divider { color: #a8afbd; font-weight: 700; }
.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 700;
  gap: 8px;
  align-items: center;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  content: "";
}
.nav-toggle-bars::before { transform: translateY(-6px); }
.nav-toggle-bars::after { transform: translateY(4px); }

.hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(156,26,167,.45), transparent 26%),
    radial-gradient(circle at 82% 20%, rgba(70,174,232,.35), transparent 24%),
    radial-gradient(circle at 75% 85%, rgba(131,200,61,.25), transparent 28%),
    linear-gradient(135deg, var(--charcoal-2), var(--charcoal));
  color: #fff;
  overflow: hidden;
}
.hero h1, .hero h2 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.84); }
.hero-grid { min-height: 680px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; padding: 84px 0; }
.kicker {
  display: inline-flex;
  margin: 0 0 16px;
  color: var(--purple);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.hero .kicker { color: var(--yellow); }
.hero-slogan { font-size: clamp(1.25rem, 2.3vw, 2rem); max-width: 800px; margin-bottom: 1rem; font-weight: 650; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: var(--muted); max-width: 760px; }
.lead.small { font-size: 1.08rem; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.14); }
.btn-primary { background: linear-gradient(135deg, var(--purple), var(--orange)); color: #fff; }
.btn-secondary { background: #fff; color: var(--charcoal); border-color: rgba(255,255,255,.25); }
.btn-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.cta-band .btn-secondary { border-color: var(--line); }
.hero-logo-card {
  justify-self: center;
  width: min(410px, 100%);
  padding: 28px;
  border-radius: 34px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
}
.hero-logo-card img { border-radius: 26px; width: 100%; }
.color-dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.color-dots span { width: 12px; height: 12px; border-radius: 999px; display: block; }
.color-dots span:nth-child(1) { background: var(--purple); }
.color-dots span:nth-child(2) { background: var(--blue); }
.color-dots span:nth-child(3) { background: var(--green); }
.color-dots span:nth-child(4) { background: var(--yellow); }
.color-dots span:nth-child(5) { background: var(--orange); }

.page-hero {
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(70,174,232,.28), transparent 26%),
    radial-gradient(circle at 86% 80%, rgba(255,207,37,.18), transparent 22%),
    linear-gradient(135deg, var(--charcoal-2), var(--charcoal));
}
.page-hero h1 { color: #fff; max-width: 920px; }
.page-hero .lead { color: rgba(255,255,255,.82); }
.page-hero-inner { padding: 92px 0 74px; }

.section { padding: 76px 0; }
.section-soft { background: var(--soft); }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.section-heading.left { text-align: left; margin-left: 0; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: start; }
.split.reverse { grid-template-columns: 1.05fr .95fr; }
.prose p, .text-block p, .project-panel p, .contact-card p, .method-box p { color: var(--muted); font-size: 1.04rem; }
.content-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.text-block, .card, .notice-card, .project-panel, .contact-card, .method-box, .news-card, .event-card, .accent-panel, .social-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(23,32,51,.06);
}
.text-block { padding: 32px; }
.card { padding: 28px; position: relative; overflow: hidden; }
.card::before, .news-card::before, .event-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--purple);
}
.card:nth-child(5n+2)::before, .news-card:nth-child(5n+2)::before, .event-card:nth-child(5n+2)::before { background: var(--blue); }
.card:nth-child(5n+3)::before, .news-card:nth-child(5n+3)::before, .event-card:nth-child(5n+3)::before { background: var(--green); }
.card:nth-child(5n+4)::before { background: var(--yellow); }
.card:nth-child(5n+5)::before { background: var(--orange); }
.card p { color: var(--muted); }
.card-grid { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.focus-grid .card { min-height: auto; }
.focus-grid .card h3 { word-break: break-word; hyphens: auto; line-height: 1.3; }
.accent-panel {
  padding: 36px;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg, var(--purple), var(--blue), var(--green), var(--yellow), var(--orange)) border-box;
  border: 2px solid transparent;
}
.accent-panel.wide { max-width: 920px; }
.accent-panel p { color: var(--muted); }
.notice-card { padding: 34px; }
.notice-card.slim { max-width: 820px; }
.notice-card .kicker { margin-bottom: 10px; }
.mini-list { display: flex; flex-wrap: wrap; gap: 12px; align-content: start; }
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 750;
}
.chip:nth-child(5n+1) { border-color: rgba(156,26,167,.28); color: var(--purple); }
.chip:nth-child(5n+2) { border-color: rgba(70,174,232,.36); color: #147bad; }
.chip:nth-child(5n+3) { border-color: rgba(131,200,61,.36); color: #4a831c; }
.chip:nth-child(5n+4) { border-color: rgba(255,207,37,.56); color: #9a7100; }
.chip:nth-child(5n+5) { border-color: rgba(242,73,44,.34); color: #b6331e; }
.method-box { padding: 36px; max-width: 900px; }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.check-list li { padding-left: 32px; position: relative; color: var(--muted); font-size: 1.03rem; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: inset 0 0 0 5px #fff;
  border: 2px solid rgba(70,174,232,.3);
}
.project-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.project-panel { padding: 32px; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.news-card { padding: 30px; position: relative; min-height: 260px; }
.card-meta { color: var(--purple); font-weight: 850; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.events-list { display: grid; gap: 22px; }
.event-card { position: relative; display: grid; grid-template-columns: 170px 1fr; gap: 24px; padding: 28px; align-items: start; }
.event-date { display: inline-flex; align-items: center; justify-content: center; min-height: 74px; padding: 12px; border-radius: 18px; background: var(--charcoal); color: #fff; font-weight: 850; text-align: center; }
.event-location { color: var(--purple); font-weight: 750; }
.cta-band { background: var(--charcoal); color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.78); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-inner .btn-secondary { background: #fff; color: var(--charcoal); }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: start; }
.contact-card, .social-box { padding: 32px; }
.contact-card.highlight { background: var(--charcoal); color: #fff; }
.contact-card.highlight h2 { color: #fff; }
.contact-card.highlight p { color: rgba(255,255,255,.78); }
.info-list { margin: 0; display: grid; gap: 14px; }
.info-row { display: grid; grid-template-columns: 180px 1fr; gap: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
dt { color: var(--muted); font-weight: 760; }
dd { margin: 0; font-weight: 760; overflow-wrap: anywhere; }
dd a { color: #146ea0; }
.social-links-large { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.social-links-large a { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; font-weight: 750; background: #fff; }

.site-footer { background: var(--charcoal-2); color: rgba(255,255,255,.78); padding: 56px 0 24px; }
.site-footer a { color: rgba(255,255,255,.92); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .9fr .8fr; gap: 32px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { width: 58px; height: 58px; object-fit: cover; border-radius: 18px; }
.footer-brand strong { color: #fff; letter-spacing: .06em; text-transform: uppercase; }
.footer-brand p, .footer-details p, .footer-social p { margin: 0 0 8px; }
.footer-tagline { margin-top: 16px; color: rgba(255,255,255,.68); }
.footer-heading { color: #fff; font-weight: 800; }
.footer-social { display: flex; flex-direction: column; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 20px; font-size: .92rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .nav-link { border-radius: 14px; padding: 12px 14px; }
  .language-switch { margin-left: 0; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 64px 0; }
  .hero-logo-card { width: min(320px, 100%); justify-self: start; }
  .split, .split.reverse, .content-grid, .project-columns, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .card-grid.four, .card-grid.three, .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1120px); }
  .header-inner { min-height: 70px; gap: 10px; }
  .brand-logo { width: 44px; height: 44px; border-radius: 14px; }
  .brand-text { display: none; }
  .site-nav { top: 70px; left: 14px; right: 14px; }
  .language-switch { padding: 4px 6px; }
  .hero-grid { padding: 46px 0; }
  .page-hero-inner { padding: 64px 0 54px; }
  .section { padding: 54px 0; }
  .card-grid.four, .card-grid.three, .news-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 1fr; }
  .event-date { justify-content: flex-start; min-height: auto; width: fit-content; }
  .info-row { grid-template-columns: 1fr; gap: 2px; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .text-block, .card, .notice-card, .project-panel, .contact-card, .method-box, .news-card, .event-card, .accent-panel, .social-box { padding: 24px; border-radius: 20px; }
}

/* ===== NEWS CARDS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(23,32,51,.06);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(23,32,51,.12);
}

/* Left accent stripe (matches card style) */
.news-card:nth-child(5n+1) { border-left: 6px solid var(--purple); }
.news-card:nth-child(5n+2) { border-left: 6px solid var(--blue); }
.news-card:nth-child(5n+3) { border-left: 6px solid var(--green); }

/* Image area */
.news-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.news-img-gradient {
  width: 100%;
  height: 100%;
}
.news-img-gradient--purple {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
}
.news-img-gradient--blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
}
.news-img-gradient--green {
  background: linear-gradient(135deg, var(--green) 0%, var(--yellow) 100%);
}
.news-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card body */
.news-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-meta {
  margin: 0 0 10px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--purple);
}
.news-body h3 {
  margin: 0 0 12px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.3;
  color: var(--ink);
}
.news-body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.65;
  flex: 1;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--purple);
  font-weight: 800;
  font-size: .93rem;
  border-bottom: 2px solid var(--purple);
  padding-bottom: 2px;
  width: fit-content;
  transition: opacity .15s;
}
.news-link:hover { opacity: .7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .news-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 680px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-img-wrap { height: 180px; }
  .news-body { padding: 20px 22px 24px; }
}

/* ===== HEADER NAV FIX — uzun menü öğeleri için ===== */
@media (min-width: 981px) {
  .site-nav { flex-wrap: nowrap; gap: 2px; }
  .nav-link { padding: 10px 10px; font-size: .88rem; white-space: nowrap; }
  .brand-text { font-size: .9rem; }
}
@media (min-width: 1080px) {
  .nav-link { padding: 10px 12px; font-size: .95rem; }
}

/* ===== FOOTER SOCIAL links düzeltmesi ===== */
.footer-social { display: flex; flex-direction: column; gap: 6px; }
.footer-social a { display: inline-block; }

/* ===== SECTION HEADER (news page h2 yerine h1 kullanılıyor — normalize) ===== */
.section-heading h1 { font-size: clamp(1.7rem, 3vw, 2.6rem); letter-spacing: -0.035em; }

/* ===== CARD h3 overflow fix ===== */
.card h3 { word-break: break-word; hyphens: auto; }

/* ===== CTA band small screen ===== */
@media (max-width: 680px) {
  .cta-band .btn { width: auto; }
}
/* Hide Google Translate UI */
#google_translate_element,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
.goog-logo-link,
.goog-te-combo {
  display: none !important;
}

body {
  top: 0 !important;
}

body > .skiptranslate {
  display: none !important;
}
.project-photo-card {
  background: linear-gradient(135deg, rgba(156, 26, 167, 0.12), rgba(0, 167, 157, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 28px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.project-photo-card img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 900px) {
  .project-photo-card {
    min-height: 260px;
    padding: 22px;
  }

  .project-photo-card img {
    max-width: 260px;
  }
}

/* Mobile hero logo fix */
@media (max-width: 980px) {
  .home-hero .hero-grid,
  .hero .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    overflow: hidden;
  }

  .home-hero .hero-content,
  .hero .hero-content {
    width: 100%;
  }

  .home-hero .hero-logo-card,
  .hero .hero-logo-card {
    justify-self: center !important;
    width: min(360px, calc(100vw - 48px)) !important;
    max-width: 360px;
    margin: 34px auto 0 !important;
    padding: 22px !important;
    display: block !important;
    text-align: center;
    box-sizing: border-box;
  }

  .home-hero .hero-logo-card img,
  .hero .hero-logo-card img {
    width: 100% !important;
    max-width: 280px;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 24px;
  }

  .home-hero .color-dots,
  .hero .color-dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    gap: 10px;
    margin: 18px auto 0 !important;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .home-hero .hero-logo-card,
  .hero .hero-logo-card {
    width: min(320px, calc(100vw - 32px)) !important;
    max-width: 320px;
    padding: 18px !important;
    border-radius: 28px;
  }

  .home-hero .hero-logo-card img,
  .hero .hero-logo-card img {
    max-width: 245px;
    border-radius: 20px;
  }
}

/* Language switch flags - desktop + mobile */
.language-switch {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.language-switch .lang-btn {
  width: 48px !important;
  height: 38px !important;
  min-width: 48px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  font-size: 0 !important;
  line-height: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

.language-switch .lang-btn::before {
  content: "" !important;
  width: 28px !important;
  height: 20px !important;
  display: block !important;
  border-radius: 4px !important;
  background-size: cover !important;
  background-position: center !important;
  box-shadow: 0 0 0 1px rgba(0,0,0,.18) !important;
}

/* Norway flag */
.language-switch .lang-btn:first-of-type::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 16'%3E%3Crect width='22' height='16' fill='%23BA0C2F'/%3E%3Crect y='6' width='22' height='4' fill='white'/%3E%3Crect x='6' width='4' height='16' fill='white'/%3E%3Crect y='7' width='22' height='2' fill='%2300205B'/%3E%3Crect x='7' width='2' height='16' fill='%2300205B'/%3E%3C/svg%3E") !important;
}

/* UK flag */
.language-switch .lang-btn:last-of-type::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 36'%3E%3Crect width='60' height='36' fill='%23012169'/%3E%3Cpath d='M0 0L60 36M60 0L0 36' stroke='white' stroke-width='7'/%3E%3Cpath d='M0 0L60 36M60 0L0 36' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30 0v36M0 18h60' stroke='white' stroke-width='12'/%3E%3Cpath d='M30 0v36M0 18h60' stroke='%23C8102E' stroke-width='7'/%3E%3C/svg%3E") !important;
}

.language-switch .lang-btn.active {
  background: #20242c !important;
}

.language-switch .lang-divider {
  font-size: 1rem !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  opacity: .45 !important;
}
