.home-live-news {
  display: flex;
  align-items: center;
  gap: 14px;

  font-size: 14px;
  letter-spacing: 1.96px;
  font-weight: 800;
  font-family: var(--nunito);

  color: var(--op-color-bio-false);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.home-live-news__circle {
  --size: 14px;
  width: var(--size);
  height: var(--size);
  display: block;
  background-color: var(--op-color-bio-false);
  border-radius: 50%;

  animation-name: flickering;
  animation-play-state: running;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-duration: 1s;
}

@keyframes flickering {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
@media screen and (min-width: 1023.9px) {
  .home-live-news {
    margin-bottom: 14%;
  }
}
*/
@media screen and (min-width: 1279.9px) {
  .home-live-news {
    margin-bottom: 0%;
  }
}

@media screen and (max-width: 767.9px) {
  .home-extra-article-content {
    margin-top: 14px;
  }
}

@media screen and (min-width: 768px) {

  /*
  .home-extra-article-content {
    margin-top: 14px;
  }
  */

}
