﻿
@media screen and (max-width: 767px) {
    .news-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .news-container .area1 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 40px;
    }

    .news-container .area1 > .container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .news-container .area1 > .container > .content {
        width: 100%;
    }

    .news-container .area1 > .container > .content > img {
        width: 100%;
    }

    /* ---------------------------------------------------------------------------------------------------- */

    .news-container .area2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 40px;
    }

    .news-container .area2 > .container {
        width: var(--page-width);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .news-container .area2 > .container > .title {
        max-width: var(--page-max-width);
        width: var(--page-width);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 40px;
    }

    .news-container .area2 > .container > .title > .box {
        color: #2a3657;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .news-container .area2 > .container > .title > .box::after {
        content: "";
        width: 30px;
        height: 4px;
        background-color: #a18549;
        margin-top: 10px;
    }

    .news-container .area2 > .container > .title > h1 {
        color: #2a3657;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .news-container .area2 > .container > .title > span {
        color: #808892;
        letter-spacing: 2px;
        text-align: center;
    }

    .news-container .area2 > .container > .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 50px;
    }

    .news-container .area2 > .container > .content > .item {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .news-container .area2 > .container > .content > .item > .img-box {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .news-container .area2 > .container > .content > .item > .img-box > img {
        max-width: 100%;
    }

    .news-container .area2 > .container > .content > .item > .title {
        width: 100%;
        border-bottom: 1px solid #cdd4da;
        font-size: 18px;
        font-weight: 700;
        padding: 15px 0px;
    }

    .news-container .area2 > .container > .content > .item > .word {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 15px 0px;
    }

    .news-container .area2 > .container > .content > .item > .word > span {
        display: block;
        font-weight: 700;
    }

    .news-container .area2 > .container > .content > .item > .word > span + span {
        margin-top: 10px;
    }

    .news-container .area2 > .container > .content > .item > .more-link-btn {
        width: 140px;
        background-color: #0f3d54;
        border-radius: 10px;
        box-sizing: border-box;
        color: #ffffff;
        cursor: pointer;
        font-size: 16px;
        font-weight: 700;
        display: block;
        padding: 15px 20px;
        text-align: center;
    }
}

@media screen and (min-width: 768px) {
    .news-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .news-container .area1 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .news-container .area1 > .container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .news-container .area1 > .container > .content {
        width: 100%;
    }

    .news-container .area1 > .container > .content > img {
        width: 100%;
    }

    /* ---------------------------------------------------------------------------------------------------- */

    .news-container .area2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 100px;
    }

    .news-container .area2 > .container {
        max-width: var(--page-max-width);
        width: var(--page-width);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .news-container .area2 > .container > .title {
        max-width: var(--page-max-width);
        width: var(--page-width);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 80px;
    }

    .news-container .area2 > .container > .title > .box {
        color: #2a3657;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .news-container .area2 > .container > .title > .box::after {
        content: "";
        width: 30px;
        height: 4px;
        background-color: #a18549;
        margin-top: 10px;
    }

    .news-container .area2 > .container > .title > h1 {
        color: #2a3657;
        font-size: 38px;
        margin-bottom: 20px;
    }

    .news-container .area2 > .container > .title > span {
        color: #808892;
        font-size: 20px;
        letter-spacing: 2px;
    }

    .news-container .area2 > .container > .content {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 60px;
    }

    .news-container .area2 > .container > .content > .item {
        width: calc((100% - 120px) / 3);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .news-container .area2 > .container > .content > .item > .img-box {
        width: 100%;
        height: 245px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .news-container .area2 > .container > .content > .item > .img-box > img {
        max-width: 100%;
        max-height: 100%;
    }

    .news-container .area2 > .container > .content > .item > .title {
        width: 100%;
        border-bottom: 1px solid #cdd4da;
        font-size: 24px;
        font-weight: 700;
        padding: 20px 0px;
    }

    .news-container .area2 > .container > .content > .item > .word {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px 0px;
    }

    .news-container .area2 > .container > .content > .item > .word > span {
        display: block;
        font-size: 20px;
        font-weight: 700;
    }

    .news-container .area2 > .container > .content > .item > .word > span + span {
        margin-top: 10px;
    }

    .news-container .area2 > .container > .content > .item > .more-link-btn {
        width: 140px;
        background-color: #0f3d54;
        border-radius: 10px;
        box-sizing: border-box;
        color: #ffffff;
        cursor: pointer;
        font-size: 16px;
        font-weight: 700;
        display: block;
        padding: 15px 20px;
        text-align: center;
    }
}
