.home-seo-services {
    background: #fff;
}

.home-seo-services > .wrapper {
    display: block;
}

.home-seo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.125rem;
}

.home-seo-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    align-content: center;
    gap: 1rem;
    min-height: 92px;
    border: 1px solid #eadfd5;
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: 0 10px 24px rgba(58,37,20,.05);
    padding: 1.125rem 1.25rem;
}

.home-seo-card__media {
    width: 96px;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #bdb5b3;
}

.home-seo-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-seo-card__content {
    min-width: 0;
}

.home-seo-card h3 {
    margin: 0 0 .625rem;
    color: var(--color-brown-dark);
    font-size: 1rem;
}

.home-seo-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.55;
}

@media (max-width: 992px) {
    .home-seo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .home-seo-grid {
        grid-template-columns: 1fr;
        gap: .875rem;
        padding-inline: .75rem;
    }
}
