@charset "UTF-8";

/* =====================================================
  NEWS LIST
===================================================== */
.tg-news__list{
  max-width:860px;
  margin:48px auto 0;
  border-top:1px solid var(--tg-line);
}

.tg-news__item{
  border-bottom:1px solid var(--tg-line);
}

.tg-news__link{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:24px;
  align-items:center;
  padding:22px 0;
}

.tg-news__date{
  color:var(--tg-muted);
  font-size:13px;
}

.tg-news__title{
  font-size:16px;
  font-weight:500;
  line-height:1.8;
}

@media (max-width:768px){
  .tg-news__link{
    grid-template-columns:1fr;
    gap:8px;
  }
}


/* =====================================================
  REVEAL
===================================================== */
.js-reveal{
  opacity: 1;
}

.reveal-item{
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity .9s ease,
    transform .9s ease;
  will-change: opacity, transform;
}

.reveal-item.is-visible{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-item[data-delay="1"]{ transition-delay: .08s; }
.reveal-item[data-delay="2"]{ transition-delay: .16s; }
.reveal-item[data-delay="3"]{ transition-delay: .24s; }

@media (prefers-reduced-motion: reduce){
  .reveal-item{
    opacity: 1;
    transform: none;
    transition: none;
  }
}