.article-wrapper {
    width: 1300px;
}

.gd-wrapper {
    width: 100%;
}

.gd-image-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gd-image {
    background-color: #eee;
}

.gd-image-wrapper:nth-child(1) .gd-image:nth-child(1) {
    border-radius: 60px 0 0 0;
}
.gd-image-wrapper:nth-child(1) .gd-image:nth-child(2) {
    border-radius: 0 60px 0 0;
}
.gd-image-wrapper:nth-child(3) .gd-image:nth-child(3) {
    border-radius: 0 0 0 60px;
}
.gd-image-wrapper:nth-child(3) .gd-image:nth-child(4) {
    border-radius: 0 0 60px 0;
}

.gd-text {
    padding: 50px 0;
    border: 1px solid #ddd;
    background-color: #fafafa;
    margin: 1rem 0;
}

.gd-text p {
    color: #666;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.9;
    font-family: 'BMHANNAAir';
    text-align: center;
}


/*==================================================*/
@media (max-width: 1350px) {
    .article-wrapper {
        width: 100%;
        padding: 0 20px;
    }
}


@media (max-width: 1050px) {
    .gd-text {
        padding: 40px 20px;
    }
    
    .gd-text p {
        font-size: 20px;
    }

    .gd-text p br {
        display: none;
    }
}


@media (max-width: 768px) {
    .gd-image-wrapper {
        gap: 5px;
    }

    .gd-image-wrapper:nth-child(1) .gd-image:nth-child(1) {
        border-radius: 30px 0 0 0;
    }
    .gd-image-wrapper:nth-child(1) .gd-image:nth-child(2) {
        border-radius: 0 30px 0 0;
    }
    .gd-image-wrapper:nth-child(3) .gd-image:nth-child(3) {
        border-radius: 0 0 0 30px;
    }
    .gd-image-wrapper:nth-child(3) .gd-image:nth-child(4) {
        border-radius: 0 0 30px 0;
    }

    .gd-text {
        margin: 5px 0;
    }
}


@media (max-width: 550px) {
    .gd-text {
        padding: 25px;
    }
    
    .gd-text p {
        font-size: 16px;
    }
}


@media (max-width: 450px) {
    .sub-nav-wrapper {
        justify-content: flex-end;
    }

    .sub-navBtn {
        animation: none;
    }

    .gd-image-wrapper:nth-child(1) .gd-image:nth-child(1) {
        border-radius: 20px 0 0 0;
    }
    .gd-image-wrapper:nth-child(1) .gd-image:nth-child(2) {
        border-radius: 0 20px 0 0;
    }
    .gd-image-wrapper:nth-child(3) .gd-image:nth-child(3) {
        border-radius: 0 0 0 20px;
    }
    .gd-image-wrapper:nth-child(3) .gd-image:nth-child(4) {
        border-radius: 0 0 20px 0;
    }

    .gd-text {
        padding: 20px;
    }

    .gd-text p {
        font-size: 14px;
    }
}