:root {
  --header-height: 75px;
}
@font-face {
  font-family: "openSans-Light";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/font/open-sans/OpenSans-Light.woff2") format("woff2");
}
@font-face {
  font-family: "openSans-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/open-sans/OpenSans-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "openSans-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/open-sans/OpenSans-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "openSans-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/open-sans/OpenSans-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-Thin";
  font-style: normal;
  font-weight: 100;
  src: url("/assets/font/IvyMode/IvyMode-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-Light";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/font/IvyMode/IvyMode-Light.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/IvyMode/IvyMode-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/IvyMode/IvyMode-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/IvyMode/IvyMode-Bold.woff2") format("woff2");
}
.news-detail {
  padding: 0 0 40px 0;
}
.news-detail__image {
  margin-left: -30px;
  width: calc(100% + 60px);
}
.news-detail__content {
  padding-top: 42px;
}
.news-detail__title {
  margin-bottom: 20px;
  color: #285F5E;
  --font-size: 32px;
  --font-size-rem: 2rem;
  --line-height: 42px;
  --line-height-rem: 2.625rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "IvyMode-Regular";
  font-weight: 400;
}
.news-detail__date {
  display: flex;
  margin-bottom: 23px;
  color: #285F5E;
}
.news-detail__text {
  margin-bottom: 50px;
}
.news-detail__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 50px;
}
.news-detail__social .social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.news-detail__social .social__title {
  margin-right: 20px;
  color: #285F5E;
  --font-size: 21px;
  --font-size-rem: 1.3125rem;
  --line-height: 27px;
  --line-height-rem: 1.6875rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "IvyMode-Regular";
  font-weight: 400;
}
.news-detail__social .social__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 6px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: #fff;
  transition: opacity 0.3s;
}
.news-detail__social .social__item.-color {
  background-color: #285F5E;
}
.news-detail__social .social__item:hover {
  opacity: 0.9;
}
.news-detail__images {
  display: grid;
  margin-bottom: 72px;
  width: 100%;
}
.news-detail__images__image {
  height: 145px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.news-detail .next-news {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
.news-detail .next-news__item {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 36px 0 44px;
  width: 100%;
  height: 138px;
  background-color: #fff;
}
.news-detail .next-news__item:hover .next-news__image {
  opacity: 1;
}
.news-detail .next-news__item:hover .next-news__title {
  color: #fff;
}
.news-detail .next-news__title {
  z-index: 1;
  padding-right: 10px;
  color: #285F5E;
  --font-size: 26px;
  --font-size-rem: 1.625rem;
  --line-height: 34px;
  --line-height-rem: 2.125rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "IvyMode-Regular";
  font-weight: 400;
  transition: color 0.3s;
}
.news-detail .next-news__image {
  z-index: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.3s;
}
.news-detail .next-news svg {
  z-index: 1;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 40px;
  transition: color 0.3s, transform 0.3s;
}
@media only screen and (min-width: 768px) {
  :root {
    --header-height: 80px;
  }
  .news-detail__images {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 95px;
  }
}
@media only screen and (min-width: 1024px) {
  :root {
    --header-height: 101px;
  }
  .news-detail {
    padding: 75px 0 0 0;
  }
  .news-detail .container {
    align-items: center;
    max-width: 1030px;
  }
  .news-detail__image {
    margin-bottom: 64px;
    width: 816px;
  }
  .news-detail__content {
    padding: 0 0 0 105px;
    width: 816px;
  }
  .news-detail__title {
    margin-bottom: 42px;
    padding-right: 50px;
    --font-size: 55px;
    --font-size-rem: 3.4375rem;
    --line-height: 70px;
    --line-height-rem: 4.375rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .news-detail__date {
    margin-bottom: 30px;
  }
  .news-detail__text {
    margin-bottom: 0;
  }
  .news-detail__text p {
    margin-bottom: 30px;
    --font-size: 18px;
    --font-size-rem: 1.125rem;
    --line-height: 28px;
    --line-height-rem: 1.75rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .news-detail__social {
    margin: 54px 0 150px 0;
  }
  .news-detail__images {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 95px;
  }
  .news-detail .next-news {
    flex-direction: row;
    justify-content: space-between;
    gap: 26px;
  }
  .news-detail .next-news__item {
    justify-content: space-between;
    align-items: center;
    padding: 0 42px 0 60px;
    width: 50%;
    height: 138px;
  }
  .news-detail .next-news__item:hover svg {
    transform: translateX(-30px);
  }
  .news-detail .next-news__item:hover svg path {
    fill: #fff;
  }
  .news-detail .next-news__title {
    padding-right: 0;
    width: 92%;
  }
  .news-detail .next-news svg {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .news-detail__images {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    row-gap: 20px;
  }
}