.approach-section {
    padding: var(--space-100-30) 0;
    background-color: var(--color-light);
}
.approach-section.light {
    background-color: var(--color-white);
}

.approach-section h2 {
    text-align: center;
}

.approach-section .approach-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 0;
    margin: 48px auto 0;
    width: 100%;
    max-width: 820px;
}

.approach-section .approach-item {
    list-style: none;
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Icon wrapper */
.approach-section .approach-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

/* Image handling */
.approach-section .approach-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
    .approach-section .approach-list {
        grid-template-columns: 1fr;
    }

    .approach-section .approach-icon {
        width: 35px;
        height: 35px;
    }
}