/* Sponsors & partners — published hub-card grid */
.sp-cards-section {
    margin-bottom: calc(var(--spacing-5, 2rem) + 1.25rem);
    padding-bottom: 0.75rem;
}

.sp-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
}

@media (min-width: 768px) {
    .sp-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .sp-cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.sp-cards-grid__cell {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: visible;
}

.sp-cards-grid__host {
    min-width: 0;
    width: 100%;
    overflow: visible;
}

.sp-cards-grid__host .gt-company-card-host--enlargeable,
.sp-cards-grid__host > .gt-company-card {
    width: 100%;
    height: auto;
}

.sp-cards-grid__host .gt-company-card--compact {
    max-width: none;
    width: 100%;
}

.sp-cards-grid__host .gt-company-card {
    height: auto;
}

.sp-cards-grid__host .gt-company-card__inner {
    min-height: 0;
}
