#top-article {
    width: 100%;
    height: calc(703px - 90px);
    position: relative;
}

.top-article-img {
    width: 100%;
    height: 100%;
}

.top-article-img > img {
    width: 100%;
    height: 100%;
}

.black-bg {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.35);
    position: absolute;
    top: 0;
    left: 0;

    padding-top: 90px;
}

.top-article-text {
    width: 100%;
    height: 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.top-article-text > p:first-child {
    font-family: 'Pretendard';
    font-weight: 600;
    font-size: 68px;
    letter-spacing: -0.02em;
    color: #fff;
}

.top-article-text > p:last-child {
    font-family: 'Pretendard';
    font-weight: 400;
    font-size: 28px;
    letter-spacing: -0.02em;
    line-height: 1.45;
    color: #fff;

    margin-top: 38px;
}

@media all and (max-width:1530px) {
    #top-article {
        height: calc(45.94771vw - 90px);
        min-height: 400px;
    }

    .top-article-text > p:first-child {
        font-size: calc(68px * 0.9);
    }

    .top-article-text > p:last-child {
        font-size: calc(28px * 0.9);
        margin-top: 25px;
    }
}

@media all and (max-width:750px) {
    #hd {
        position: fixed;
        z-index: 999;
    }

    #top-article {
        height: 68.53333vw;
        min-height: unset;
    }

    #top-article .black-bg {
        padding-top: 66px;
    }

    .top-article-img > img {
        object-fit: cover;
        object-position: 45% center;
    }

    .top-article-text > p:first-child {
        font-size: 7.46666vw;
    }

    .top-article-text > p:last-child {
        font-size: 3.46666vw;
        margin-top: 2.66666vw;
    }
}