/*
 * Guide card grid fixes.
 *
 * The base theme uses a two-column flex grid. When the number of cards is odd,
 * stretch the final card across the full last row instead of leaving an empty
 * half-column.
 */

.guide-card-grid > section:last-child:nth-child(odd) {
    width: 100%;
    border-right-width: 0;
}

/* The base theme switches .features to one column at this breakpoint. */
@media screen and (max-width: 980px) {
    .guide-card-grid > section:last-child:nth-child(odd) {
        width: 100%;
        border-right-width: 0;
    }
}
