@charset "UTF-8";

/* ------------------------
     single-news
------------------------*/
.single-news {
     margin-top: 4rem;
}

.single-news__title {
     padding: 0 0 1.6rem;
     border-bottom: 1px solid #08131a;
}

.single-news__title h1 {
     font-size: 2.4rem;
     line-height: 1.4;
}

.single-news__title h3 {
     font-size: clamp(2rem, 5vw, 3.2rem);
     line-height: clamp(2.8rem, 5vw, 4rem);
}

.entry-content {
     display: flex;
     flex-flow: column;
     gap: 3.6rem;
     margin-top: 3.2rem;
     -webkit-font-feature-settings: initial;
     font-feature-settings: initial;
}

.entry-content h4 {
     font-size: 1.8rem;
}

.entry-content figure {
     max-width: 35.6rem;
     width: 100%;
     margin: 0 auto;
}

.entry-content figure img {
     width: 100%;
     height: auto;
     display: block;
}

.entry-content .video-block {
     width: 100%;
     aspect-ratio: 16 / 9;
}

.entry-content .video-block iframe {
     width: 100%;
     height: 100%;
     display: block;
     border: 0;
}

.single-news__pager {
     margin-top: 6rem;
     padding-top: 2.4rem;
     border-top: 1px solid #08131a;
}

.single-news__inner-pager {
     justify-content: space-between;
}

.entry-content a,
.single-news__inner-pager a {
     color: #08131a;
}

.entry-content a {
     text-decoration: none;
     border-bottom: 0.1rem solid #08131a;
     padding-bottom: 0.2rem;
}

.entry-content a:hover {
     border: none;
}

.single-news__inner-pager a {
     font-size: 1.4rem;
     line-height: 1.4rem;
     text-decoration: none;
}

.pager-prev,
.pager-next {
     background: linear-gradient(#08131a, #08131a) 0 100% / 0 1px no-repeat;
     transition: background-size .25s cubic-bezier(.165, .84, .44, 1);
}

.pager-prev:hover,
.pager-next:hover {
     background-size: 100% 1px;
}

.single-news__inner-pager .arrow-prev,
.single-news__inner-pager .arrow-next {
     position: relative;
     display: inline-block;
     width: 40px;
     height: 1px;
     margin-right: 0.8rem;
     border-radius: 9999px;
     background-color: #08131a;
}

.single-news__inner-pager .arrow-prev::before {
     content: "";
     position: absolute;
     left: 0;
     width: 8px;
     height: 1px;
     border-radius: 9999px;
     background-color: #08131a;
     top: calc(50% - 0.5px);
     transform: rotate(-34deg);
     transform-origin: 0.5px 50%;
}

.single-news__inner-pager .arrow-next::before {
     content: "";
     position: absolute;
     top: calc(50% - 0.5px);
     right: 0;
     width: 8px;
     height: 1px;
     border-radius: 9999px;
     background-color: #08131a;
     transform: rotate(34deg);
     transform-origin: calc(100% - 0.5px) 50%;
}

.single-news .entry-content figure figcaption,
.single-news .entry-content .wp-caption-text {
     display: none;
}

@media (max-width: 768px) {
     .single-news__title {
          padding: 0 0 2.4rem;
     }

     .single-news {
          margin-top: 3.2rem;
     }

     .entry-content p {
          font-size: 1.6rem;
          line-height: 2.4rem;
     }
}