/* =========================================================
   Content Pages Utilities
   For: Who It Helps, How It Works, FAQ, etc.
   ========================================================= */

/* Typography */
.th-h2 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.th-text {
    color: var(--th-text-2);
}

/* Grid System */
.th-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 768px) {
    .th-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

/* Card Extensions */
.th-card__title {
    font-weight: 800;
    margin-bottom: 6px;
}

.th-card__body {
    color: var(--th-text-2);
}

/* Actions */
.th-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* List */
.th-list {
    margin: 0;
    padding-left: 18px;
    color: var(--th-text-2);
}

.th-list li {
    margin-bottom: 8px;
}
