/* -----------------------------------------
   THIS WEEK AT GRACE (Homepage)
----------------------------------------- */

.this-week {
    /* inherits .teaser */
}

.this-week__grid {
    display: grid;
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.this-week__item {
    /* inherits card-base */
    padding: var(--space-6);
}

.this-week__item h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.this-week__time {
    font-weight: 600;
    color: var(--color-primary-500);
    margin-bottom: var(--space-1);
}

.this-week__desc {
    color: var(--text-muted);
    margin: 0;
}

@media (min-width: 640px) {
    .this-week__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}