/*-------------------------
  news
---------------------------*/
.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 3rem;
  padding-bottom: 15rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    width: 100%;
    height: 40rem;
  }
}

.CMS-NEWS-LINK {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.44;
  margin-bottom: 2rem;
}

.CMS-NEWS-TIME {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.CMS-NEWS-MORE-READ {
  background-color: var(--org);
  width: 38rem;
  height: 7rem;
  border: none;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--black);
  display: grid;
  place-content: center;
  position: absolute;
  transform: translateX(-50%);
  bottom: 0;
  left: 50%;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .CMS-NEWS-MORE-READ:hover {
    opacity: 0.6;
  }
}

@media (max-width: 767px) {
  .CMS-NEWS-MORE-READ {
    width: 100%;
    height: 8rem;
  }
}
