main {
    position: relative;
    z-index: 2;
}

.top {
    padding: 170px 0 90px;
}

.top-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(172deg, rgba(0, 0, 0, 0.00) -8.7%, rgba(0, 0, 0, 0.84) 69.7%);
}

.top::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(172deg, rgba(0, 0, 0, 0.00) -8.7%, rgba(0, 0, 0, 0.84) 69.7%);

}

.top-title {
    width: fit-content;
    margin: 0 auto;
    color: #FFF;
    font-family: "DM Sans";
    text-align: center;
    font-size: 60px;
    font-weight: 700;
    line-height: 80px;
    position: relative;
    z-index: 2;
    letter-spacing: -2.01px;
}

.news {
    padding: 60px 0 120px;
}

article {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
        color: rgba(57, 57, 57, 0.6);
            font-family: "DM Sans";
}
article ul,article ol{
    flex-wrap: wrap;
}
article ul strong,article ol strong{
    display: contents;
}
article ul li,article ol li{
  width: 100%;
}
article ol li{
    display:list-item;
}

article ol{
    padding-left: 30px;
}
.news-top-box {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.news-title {
    color: #393939;
    font-family: "DM Sans";
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    /* 128.571% */
    letter-spacing: -0.606px;
}

.news-date {
    color: #9E9E9E;
    font-family: "DM Sans";
    font-size: 35px;
    font-weight: 400;
    line-height: 25px;
    /* 71.429% */
    letter-spacing: -0.606px;
}

article p {
    color: rgba(57, 57, 57, 0.6);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 33.757px;
    /* 187.539% */
    letter-spacing: -0.606px;
    margin: 0;
    width: 100%;
}

.grid-item {
    display: flex;
    gap: 30px;
}

.grid-item img {
    max-width: calc(50% - 15px);
}

article iframe {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.news-content-box {
    display: flex;
    gap: 30px;
}

.news-content-box img {
    width: 100%;
    max-width: calc(50% - 15px);
}

@media screen and (max-width: 900px) {
    .news-top-box {
        flex-wrap: wrap;
    }

    .news-title {
        width: 100%;
        margin-bottom: 10px;
    }

    article p {
        font-size: 16px;
        line-height: 27.757px;

    }
}

@media screen and (max-width: 600px) {
    article p {
        font-size: 14px;
        line-height: 24.757px;
    }
}

@media screen and (max-width: 500px) {
    .top {
        padding: 130px 0 70px;
    }
    .news {
        padding: 40px 0 80px;
    }
    .news-content-box {
        flex-wrap: wrap;
    }
    .news-title,.news-date{
        font-size: 30px;
    }
    .news-content-box img {
        max-width: 100%;
        height: fit-content;
    }
    .grid-item img{
        max-width: 100%;
    }
    .grid-item{
        flex-wrap: wrap;
        height: fit-content;
    }
    article iframe{
        height: 300px;
    }
}