
.ic-lang-switcher{display:inline-flex;align-items:center;gap:6px;border:1px solid currentColor;border-radius:999px;padding:4px;background:transparent;color:inherit;font-family:"Advent Pro",Arial,sans-serif;text-transform:uppercase;letter-spacing:.08em;line-height:1;vertical-align:middle}
.ic-lang-switcher button{appearance:none;border:0;background:transparent;color:inherit;border-radius:999px;padding:7px 10px;font-family:inherit;font-size:12px;line-height:1;font-weight:400;letter-spacing:.08em;text-transform:uppercase;cursor:pointer;transition:background .25s ease,color .25s ease}
.ic-lang-switcher button.is-active{background:#ccff00;color:#050505}
.ic-lang-switcher button:hover{background:var(--banner-hover-bg,var(--paper,#f6f2eb));color:var(--banner-hover-color,#050505)}
@media(max-width:760px){.ic-lang-switcher{gap:4px;padding:3px}.ic-lang-switcher button{font-size:11px;padding:7px 8px}}

/* NAVBAR LOGO FINAL — mêmes dimensions que la page index, sans filtre */
.nav{
  min-height:112px !important;
  padding-top:18px !important;
  padding-bottom:18px !important;
  grid-template-columns:1fr auto 1fr !important;
  align-items:center !important;
}

.brand.brand-logo-link{
  justify-self:center !important;
  align-self:center !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex-direction:row !important;
  gap:18px !important;
  width:auto !important;
  max-width:none !important;
  height:auto !important;
  min-height:0 !important;
  padding:0 !important;
  margin:0 !important;
  line-height:1 !important;
  letter-spacing:0 !important;
  text-decoration:none !important;
  white-space:nowrap !important;
  color:#3a1d13 !important;
}

.brand.brand-logo-link .brand-knot{
  display:block !important;
  width:74px !important;
  height:74px !important;
  max-width:74px !important;
  max-height:74px !important;
  object-fit:contain !important;
  flex:0 0 auto !important;
  opacity:1 !important;
  visibility:visible !important;
  transform:none !important;
  filter:none !important;
  mix-blend-mode:normal !important;
}

.brand.brand-logo-link .brand-text{
  display:block !important;
  white-space:nowrap !important;
  font-family:"Space Grotesk", Arial, sans-serif !important;
  font-size:47px !important;
  font-weight:500 !important;
  line-height:1 !important;
  letter-spacing:-0.07em !important;
  color:#3a1d13 !important;
  text-transform:none !important;
}

.brand.brand-logo-link br{
  display:none !important;
}

@media(max-width:820px){
  .nav{
    min-height:92px !important;
    grid-template-columns:1fr auto !important;
  }
  .brand.brand-logo-link{
    justify-self:start !important;
    gap:10px !important;
  }
  .brand.brand-logo-link .brand-knot{
    width:52px !important;
    height:52px !important;
    max-width:52px !important;
    max-height:52px !important;
  }
  .brand.brand-logo-link .brand-text{
    font-size:30px !important;
  }
}

@media(max-width:520px){
  .brand.brand-logo-link .brand-text{
    display:none !important;
  }
}




/* === IC ARTICLE / NEWS MENU — synced from index === */
.links-right{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:10px !important;
}




.links-right{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:10px !important;
}





/* COPIE EXACTE INDEX — FENÊTRE ARTICLE */
.news-tool-trigger{
  position:static !important;
  width:48px !important;
  height:42px !important;
  min-width:48px !important;
  border-radius:13px !important;
  flex:0 0 auto !important;
  border:1px solid rgba(58,29,19,.25) !important;
  background:#3a1d13 !important;
  color:#f6f2eb !important;
  display:grid !important;
  place-items:center !important;
  cursor:pointer !important;
  padding:0 !important;
  transition:
    transform .3s cubic-bezier(.16,1,.3,1),
    background .25s ease,
    color .25s ease,
    border-color .25s ease !important;
}

.news-tool-trigger:hover{
  transform:translateY(-2px) !important;
  background:#efff5a !important;
  color:#111 !important;
  border-color:#efff5a !important;
}

.news-tool-trigger span{
  width:20px;
  height:20px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:7px;
}

.news-tool-trigger span::before,
.news-tool-trigger span::after,
.news-tool-trigger i::before,
.news-tool-trigger i::after{
  content:"";
  width:4px;
  height:4px;
  border-radius:50%;
  background:currentColor;
  display:block;
}

.news-tool-trigger i{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:7px;
  grid-column:1 / -1;
}

.news-tool-panel{
  position:fixed;
  top:82px;
  right:clamp(18px,3vw,42px);
  z-index:2147482450;
  width:min(640px,calc(100vw - 120px));
  max-height:calc(100vh - 158px);
  overflow:auto;
  background:rgba(18,18,18,.92);
  color:#f6f2eb;
  border:1px solid rgba(246,242,235,.10);
  border-radius:14px;
  box-shadow:0 34px 120px rgba(0,0,0,.42);
  backdrop-filter:blur(28px);
  opacity:0;
  pointer-events:none;
  transform:translateY(-10px) scale(.985);
  transition:opacity .28s ease, transform .38s cubic-bezier(.16,1,.3,1);
}

body.news-panel-open .news-tool-panel{
  opacity:1;
  pointer-events:auto;
  transform:none;
}

.news-tool-inner{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  padding:0;
}

.news-tool-left{
  padding:20px 22px 16px;
  border-bottom:1px solid rgba(246,242,235,.10);
}

.news-tool-kicker{
  font-family:"Advent Pro",Arial,sans-serif!important;
  font-size:13px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#ccff00;
  margin-bottom:10px;
  font-weight:700;
}

.news-tool-title{
  font-family:"Space Grotesk",Arial,sans-serif!important;
  font-size:clamp(26px,2.3vw,40px);
  line-height:1;
  letter-spacing:-.06em;
  margin:0;
  max-width:620px;
  color:#f6f2eb;
}

.news-tool-tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:16px;
}

.news-tool-tabs button{
  border:1px solid rgba(246,242,235,.13);
  background:rgba(246,242,235,.06);
  color:#f6f2eb;
  border-radius:8px;
  padding:9px 13px;
  font-family:"Advent Pro",Arial,sans-serif!important;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
  transition:.25s ease;
}

.news-tool-tabs button:hover,
.news-tool-tabs button.is-active{
  background:rgba(246,242,235,.16);
  color:#f6f2eb;
}

.news-tool-meta{
  display:flex;
  align-items:center;
  gap:10px;
  margin:16px 0 0;
  flex-wrap:wrap;
}

.news-clock{
  width:54px;
  height:54px;
  min-height:54px;
  padding:0;
  border-radius:50%;
  position:relative;
  background:radial-gradient(circle at 50% 50%, rgba(246,242,235,.08), rgba(246,242,235,.03));
  border:1px solid rgba(246,242,235,.18);
  color:#f6f2eb;
  flex:0 0 54px;
}

.news-clock::before{
  content:"";
  position:absolute;
  inset:7px;
  border-radius:50%;
  border:1px solid rgba(246,242,235,.09);
}

.news-clock::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#ccff00;
  transform:translate(-50%,-50%);
  box-shadow:0 0 12px rgba(204,255,0,.5);
}

.news-clock-hand{
  position:absolute;
  left:50%;
  top:50%;
  width:2px;
  transform-origin:50% 100%;
  border-radius:999px;
  background:#f6f2eb;
}

.news-clock-hour{
  height:14px;
  margin-top:-14px;
  opacity:.9;
}

.news-clock-minute{
  height:20px;
  margin-top:-20px;
  background:#ccff00;
}

.news-clock-label,
.news-date,
.news-play{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  border-radius:9px;
  padding:0 13px;
  background:rgba(246,242,235,.08);
  border:1px solid rgba(246,242,235,.12);
  color:#f6f2eb;
  font-family:"Space Grotesk",Arial,sans-serif!important;
  font-size:13px;
  line-height:1;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.news-clock-label{
  color:#ccff00;
}

.news-play{
  gap:8px;
  cursor:pointer;
  transition:.25s ease;
}

.news-play::before{
  content:"";
  width:0;
  height:0;
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
  border-left:9px solid currentColor;
}

.news-play:hover{
  background:#ccff00;
  color:#111;
  border-color:#ccff00;
  transform:translateY(-2px);
}

.news-tool-close{
  position:absolute;
  top:12px;
  right:12px;
  width:34px;
  height:34px;
  border:1px solid rgba(246,242,235,.14);
  border-radius:8px;
  background:rgba(246,242,235,.06);
  color:#f6f2eb;
  font-size:22px;
  cursor:pointer;
  transition:.25s ease;
}

.news-tool-close:hover{
  background:#f6f2eb;
  color:#111;
}

.news-tool-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
}

.news-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) 86px;
  gap:18px;
  align-items:center;
  padding:18px 22px;
  background:transparent;
  border-bottom:1px solid rgba(246,242,235,.08);
  transition:background .25s ease;
}

.news-card:hover{
  background:rgba(246,242,235,.06);
}

.news-card small{
  display:block;
  color:#ccff00;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em;
  margin-bottom:8px;
}

.news-card h3{
  font-family:"Space Grotesk",Arial,sans-serif!important;
  font-size:clamp(18px,1.4vw,24px);
  line-height:1.04;
  letter-spacing:-.045em;
  margin:0 0 7px;
  color:#f6f2eb;
}

.news-card p{
  margin:0;
  color:rgba(246,242,235,.58);
  font-size:15px;
  line-height:1.18;
  letter-spacing:-.015em;
}

.news-thumb{
  width:86px;
  aspect-ratio:1;
  border-radius:7px;
  overflow:hidden;
  background:
    radial-gradient(circle at 30% 30%,#ccff00,transparent 36%),
    linear-gradient(135deg,#b875ff,#111);
}

.news-spotify{
  display:none;
  padding:0 22px 20px;
}

.news-spotify.is-open{
  display:block;
}

.news-spotify iframe{
  width:100%;
  height:152px;
  border:0;
  border-radius:12px;
  display:block;
  background:#111;
}

.news-tool-all{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:16px 22px 20px;
  border:1px solid rgba(246,242,235,.24);
  border-radius:999px;
  padding:13px 18px;
  color:#f6f2eb;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.1em;
  transition:.25s ease;
  width:max-content;
}

.news-tool-all:hover{
  background:#ccff00;
  color:#111;
  border-color:#ccff00;
}

@media(max-width:900px){
  .news-tool-trigger{
    width:44px !important;
    height:40px !important;
  }

  .news-tool-panel{
    top:78px;
    right:18px;
    left:18px;
    width:auto;
    max-height:72vh;
  }
}

.news-tool-panel{
  position:fixed;
  top:82px;
  right:clamp(18px,3vw,42px);
  z-index:2147482450;
  width:min(640px,calc(100vw - 120px));
  max-height:calc(100vh - 158px);
  overflow:auto;
  background:rgba(18,18,18,.92);
  color:#f6f2eb;
  border:1px solid rgba(246,242,235,.10);
  border-radius:14px;
  box-shadow:0 34px 120px rgba(0,0,0,.42);
  backdrop-filter:blur(28px);
  opacity:0;
  pointer-events:none;
  transform:translateY(-10px) scale(.985);
  transition:opacity .28s ease, transform .38s cubic-bezier(.16,1,.3,1);
}

body.news-panel-open .news-tool-panel{
  opacity:1;
  pointer-events:auto;
  transform:none;
}

.news-tool-inner{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  padding:0;
}

.news-tool-left{
  padding:20px 22px 16px;
  border-bottom:1px solid rgba(246,242,235,.10);
}

.news-tool-kicker{
  font-family:"Advent Pro",Arial,sans-serif!important;
  font-size:13px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#ccff00;
  margin-bottom:10px;
  font-weight:700;
}

.news-tool-title{
  font-family:"Space Grotesk",Arial,sans-serif!important;
  font-size:clamp(26px,2.3vw,40px);
  line-height:1;
  letter-spacing:-.06em;
  margin:0;
  max-width:620px;
  color:#f6f2eb;
}

.news-tool-tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:16px;
}

.news-tool-tabs button{
  border:1px solid rgba(246,242,235,.13);
  background:rgba(246,242,235,.06);
  color:#f6f2eb;
  border-radius:8px;
  padding:9px 13px;
  font-family:"Advent Pro",Arial,sans-serif!important;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
  transition:.25s ease;
}

.news-tool-tabs button:hover,
.news-tool-tabs button.is-active{
  background:rgba(246,242,235,.16);
  color:#f6f2eb;
}

.news-tool-meta{
  display:flex;
  align-items:center;
  gap:10px;
  margin:16px 0 0;
  flex-wrap:wrap;
}

.news-clock{
  width:54px;
  height:54px;
  min-height:54px;
  padding:0;
  border-radius:50%;
  position:relative;
  background:radial-gradient(circle at 50% 50%, rgba(246,242,235,.08), rgba(246,242,235,.03));
  border:1px solid rgba(246,242,235,.18);
  color:#f6f2eb;
  flex:0 0 54px;
}

.news-clock::before{
  content:"";
  position:absolute;
  inset:7px;
  border-radius:50%;
  border:1px solid rgba(246,242,235,.09);
}

.news-clock::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#ccff00;
  transform:translate(-50%,-50%);
  box-shadow:0 0 12px rgba(204,255,0,.5);
}

.news-clock-hand{
  position:absolute;
  left:50%;
  top:50%;
  width:2px;
  transform-origin:50% 100%;
  border-radius:999px;
  background:#f6f2eb;
}

.news-clock-hour{
  height:14px;
  margin-top:-14px;
  opacity:.9;
}

.news-clock-minute{
  height:20px;
  margin-top:-20px;
  background:#ccff00;
}

.news-clock-label,
.news-date,
.news-play{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  border-radius:9px;
  padding:0 13px;
  background:rgba(246,242,235,.08);
  border:1px solid rgba(246,242,235,.12);
  color:#f6f2eb;
  font-family:"Space Grotesk",Arial,sans-serif!important;
  font-size:13px;
  line-height:1;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.news-clock-label{
  color:#ccff00;
}

.news-play{
  gap:8px;
  cursor:pointer;
  transition:.25s ease;
}

.news-play::before{
  content:"";
  width:0;
  height:0;
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
  border-left:9px solid currentColor;
}

.news-play:hover{
  background:#ccff00;
  color:#111;
  border-color:#ccff00;
  transform:translateY(-2px);
}

.news-tool-close{
  position:absolute;
  top:12px;
  right:12px;
  width:34px;
  height:34px;
  border:1px solid rgba(246,242,235,.14);
  border-radius:8px;
  background:rgba(246,242,235,.06);
  color:#f6f2eb;
  font-size:22px;
  cursor:pointer;
  transition:.25s ease;
}

.news-tool-close:hover{
  background:#f6f2eb;
  color:#111;
}

.news-tool-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
}

.news-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) 86px;
  gap:18px;
  align-items:center;
  padding:18px 22px;
  background:transparent;
  border-bottom:1px solid rgba(246,242,235,.08);
  transition:background .25s ease;
}

.news-card:hover{
  background:rgba(246,242,235,.06);
}

.news-card small{
  display:block;
  color:#ccff00;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em;
  margin-bottom:8px;
}

.news-card h3{
  font-family:"Space Grotesk",Arial,sans-serif!important;
  font-size:clamp(18px,1.4vw,24px);
  line-height:1.04;
  letter-spacing:-.045em;
  margin:0 0 7px;
  color:#f6f2eb;
}

.news-card p{
  margin:0;
  color:rgba(246,242,235,.58);
  font-size:15px;
  line-height:1.18;
  letter-spacing:-.015em;
}

.news-thumb{
  width:86px;
  aspect-ratio:1;
  border-radius:7px;
  overflow:hidden;
  background:
    radial-gradient(circle at 30% 30%,#ccff00,transparent 36%),
    linear-gradient(135deg,#b875ff,#111);
}

.news-spotify{
  display:none;
  padding:0 22px 20px;
}

.news-spotify.is-open{
  display:block;
}

.news-spotify iframe{
  width:100%;
  height:152px;
  border:0;
  border-radius:12px;
  display:block;
  background:#111;
}

.news-tool-all{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:16px 22px 20px;
  border:1px solid rgba(246,242,235,.24);
  border-radius:999px;
  padding:13px 18px;
  color:#f6f2eb;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.1em;
  transition:.25s ease;
  width:max-content;
}

.news-tool-all:hover{
  background:#ccff00;
  color:#111;
  border-color:#ccff00;
}

@media(max-width:900px){
  .news-tool-trigger{
    width:44px !important;
    height:40px !important;
  }

  .news-tool-panel{
    top:78px;
    right:18px;
    left:18px;
    width:auto;
    max-height:72vh;
  }
}


/* Copie visuelle exacte du panneau Latest News de index.html */
.news-tool-panel{
  position:fixed !important;
  top:82px !important;
  right:clamp(18px,3vw,42px) !important;
  z-index:2147482450 !important;
  width:min(768px,calc(100vw - 120px)) !important;
  max-height:calc(100vh - 116px) !important;
  overflow:hidden !important;
  background:rgba(18,18,18,.92) !important;
  color:#f6f2eb !important;
  border:1px solid rgba(246,242,235,.10) !important;
  border-radius:14px !important;
  box-shadow:0 34px 120px rgba(0,0,0,.42) !important;
  backdrop-filter:blur(28px) !important;
}
body.news-panel-open .news-tool-panel{
  opacity:1 !important;
  pointer-events:auto !important;
  transform:none !important;
}
.news-tool-inner{display:grid !important;grid-template-columns:1fr !important;gap:0 !important;padding:0 !important;}
.news-tool-left{padding:24px 26px 20px !important;border-bottom:1px solid rgba(246,242,235,.10) !important;}
.news-tool-kicker{color:#f6f2eb !important;font-size:13px !important;letter-spacing:.18em !important;margin-bottom:10px !important;font-weight:400 !important;}
.news-tool-title{color:#f6f2eb !important;font-size:clamp(30px,2.45vw,40px) !important;line-height:1 !important;letter-spacing:-.065em !important;max-width:620px !important;margin:0 !important;}
.news-tool-tabs{display:flex !important;gap:8px !important;flex-wrap:wrap !important;margin-top:18px !important;}
.news-tool-tabs button{border:1px solid rgba(246,242,235,.14) !important;background:rgba(246,242,235,.07) !important;color:#f6f2eb !important;border-radius:8px !important;padding:10px 15px !important;font-size:12px !important;letter-spacing:.12em !important;}
.news-tool-tabs button.is-active,.news-tool-tabs button:hover{background:rgba(246,242,235,.16) !important;color:#f6f2eb !important;}
.news-tool-meta{display:flex !important;align-items:center !important;gap:10px !important;margin:18px 0 0 !important;flex-wrap:wrap !important;}
.news-clock{display:none !important;}
.news-clock-label,.news-date,.news-play{display:inline-flex !important;align-items:center !important;justify-content:center !important;min-height:45px !important;border-radius:9px !important;padding:0 16px !important;background:rgba(246,242,235,.08) !important;border:1px solid rgba(246,242,235,.12) !important;color:#f6f2eb !important;font-family:"Space Grotesk",Arial,sans-serif!important;font-size:14px !important;line-height:1 !important;letter-spacing:.08em !important;text-transform:uppercase !important;}
.news-clock-label{color:#f6f2eb !important;min-width:140px !important;}
.news-date{min-width:130px !important;}
.news-play{gap:8px !important;min-width:90px !important;}
.news-play::before{content:"" !important;width:10px !important;height:12px !important;border:0 !important;background:rgba(246,242,235,.30) !important;display:inline-block !important;}
.news-tool-close{top:15px !important;right:15px !important;width:40px !important;height:40px !important;border-radius:8px !important;background:rgba(246,242,235,.06) !important;color:#f6f2eb !important;border:1px solid rgba(246,242,235,.14) !important;font-size:22px !important;}
.news-tool-grid{display:grid !important;grid-template-columns:1fr !important;gap:0 !important;}
.news-card{display:block !important;grid-template-columns:1fr !important;padding:22px 26px !important;background:transparent !important;border-bottom:1px solid rgba(246,242,235,.08) !important;min-height:auto !important;}
.news-card:hover{background:rgba(246,242,235,.04) !important;}
.news-card small{color:#f6f2eb !important;font-size:12px !important;text-transform:uppercase !important;letter-spacing:.16em !important;margin-bottom:8px !important;font-weight:400 !important;}
.news-card h3{color:#f6f2eb !important;font-size:clamp(20px,1.6vw,24px) !important;line-height:1.08 !important;letter-spacing:-.045em !important;margin:0 0 7px !important;max-width:720px !important;}
.news-card p{color:rgba(246,242,235,.74) !important;font-size:16px !important;line-height:1.18 !important;letter-spacing:-.015em !important;margin:0 !important;max-width:720px !important;}
.news-thumb,.article-thumb,.news-card img{display:none !important;}
.news-spotify,.news-tool-all{display:none !important;}
@media(max-width:900px){.news-tool-panel{top:78px !important;right:18px !important;left:18px !important;width:auto !important;max-height:72vh !important;overflow:auto !important}.news-tool-left{padding:22px 22px 18px !important}.news-card{padding:20px 22px !important}}


/* BOUTON NEWS — copie exacte index.html */
.links-right{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:10px !important;
}

.news-tool-trigger{
  position:static !important;
  top:auto !important;
  right:auto !important;
  width:48px !important;
  height:42px !important;
  min-width:48px !important;
  border-radius:13px !important;
  flex:0 0 auto !important;
  border:1px solid rgba(58,29,19,.25) !important;
  background:#3a1d13 !important;
  color:#f6f2eb !important;
  display:grid !important;
  place-items:center !important;
  cursor:pointer !important;
  padding:0 !important;
  overflow:hidden !important;
  transform:none !important;
  transition:
    transform .3s cubic-bezier(.16,1,.3,1),
    background .25s ease,
    color .25s ease,
    border-color .25s ease !important;
}

.news-tool-trigger:hover{
  transform:translateY(-2px) !important;
  background:#efff5a !important;
  color:#111 !important;
  border-color:#efff5a !important;
}

.news-tool-trigger span{
  position:relative !important;
  width:24px !important;
  height:18px !important;
  display:block !important;
  transform:none !important;
  animation:none !important;
}

.news-tool-trigger span::before,
.news-tool-trigger span::after,
.news-tool-trigger i::before{
  content:"" !important;
  position:absolute !important;
  top:50% !important;
  width:5px !important;
  height:5px !important;
  border-radius:50% !important;
  background:currentColor !important;
  opacity:.72 !important;
  transform:translateY(-50%) !important;
  animation:newsDotMove 1.25s ease-in-out infinite !important;
  box-shadow:none !important;
}

.news-tool-trigger span::before{
  left:2px !important;
  animation-delay:0s !important;
}

.news-tool-trigger i::before{
  left:9.5px !important;
  animation-delay:.16s !important;
}

.news-tool-trigger span::after{
  left:17px !important;
  animation-delay:.32s !important;
}

.news-tool-trigger i,
.news-tool-trigger i::after{
  display:block !important;
  width:0 !important;
  height:0 !important;
  background:transparent !important;
  box-shadow:none !important;
}

@keyframes newsDotMove{
  0%,100%{
    transform:translateY(-50%) translateX(0) scale(1);
    opacity:.62;
  }
  35%{
    transform:translateY(-50%) translateX(5px) scale(1.35);
    opacity:1;
  }
  70%{
    transform:translateY(-50%) translateX(-1px) scale(1);
    opacity:.82;
  }
}

@media(max-width:900px){
  .news-tool-trigger{
    position:static !important;
    width:44px !important;
    height:40px !important;
    min-width:44px !important;
  }
}
