/**
 * Industry Selector Panel Styles
 *
 * Grid of industry/sector icons for navigation
 *
 * Dependencies: ssa-base
 * Extracted from: styles.css lines 622-665, responsive rules from 480px
 */

/* ==========================================================================
   Base Styles
   ========================================================================== */

.industry-selector-panel .content {
	padding-top: 70px;
}

/* Panel heading now uses .panel-heading from panel-base.css */

.industry-selector-panel h4 {
	font-size: 24px;
	font-weight: 900;
	line-height: 26px;
	margin-bottom: 70px;
}

.industry-selector-panel .industries {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
}

.industry-selector-panel .industries .industry {
	margin-bottom: var(--space-5);
	text-align: center;
	width: 18%;
}

.industry-selector-panel .industries .industry .image {
	border-radius: var(--radius-full);
	display: inline-block;
	margin-bottom: var(--space-4);
	height: 200px;
	width: 200px;
}

.industry-selector-panel .industries .industry h5 {
	font-size: 19px;
	font-weight: 700;
	margin-bottom: var(--space-2);
}

/* ==========================================================================
   Responsive: Mobile (480px and below)
   ========================================================================== */

@media (max-width: 480px) {
	.industry-selector-panel .content {
		padding-top: 25px;
	}
}
