/* Viaero Broadband Facts — label styles
 *
 * Only defines what the theme CSS doesn't already cover.
 * All other label styles (.bbl, .detailLine, .sectionHeader, etc.)
 * are handled by existing theme CSS.
 */

/* Center the label on the single CPT page */
.bbl-wrapper {
	max-width: 480px;
	margin: 0 auto;
}

/* Customer Support: Phone/Website label+value on one line */
.contactInfoLine {
	display: flex;
	align-items: baseline;
	gap: 6px;
	padding: 1px 0;
}

.contactInfoLine .label {
	white-space: nowrap;
}

.contactInfoLine .value {
	word-break: break-all;
}

/* Lifeline page: space below the label before the footer */
#broadband-facts {
	padding-bottom: 40px;
}

/* broadband-facts page: 3-column grid per category section */
.vbf-all-categories .bbFactsSection {
	margin-bottom: 40px;
}

.vbf-all-categories .bbFactsTitle {
	text-align: center;
	margin-bottom: 20px;
}

.vbf-all-categories .bbFactsGrid {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

/* Override the single-label centering rule inside the grid */
.vbf-all-categories .bbFactsGrid .bbl-wrapper {
	flex: 0 0 calc(33.333% - 16px);
	max-width: calc(33.333% - 16px);
	margin: 0;
}
