#sustainability_ods {
    margin-top: 2rem;
}
#sustainability_ods_container {
}
#sustainability_ods_content {
    flex-direction: column;
}
#sustainability_ods_content > h2 {
    color: var(--black);
    font-size: 2em;
    font-weight: 500;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}
#sustainability_ods_content > p {
    color: var(--our-grey-color);
    line-height: 1.7;
    margin: 0 0 2.5rem;
    max-width: 640px;
}
#sustainability_ods_list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e5e7eb;
}
.ods_item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}
.ods_badge {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    flex-shrink: 0;
}
.ods_title {
    font-size: 1rem;
    font-weight: 700;
    color: #0C447C;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
@media (max-width: 560px) {
    .ods_item {
        grid-template-columns: 52px 1fr;
        gap: 1rem;
    }
    .ods_badge {
        width: 52px;
        height: 52px;
    }
}
