#sdgs .summary {
    padding: 30px 0 20px;
}

#sdgs h2 {
    align-items: center;
    display: flex;
    gap: 0 20px;
    font-size: 1.25rem;
    padding: 0 0 20px;
    text-align: center;
}

#sdgs h2::before,
#sdgs h2::after {
    background-color: #333;
    content: "";
    flex: 1;
    height: 1px;
}

.sdgs {
    align-items: flex-start;
    border-bottom: #333 1px solid;
    margin: 0 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
}

.sdgs h3 {
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0 0 10px;
    width: 100%;
}

.sdgs div {
    flex: 1;
}

.sdgs h4 {
    font-size: 0.95rem;
    padding: 10px 0 0;
}

.sdgs div ul {
    padding: 0 0 0 25px;
}

.sdgs div ul li {
    font-size: 0.9rem;
    list-style: circle;
    padding: 5px 0 0;
}

.sdgs > ul {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3,1fr);
    padding: 0;
    width: 300px;
}

.sdgs > ul li {
    margin: 0;
}

@media screen and (max-width: 480px) {

    .sdgs > ul {
        grid-template-columns: repeat(5,1fr);
        width: 100%;
    }

}

.goals {
    align-items: flex-end;
    border: #ddd 1px solid;
    display: flex;
    gap: 20px;
    padding: 20px;
}

.goals div {
    flex: 1;
}

.goals h3 {
    font-size: 1.125rem;
}

.goals p {
    margin: 0;
}

.goals img {
    height: auto;
    width: 200px;
}

@media screen and (max-width: 480px) {

    .goals {
        flex-direction: column;
    }

    .goals img {
        margin: 0 auto;
    }

}