.news-island {
  background: var(--base-3);
  border: 1px solid var(--base-border);
  border-radius: 25px;
  padding: 15px 10px 10px 10px;
  width: 100%;
  overflow: vissible;
}
.news-island__empty {
  padding: 15px;
  font-size: 14px;
  line-height: 130%;
}
.news-island__list {
  margin-top: 10px;
}
.news-island__column {
  gap: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.news-island__item {
  border: 1px solid var(--base-border);
  border-radius: 15px;
  padding: 15px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
  padding-bottom: 13px;
  position: relative;
  overflow: hidden;
}
.news-island__item:hover {
  background: var(--base-4);
  border-color: var(--hover-border);
}
.news-island__item:hover .news-island__title {
  color: var(--white);
}
.news-island__item.loading-card {
  pointer-events: none;
}
.news-island__item.loading-card::before {
  opacity: 1;
  visibility: visible;
}
.news-island__item.loading-card:after {
  display: block;
}
.news-island__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--loading-bg);
  z-index: 10;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 15px;
}
.news-island__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, var(--loading-shine)), to(transparent));
  background: linear-gradient(90deg, transparent 0%, var(--loading-shine) 50%, transparent 100%);
  z-index: 12;
  width: 200%;
  -webkit-animation: loading-shine 1.5s infinite;
          animation: loading-shine 1.5s infinite;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: none;
  border-radius: 15px;
}
.news-island__title {
  max-height: 63px;
  min-height: 63px;
  height: 63px;
  line-height: 131%;
  color: var(--font-secondary);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  overflow: hidden;
  width: 100%;
}
.news-island__row {
  font-weight: 500;
  font-size: 13px;
  line-height: 138%;
  color: var(--font-light-2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8px;
  display: none;
}

:root:not(.dark-theme) .news-island__item:after {
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, rgba(0, 0, 0, 0.08)), to(transparent));
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 50%, transparent 100%);
}

@media (max-width: 980px) {
  .news-island {
    padding-right: 0px;
    border-radius: 20px;
  }
  .news-island__title {
    font-size: 14px;
    max-height: 60px;
    min-height: 60px;
    line-height: 20px;
    line-height: 20px;
    height: 60px;
    font-weight: 400;
  }
  .news-island__row {
    margin-top: 6px;
  }
}
@media (max-width: 767px) {
  .news-island {
    border: none;
    width: calc(100% + 20px);
    margin-left: -10px;
    border-radius: 0px;
  }
  .news-island__title {
    font-size: 13px;
    max-height: 54px;
    min-height: 54px;
    line-height: 20px;
    line-height: 18px;
    height: 54px;
  }
  .news-island__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .news-island__row .circle-indicator:before {
    display: none;
  }
  .news-island-date {
    font-size: 10px;
    line-height: 16px;
  }
}