.detail_page {
    display: grid;
    gap: 7rem;
    max-width: 1350px;
    margin: 0 auto 8rem auto;
    padding: 0 8%;
}

.page_title {
    font-size: 3rem;
    line-height: 1.5;
}

.description,
.detail {
    line-height: 2;
}

.top_box {
    display: grid;
    gap: 2rem;
}

.sdgs_title {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.sdgs_title img {
    width: 10%;
}

@media (max-width:768px) {
    .sdgs_title img {
        width: 100%;
    }

    .sdgs_title {
        display: flex;
        flex-direction: column;
    }
}