@charset "UTF-8";


/* 메인 비주얼 */
.main-hero {
    position: relative;
    min-height: 70vh;

    background:
        linear-gradient(rgba(0, 0, 0, .35),
            rgba(0, 0, 0, .35)),
        url('../images/main/bg_main_visual.png') top center / cover no-repeat;
}

.hero-row {
    min-height: 70vh;
    align-items: center;
}

.hero-n-wrap {
    position: relative;
    height: 100%;
}

.hero-n {
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}


/* 오른쪽 */
.hero-content {
    position: relative;
    z-index: 2;
    transform: translate(20px, 20px);
}

/* 카피 박스 */
.hero-copy-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

}

/* 카피 */
.hero-copy {
    color: #fff;

    font-size: 4rem;
    line-height: 1.25;
    letter-spacing: -0.06em;

    text-shadow:
        0 4px 10px rgba(0, 0, 0, .2);

    padding-inline: 80px;

    word-break: keep-all;
}

.hero-copy strong {
    font-weight: 800;
}

/* 브라켓 */
.copy-line {
    position: absolute;

    width: 22px;
    height: 100%;

    border-top: 8px solid #fff;
    border-bottom: 8px solid #fff;

    opacity: .9;
}

.copy-line-left {
    left: 0;
    border-left: 8px solid #fff;
    opacity: 0;
}

.copy-line-right {
    right: 0;
    border-right: 8px solid #fff;
    opacity: 0;
}

.hero-magazine {
    color: #fff;
    margin: 40px;
}

.hero-magazine {
    position: absolute;
    top: -30px;
    right: 0;
    left: 0;
    text-align: right;
    margin: 0;
    opacity: 0;
    /* 처음 숨김 */
}

.hero-magazine span {
    display: block;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.1;
}

.hero-magazine strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.05;
}

/* 호수 */
.hero-vol {
    justify-content: flex-end;
    font-size: 1rem;
    color: #fff;
    font-size: 1rem;
}

.vol-line {
    width: 80px;
    height: 1px;
    background: #fff;
}

/* 반응형 */
@media (max-width:991px) {

    .main-hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-row {
        min-height: auto;
    }

    .hero-n {
        position: relative;
        margin: 0 auto;
        display: block;
        left: unset;
        transform: unset;
        text-align: center;
        font-size: 18rem;
    }

    .hero-n img {
        width: 70% !important;
    }

    .hero-n-wrap {
        margin-bottom: 20px;
    }

    .hero-content {
        transform: translate(0, -20px);
        text-align: center;
    }

    .hero-copy-box {
        margin-bottom: 50px;
    }

    .hero-copy {
        padding-inline: 50px;
    }


}

@media (max-width:576px) {

    .main-hero {
        padding-block: 100px 80px;
    }

    .hero-n {
        font-size: 14rem;
    }

    .hero-content {
        padding-top: 60px;
        transform: translate(0, 0);
    }

    .hero-copy {
        font-size: 2.1rem;
        padding-inline: 36px;
    }

    .copy-line {
        width: 14px;

        border-top: 5px solid #fff;
        border-bottom: 5px solid #fff;
    }

    .copy-line-left {
        border-left: 5px solid #fff;
    }

    .copy-line-right {
        border-right: 5px solid #fff;
    }

    .hero-magazine span {
        font-size: 1.2rem;
    }

    .vol-line {
        width: 50px;
    }

}

/* PC에서만 Contents Magazine 아래로 이동 */
@media (min-width: 992px) {

    .hero-magazine {
        top: -40px;
        right: 0px;
        left: 0px;
        text-align: right;
    }

    .hero-content {
        position: relative;
    }

    .hero-vol {
        justify-content: flex-end;
    }
}



/* 섹션 배경 */
.trend-section {
    background: #f5f5f5;
    overflow: hidden;
    cursor: pointer;
}

/* 상단 타이틀 */
.trend-header {
    gap: 40px;
}

.trend-header .line {
    flex: 1;
    max-width: 100%;
    height: 1px;
    background: #A25591;
    opacity: .5;
}

.trend-title {
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    white-space: nowrap;
    color: #A25591;
}

.trend-title strong {
    font-weight: 800;
}

/* 텍스트 */
.trend-content {
    padding-inline: 4%;
}

.trend-headline {
    font-size: 2.4rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.06em;
    word-break: keep-all;
}

.trend-desc {
    font-size: 1.6rem;
    line-height: 1.4;
    word-break: keep-all;
    padding-top: 12px;
}

/* 마스크 */
.trend-image-mask {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    height: 300px;
    transform: translateZ(0);
    backface-visibility: hidden;
}



/* 이미지 */
.trend-image {
    width: 100%;
    height: calc(100% + 120px);

    object-fit: cover;

    position: absolute;
    top: 0;
    left: 0;

    transition: transform .8s cubic-bezier(.22, .61, .36, 1);
}

.trend-section:hover .trend-image {
    transform: scale(1.08);
}

/* 반응형 */
@media (max-width:991px) {

    .trend-header {
        gap: 20px;
        margin-bottom: 3rem !important;
    }

    .trend-content {
        padding-inline: 0;
    }

    .trend-headline {
        margin-bottom: 0;
    }

    .trend-desc {
        padding-top: 0;
    }

    .trend-image-mask {
        height: 200px;
    }

    .trend-image-wrap {
        border-radius: 24px;
    }

    /* 이미지 */
    .trend-image {
        height: calc(100% + 60px);
    }
}

@media (max-width:576px) {

    .trend-header .line {
        max-width: none;
    }

    .trend-title {
        font-size: 1.8rem;
    }

    .trend-headline {
        font-size: 2rem;
    }

    .trend-desc {
        font-size: 1rem;
        line-height: 1.6;
    }

    .trend-image-wrap {
        border-radius: 18px;
    }
}



.special-section {
    position: relative;
    overflow: hidden;

    padding-block: 120px;

    background:
        linear-gradient(rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .45)),
        url('../images/main/bg_m_section_2_1_sample.png') center center / cover no-repeat;
}

/* 컨텐츠 위 */
.special-section .container {
    position: relative;
    z-index: 2;
}

/* 헤더 */
.special-header {
    gap: 40px;
    margin-bottom: 100px !important;
}

.special-header .line {
    flex: 1;
    max-width: 100%;
    height: 1px;
    background: #34AA8F;
    opacity: .5;
}

.special-title {
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    white-space: nowrap;
    color: #34AA8F;
}

.special-title strong {
    font-weight: 800;
}

/* 행 */
.special-row {
    margin-bottom: 80px;
}

/* 이미지 */
.special-thumb {
    width: 100%;
    border-radius: 32px;
    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .35);
}

.special-thumb img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* 텍스트 */
.special-content {
    color: #fff;
}

.special-num {
    display: block;

    font-size: 1.4rem;
    font-weight: 600;

    opacity: .55;
    margin-bottom: 12px;
}

.special-headline {
    font-size: 2rem;
    font-weight: 800;

    line-height: 1.15;
    letter-spacing: -0.06em;

    margin-bottom: 24px;
    word-break: keep-all;
}

.special-desc {
    font-size: 1.4rem;
    line-height: 1.7;
    opacity: .9;
    word-break: keep-all;
}

/* 위치 느낌 */
.special-row-top {
    padding-inline: 8%;
}

.special-row-bottom {
    padding-inline: 8%;
}

/* 반응형 */
@media (max-width:991px) {

    .special-section {
        padding-block: 90px;
    }

    .special-title {
        font-size: 1.8rem;
    }

    .special-num {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .special-header {
        gap: 20px;
        margin-bottom: 70px !important;
    }

    .special-row {
        margin-bottom: 60px;
    }

    .special-row-top,
    .special-row-bottom {
        padding-inline: 0;
    }

    .special-thumb {
        margin-inline: auto;
        border-radius: 24px;
    }

    .special-content {
        text-align: center;
    }


}

@media (max-width:576px) {

    .special-section {
        padding-block: 70px;
    }

    .special-header .line {
        max-width: none;
    }

    .special-headline {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .special-desc {
        font-size: 1rem;
    }

    .special-thumb {
        width: 100%;
        /* max-width: 200px; */
        border-radius: 20px;
    }
}



/* 카드 섹션 */
.special-card-section {
    position: relative;
    z-index: 10;
    margin-bottom: -120px;
    padding-bottom: 100px;
}

/* 리스트 */
.special-card-wrap {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* 카드 */
.special-card {
    display: flex;
    align-items: center;

    background: #f4f4f4;

    border-radius: 32px;

    overflow: hidden;

    text-decoration: none;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .18);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

/* hover */
.special-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 30px 60px rgba(0, 0, 0, .25);
}

/* 이미지 */
.special-card-thumb {
    width: min(100%, 250px);
    min-height: 250px;
    flex-shrink: 0;

    overflow: hidden;
}

.special-card-thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.special-card:hover .special-card-thumb img {
    transform: scale(1.05);
}

/* 텍스트 */
.special-card-content {
    flex: 1;

    padding: 30px;
}

/* 카테고리 */
.special-card-cate {
    display: block;

    font-size: 1.4rem;
    font-weight: 800;

    color: #666;

    margin-bottom: 8px;
}

/* 제목 */
.special-card-title {
    font-size: 1.8rem;
    font-weight: 800;

    line-height: 1.2;
    letter-spacing: -0.06em;

    color: #222;

    margin-bottom: 28px;

    word-break: keep-all;
}

/* 설명 */
.special-card-desc {
    font-size: 1.4rem;
    line-height: 1.7;

    color: #555;

    margin-bottom: 0;

    word-break: keep-all;
}

/* 반응형 */
@media (max-width:991px) {

    .special-card-section {

        /* 위 섹션 걸침 */
        margin-top: -140px;

        padding-bottom: 20px;
    }

    .special-card-wrap {
        gap: 36px;
    }

    .special-card {
        flex-direction: row;
        align-items: stretch;

        border-radius: 28px;
    }

    .special-card-thumb {
        width: 38%;
        min-height: 240px;
    }

    .special-card-content {
        padding: 32px;
    }
}

@media (max-width:767px) {

    .special-card-section {

        /* 모바일 걸침 */
        margin-top: -120px;
    }

    .special-card {
        border-radius: 24px;
    }

    .special-card-thumb {
        width: 42%;
        min-height: 200px;
    }

    .special-card-content {
        padding: 24px;
    }

    .special-card-cate {
        margin-bottom: 16px;
    }

    .special-card-title {
        font-size: 2rem;
        margin-bottom: 18px;
    }

    .special-card-desc {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width:576px) {

    .special-card-section {
        margin-top: -100px;
    }

    .special-card {
        border-radius: 22px;
    }

    .special-card-thumb {
        width: 35%;
        min-height: 220px;
    }

    .special-card-content {
        padding: 20px;
    }

    .special-card-title {
        font-size: 1.2rem;
    }

    .special-card-cate {
        font-size: 1rem;
    }
}



/* 섹션 */
.info-section {
    position: relative;
    overflow: hidden;

    padding:
        80px 0 140px;
}

/* 컨테이너 */
.info-section .container {
    position: relative;
    z-index: 5;
}

.info-inner {
    padding-inline: 8%;
}

/* 타이틀 */
.info-header {
    gap: 40px;
    margin-bottom: 100px;
}

.info-header .line {
    flex: 1;
    height: 1px;
    background: #3B78D4;
    opacity: .7;
}

/* :root[data-bs-theme="dark"] .info-header .line {
    background: #fff;
}
 */
.info-title {
    font-size: 2.4rem;
    font-weight: 300;
    color: #3B78D4;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.info-title strong {
    font-weight: 800;
}

/* 오로라 */
.info-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);

    animation:
        glowMove 10s ease-in-out infinite alternate;
}

/* 블루 */
.info-glow-1 {
    width: 520px;
    height: 520px;

    left: -180px;
    bottom: -220px;

    background:
        radial-gradient(circle,
            rgba(120, 225, 255, .75) 0%,
            rgba(120, 225, 255, .15) 100%,
            transparent 100%);
}

/* 퍼플 */
.info-glow-2 {
    width: 360px;
    height: 360px;

    left: 180px;
    bottom: -140px;

    background:
        radial-gradient(circle,
            rgba(180, 120, 255, .55) 0%,
            rgba(180, 120, 255, .12) 100%,
            transparent 100%);

    animation-duration: 14s;
}

/* 움직임 */
@keyframes glowMove {

    0% {
        transform:
            translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform:
            translate3d(40px, -30px, 0) scale(1.08);
    }
}

/* 행 */
.info-row {
    position: relative;
}

/* 이미지 */
.info-thumb {
    position: relative;

    border-radius: 32px;
    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .12);
}

.info-thumb img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* 텍스트 */
.info-content {
    position: relative;
    z-index: 5;

    padding-left: 40px;
}

.info-headline {
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.06em;
    margin-bottom: 32px;
    word-break: keep-all;
}

.info-desc {
    font-size: 1.2rem;
    line-height: 1.4;
    word-break: keep-all;
}

/* 심볼 */
.info-symbol {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    filter:
        drop-shadow(0 14px 24px rgba(0, 0, 0, .18));
}

/* 우측 상단 orb */
.symbol-orb {
    width: 180px;
    top: -40px;
    right: 12%;
    animation:
        floatOrb 5s ease-in-out infinite;
}

/* 우측 웨이브 */
.symbol-wave {
    width: 180px;
    bottom: -120px;
    right: 0;
    animation:
        rotateWave 8s linear infinite;
}

/* 하단 글래스 */
.symbol-glass {
    width: 200px;
    right: -80px;
    bottom: -80px;
    animation:
        floatGlass 7s ease-in-out infinite;
}

/* orb */
@keyframes floatOrb {

    0%,
    100% {
        transform:
            translateY(0px);
    }

    50% {
        transform:
            translateY(-16px);
    }
}

/* wave */
@keyframes rotateWave {

    0% {
        transform:
            rotate(0deg) translateY(0);
    }

    50% {
        transform:
            rotate(8deg) translateY(-10px);
    }

    100% {
        transform:
            rotate(0deg) translateY(0);
    }
}

/* glass */
@keyframes floatGlass {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform:
            translate3d(0, -18px, 0) rotate(6deg);
    }
}

/* 반응형 */
@media (max-width:991px) {

    .info-inner {
     padding-inline: 0%;   
    }

    .info-section {
        padding:
            90px 0 110px;
    }

    .info-header {
        margin-bottom: 70px;
        gap: 20px;
    }

    .info-content {
        padding-left: 0;
    }

    .symbol-orb {
        width: 100px;
        top: 160px;
        right: 4%;
    }

    .symbol-wave {
        width: 90px;
        top: auto;
        bottom: 220px;
        right: 4%;
    }

    .symbol-glass {
        width: 100px;
        left: auto;
        right: 30%;
        bottom: 40px;
    }
}

@media (max-width:576px) {

    .info-section {
        padding:
            70px 0 90px;
    }

    .info-title {
        font-size: 1.8rem;
    }

    .info-header {
        margin-bottom: 50px;
    }

    .info-thumb {
        /* max-width: 200px; */
        border-radius: 22px;
        margin: 0 auto;
    }

    .info-headline {
        font-size: 1.6rem;
        margin-bottom: 22px;
        text-align: center;
    }

    .info-desc {
        line-height: 1.6;
        text-align: center;
    }

    .symbol-orb {
        width: 100px;
        top: 30px;
    }

    .symbol-wave {
        width: 100px;
        right: 0px;
        bottom: -80px;
    }

    .symbol-glass {
        width: 140px;
        left: 0px;
        bottom: -60px;
    }

    .info-glow-1 {
        width: 340px;
        height: 340px;
    }

    .info-glow-2 {
        width: 220px;
        height: 220px;
    }
}

:root[data-bs-theme="dark"] .trend-section {
    background: unset;
}

.m_writer {
    font-size: 1.2rem;
    color: #666;
}


/* 섹션 */
.news-section {
    position: relative;
    overflow: hidden;
}

/* row */
.news-row {
    min-height: 600px;
}

/* 공통 칼럼 */
.news-row>[class*="col-"] {
    position: relative;
}


.news-intro {
    position: relative;

    height: 100%;
    min-height: 600px;

    background: #722082;

    overflow: hidden;
}

.news-intro-inner {
    position: relative;
    z-index: 5;

    display: flex;
    flex-direction: column;
    justify-content: center;

    height: 100%;

    padding:
        120px clamp(32px, 5vw, 80px);
}

/* 상단 N */
.news-symbol {
    display: block;
    color: #fff;
    font-size: clamp(5rem, 7vw, 8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 40px;
}

/* 카피 */
.news-copy {
    color: rgba(255, 255, 255, .45);
    font-size: 1.6rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.06em;
    word-break: keep-all;
}

.news-copy strong {
    color: #fff;
    font-weight: 900;
}

/* 배경 N */
.news-bg-n {
    position: absolute;
    right: -40px;
    bottom: -120px;
    color: rgba(255, 255, 255, .08);
    font-size: clamp(16rem, 40vw, 38rem);
    font-weight: 900;
    line-height: .8;
}

.news-card {
    position: relative;
    display: block;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    text-decoration: none;
}

/* 이미지 */
.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 40px;
    z-index: 5;
    color: #fff;
}

.news-cate {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
}

.news-title {
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 0;
    word-break: keep-all;
    color: #fff;
}

/* hover */
.news-card:hover img {
    transform: scale(1.06);
}

@media (max-width:991px) {

    .m_writer {
        font-size: 1rem;
    }


    .news-row {
        min-height: auto;
    }

    .news-intro {
        min-height: 420px;
    }

    .news-card {
        min-height: 520px;
    }

    .news-symbol {
        margin-bottom: 50px;
    }

}

@media (max-width:576px) {

    .news-row {
        row-gap: 0;
    }

    .news-intro {
        min-height: 260px;
    }

    .news-intro-inner {
        padding: 40px 24px;
    }

    .news-symbol {
        margin-bottom: 28px;
    }

    .news-copy {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .news-card {
        min-height: auto;
        height: 220px;
        border-radius: 22px;
        display: flex;
        align-items: stretch;
        margin-bottom: 20px;
    }

    .news-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .news-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .news-cate {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .news-title {
        font-size: 1rem;
        line-height: 1.35;
    }

    .news-bg-n {
        right: -20px;
        bottom: -40px;
    }

}

.copy-line-left {
    transform: translateX(120px);
}

.copy-line-right {
    transform: translateX(-120px);
}

.typing-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
}

.typing-line-3 {
    display: block;
}

.event-section {
    padding: 60px 0;
    background: url('../images/main/bg_m_event.png');
    background-repeat: repeat;
    background-size: auto;
    overflow: hidden;
}

.event-content {
    max-width: 600px;
}

.event-label {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.event-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
}

.event-desc {
    font-size: 1.6rem;
    margin-bottom: 50px;
}

.event-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;
    height: 60px;

    border-radius: 999px;

    background: #333;
    color: #fff;

    font-size: 1.4rem;
    font-weight: 800;

    text-decoration: none;

    transition: .3s;
}

.event-btn:hover {
    background: #111;
    color: #fff;
    transform: translateY(-3px);
}

.event-card-wrap {
    position: relative;
    height: 460px;
}

.event-card {
    position: absolute;
    width: 300px;
    border-radius: 32px;
    filter:
        drop-shadow(0 15px 25px rgba(0, 0, 0, .15));
    transition: .4s;
}

.card-left {
    left: 50px;
    top: 40px;
    transform: rotate(-8deg);
}

.card-right {
    right: 50px;
    top: 40px;
    transform: rotate(8deg);
}

.event-card-wrap:hover .card-left {
    transform: rotate(-12deg) translateX(-10px);
}

.event-card-wrap:hover .card-right {
    transform: rotate(12deg) translateX(10px);
}

.event-vs {
    position: absolute;
    left: calc(50% - 20px);
    top: calc(50% - 60px);

    transform: translate(-50%, -50%);

    width: 80px;
    height: 80px;

    border-radius: 50%;

    background: rgba(0, 0, 0, .5);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2rem;
    font-weight: 900;

    backdrop-filter: blur(10px);
}

@media (max-width:991px) {

    .event-section {
        padding: 30px 0;
        background: url('../images/main/bg_m_event.png');
        background-repeat: repeat;
        background-size: 50%;
    }

    .event-content {
        text-align: center;
    }

    .event-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .event-desc {
        font-size: 1rem;
    }

    .event-btn {
        min-width: 180px;
        height: 56px;
        font-size: 1.2rem;
    }

    .event-card-wrap {
        height: unset !important;
    }

    .event-card {
        width: 180px;
    }

    .card-left {
        left: 40%;
        margin-left: -110px;
    }

    .card-right {
        right: 40%;
        margin-right: -110px;
    }

    .event-vs {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}

.news-card-list {
    height: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.news-item {
    display: block;
    color: #fff;
    max-width: 320px;
    transition: .3s;
}

.news-item:hover {
    transform: translateY(-10px);
}

.news-thumb {
    margin-bottom: 30px;
}

.news-thumb img {
    width: 80%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: .5s;
    margin: 0 auto;
}

.news-item:hover .news-thumb img {
    transform: scale(1.03);
}

.news-sub {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: .9;
    color: #fff;
    text-align: center;
}

.news-item .news-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.04em;
    text-align: center;
}

.news-item:hover .news-title {
    color: #fff;
}

.news-item:hover .news-sub {
    color: rgba(255, 255, 255, .9);
}

@media (max-width:991px) {

    .news-card-list {
        flex-direction: column;
        gap: 50px;
        padding: 50px 24px;
    }

    .news-item {
        max-width: 420px;
        width: 100%;
        text-align: center;
    }

    .news-sub {
        font-size: 1rem;
    }

    .news-item .news-title {
        font-size: 1.8rem;
    }
}

@media (max-width:576px) {

    .news-card-list {
        gap: 40px;
    }

    .news-item .news-title {
        font-size: 1.4rem;
    }
}