.sd-section {
    display: grid;
    grid-template-columns: 50% 1fr;
    gap: 3rem;
}

.sd-heading {
    color: var(--dark);
    text-align: center;
}

.sd-tagline {
    text-align: center;
    font-style: italic;
}

.sd-images-wrapper {
    border-radius: 28px;
    margin-top: 2rem;
}

.sd-img {
    height: 26rem;
    object-fit: cover;
    object-position: center;
    border-radius: 28px;
}

.sd-wrapper > p {
    margin-bottom: 1rem;
}

@media (max-width: 1023px) {
    .sd-section {
        grid-template-columns: auto;
        max-width: 38rem;
        margin: 0 auto;
    }
}