/* Blue Icons Block styles */

.blue-icons-block {
	font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Container for the badges */
.blue-icons-block .badge-container {
	display: flex;
	gap: 5px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 0 0 40px 0;
	border-bottom: solid 2px #dbdde1;
	float: left;
	/*max-width: 820px;*/
	max-width: calc(100% - 290px);
}

/* Individual Circular Badge */
.blue-icons-block .badge {
	width: 140px;
	height: 140px;
	min-width: 140px;
	min-height: 140px;
	background-color: #0057b7;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	text-align: center;
	padding: 15px;
	margin: 0 10px 10px 10px;
}

/* Icon Styling */
.blue-icons-block .badge i {
	font-size: 36px;
	margin-bottom: 8px;
}

.blue-icons-block .badge .text-icon,
.blue-icons-block .badge .svg-inline--fa {
	height: 36px;
	width: auto;
	margin-bottom: 15px;
}

.blue-icons-block .badge .text-icon {
	font-size: 34px;
    font-weight: 700;
    line-height: 1;
	display: flex;
    align-items: center;
}

/* Label Styling */
.blue-icons-block .badge .label {
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	line-height: 1.15;
}

/* Resource Nav */
.resources-container {
	width: 270px;
	float: right;
}


/* Card Container */
.resources-card {
	background-image: linear-gradient(to bottom, #e8f0f8 0%, #ffffff 100%);
	width: 100%;
	max-width: 340px;
	padding: 28px 20px;
	border-radius: 4px;
}

/* Heading */
.resources-title {
	color: #0b3254; /* Dark navy blue */
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin: 0;
}

/* Link List */
.resources-list {
	list-style: none;
	padding-left: 0;
	margin: 0 0 20px 0;
}

.resources-item {
	border-bottom: 2px solid #0057b7; /* Accent blue divider line */
	padding: 20px 0 12px;
}

.resources-item:last-child {
	border-bottom: none; /* No border for the last item */
	padding-bottom: 0;
}

/* Link Styles */
.resources-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #0056b8; /* Royal blue text */
	text-decoration: none;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	transition: color 0.2s ease;
}

.resources-link:hover {
	color: #003a7d;
	text-decoration: underline;
}

/* Icon adjustments */
.resources-link i {
	font-size: 0.95rem;
}

@media only screen and (max-width: 550px) {
	.resources-container,
	.blue-icons-block .badge-container {
		float: none;
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
	}

	.blue-icons-block .badge-container {
		border-bottom: none;
	}

	.resources-card {
		max-width: 100%;
	}
}