.news-page {
    padding-bottom: 80px;
    background-color: #fafafa;
    overflow: auto;
    margin-top: 68px;
}

.news-page-container {
    padding: 0 120px;
    max-width: 1440px;
    margin: auto;
}

.news-page h3 {
    font-size: 31.2px;
    line-height: 66px;
    text-align: center;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #00141d;
    margin-bottom: 0;
}

.news-page-underline {
    width: 140px;
    height: 0px;
    border-bottom: 4px solid #00141d;
    margin: 0 auto;
    margin-bottom: 32px;
}
.news-list-data {
    width: 100%;
}
.news-page-box {
    font-size: 16px;
    line-height: 33px;
    color: #00141d;
    width: 100%;
    margin: 0 auto;
    padding: 28px 13%;
    background: #f7fdff;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 2;
    align-items: center;
    transform: translateX(-50px);
    opacity: 0;
    /* transition: opacity 0.5s ease-in, transform 0.5s ease-in; */
}
.news-page-content {
    width: 100%;
    display: flex;
    gap: 40px;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
}
.news-page-content p {
    width: 80%;
    margin: 0;
}
.news-page-date {
    white-space: nowrap;
    font-size: 16px;
    line-height: 33px;
    color: #00202e;
}
.news-button {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 12px;
    gap: 12px;
    width: 20%;
    min-width: 132px;
    height: 41px;
    background: #ffffff;
    border: 1px solid #2d86aa;
    border-radius: 25px;
    z-index: 1;
    overflow: hidden;
    transition: color 0.4s ease-in-out !important;
}
.news-button::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 100%;
    right: 100%;
    width: 2em;
    height: 2em;
    border-radius: 50%;
    background-color: #2d86aa;
    transform-origin: center;
    transform: translate3d(50%, -50%, 0) scale3d(0, 0, 0);
    transition: transform 0.45s ease-in-out;
}
.news-button .next-icon {
    display: block;
}
.news-button .next-icon-hover {
    display: none;
}
.news-button:hover .next-icon {
    display: none;
}
.news-button:hover .next-icon-hover {
    display: block;
}
.news-button:hover::before {
    transform: translate3d(50%, -50%, 0) scale3d(15, 15, 15);
}
.news-button span {
    font-size: 12px;
    line-height: 12px;
    color: #2d86aa;
    white-space: nowrap;
}
.news-button:hover span {
    color: white;
}

.news-page-detail {
    position: relative;
    z-index: 10;
}

.news-page-detail-date {
    font-weight: 500;
    font-size: 16px;
    line-height: 33px;
    color: #63baf4;
    margin-bottom: 12px;
}

.news-page-detail-title {
    font-weight: 500;
    font-size: 30px;
    line-height: 33px;
    color: #00141d;
}

.news-page-detail-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 33px;
    color: #000000;
}

.news-page-detail-image {
    width: 100%;
    height: 426px;
    background: #d9d9d9;
    border-radius: 12px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.news-page-detail-box-btn {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
    margin-top: 36px;
    gap: 20px;
}

.page-btn-prev {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border: 1px solid #2d86aa;
    border-radius: 25px;
    padding: 12px 32px;
    height: 41px;
    z-index: 1;
    overflow: hidden;
    transition: color 0.4s ease-in-out !important;
}
.page-btn-prev::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 100%;
    left: 100%;
    width: 4em;
    height: 4em;
    border-radius: 50%;
    background-color: #2d86aa;
    transform-origin: center;
    transform: translate3d(50%, -50%, 0) scale3d(0, 0, 0);
    transition: transform 0.45s ease-in-out;
}

.page-btn-prev a {
    display: inline-flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.page-btn-prev span {
    color: #2d86aa;
}
.page-btn-prev .prev-icon {
    display: block;
    transform: rotate(180deg);
}
.page-btn-prev .prev-icon-hover {
    display: none;
}
.page-btn-prev:hover span {
    color: white;
}
.page-btn-prev:hover .prev-icon {
    display: none;
}
.page-btn-prev:hover .prev-icon-hover {
    display: block;
    transform: rotate(180deg);
}
.page-btn-prev:hover::before {
    transform: translate3d(50%, -50%, 0) scale3d(15, 15, 15);
}

.news-page-detail-btn-item {
    display: flex;
    gap: 16px;
}

.page-btn-next {
    background: #2d86aa;
    outline: none;
    gap: 20px;
    height: 41px;
}

.page-btn-next::before {
    background-color: white;
    left: unset;
    right: 100%;
}
.page-btn-next span {
    color: white;
}
.page-btn-next .next-icon {
    display: block;
}
.page-btn-next .next-icon-hover {
    display: none;
}
.page-btn-next:hover span {
    color: #2d86aa;
}
.page-btn-next:hover .next-icon {
    display: none;
}
.page-btn-next:hover .next-icon-hover {
    display: block;
}

.background-news-detail {
    position: absolute;
    right: 0;
    top: -25px;
    opacity: 0.32;
}

.background-news-page {
    position: absolute;
    top: -25px;
    opacity: 0.32;
    left: 0;
}

@media screen and (max-width: 1280px) {
    .news-page-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
}

@media screen and (max-width: 768px) {
    .news-page-container {
        padding: 0 20px;
    }
    .news-page-date,
    .news-page-content {
        font-size: 12px;
    }
    .news-page-content {
        gap: 5px;
    }
    .news-page-box {
        padding: 18px 16px;
    }
    .news-page-detail-box-btn {
        justify-content: center;
    }
    .page-btn-prev {
        padding-left: 20px;
        padding-right: 20px;
    }
}
