.expanded-resources-grid {
	background: var(--bg-color);
	position: relative;
}

.expanded-resources-grid:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
	background: transparent var(--bg-image) no-repeat center right / cover;
	opacity: var(--bg-image-opacity);
}

.expanded-resources-grid.no_background .item .card {
    background: var(--light-blue);
}

.expanded-resources-grid .container {
	max-width: 1190px;
	margin: 0 auto;
	width: 90%;
	padding: 5rem 0;
	position: relative;
	z-index: 1;
}

.expanded-resources-grid .title {
	font: normal var(--f-bold) 2.63rem / 1.1 var(--font-sans);
	color: var(--heading-color);
}

.expanded-resources-grid .grid-top-content .content {
	font: normal var(--f-light) 1.13rem / 1.3 var(--font-sans);
	color: var(--content-color);
	margin-bottom: 2.5rem;
}

.expanded-resources-grid .btn {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.313rem;
	border: none;
	font: normal var(--f-bold) 0.875rem / 1 var(--font-sans);
	color: var(--content-color);
	width: max-content;
	text-decoration: none;
	box-shadow: none;
}

.expanded-resources-grid .btn svg {
	color: var(--btn-bg-color);
	transition: var(--transition);
}

.expanded-resources-grid .btn:hover svg {
	transform: rotate(90deg);
}

.expanded-resources-grid-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.875rem;
    margin: 0 -0.938rem;
	align-items: stretch;
}

.expanded-resources-grid-wrapper .item {
    flex: 0 0 calc(25% - 1.875rem);
    max-width: calc(25% - 1.875rem);
	display: flex;
}

.expanded-resources-grid-wrapper .card {
	background: var(--white);
	padding: 1.5rem 1.5rem 3.375rem;
	border-radius: 1.875rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	align-self: stretch;
	gap: 1.25rem;
	width: 100%;
	box-shadow: none !important;
	position: relative;
	height: 100%;
}

.expanded-resources-grid-wrapper .card .rs_card-content {
	width: 100%;
}

.expanded-resources-grid-wrapper .card .rs_thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	overflow: hidden;
	width: 100%;
	height: 7.875rem;
}

.expanded-resources-grid-wrapper .card .rs_thumb .rs_thumb-img {
    width: auto;
    height: 100%;
    border-radius: 0.938rem;
}

.expanded-resources-grid-wrapper .card .rs_card-category {
	font: normal var(--f-bold) 0.875rem/1 var(--font-sans);
	color: var(--label-color);
	text-transform: uppercase;
	letter-spacing: 0.051rem;
	margin-bottom: 0;
}

.expanded-resources-grid-wrapper .card .rs_card-title {
	font: normal var(--f-medium) 1.13rem / 1.1 var(--font-sans);
	color: var(--secondary-color);
	margin-bottom: 0.75rem;
	transition: var(--transition);
}

.expanded-resources-grid-wrapper .card:hover .rs_card-title {
	color: var(--primary-color);
}

.expanded-resources-grid-wrapper .card .rs_card-excerpt {
	font: normal var(--f-light) .88rem / 1.3 var(--font-sans);
	color: var(--black);
	margin-bottom: 0.75rem;
}

.expanded-resources-grid-wrapper .card:hover .rs_card-excerpt {
	color: var(--black) !important;
}

.expanded-resources-grid-wrapper .card .rs_card-download {
	font: normal var(--f-bold) 0.875rem / 1 var(--font-sans);
	color: var(--black);
	letter-spacing: .11px;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
	position: absolute;
	left: 1.5rem;
	bottom: 1.875rem;
}

.expanded-resources-grid-wrapper .card .rs_card-download svg {
	color: var(--btn-bg-color);
	transition: var(--transition);
}

.expanded-resources-grid-wrapper .card:hover .rs_card-download svg {
	transform: rotate(90deg);
}

.expanded-resources-grid .btn-wrapper {
    margin-bottom: 2.5rem;
}


@media screen and (max-width: 1280px) {
	.expanded-resources-grid .col-wrapper {
		flex-direction: column;
	}

	.expanded-resources-grid .col-wrapper .col {
		max-width: 100% !important;
	}
}

@media screen and (max-width: 1024px) {
	.expanded-resources-grid .container {
		padding: 4.375rem 0;
	}

	.expanded-resources-grid .title {
		font: normal var(--f-bold) 2.38rem / 1.1 var(--font-sans);
	}

	.expanded-resources-grid .col.left>.content {
		font: normal var(--f-medium) 1.38rem / 1.3 var(--font-sans);
		margin-bottom: 1.25rem;
	}
	.expanded-resources-grid-wrapper .item {
        flex: 0 0 calc(33.333% - 1.875rem);
        max-width: calc(33.333% - 1.875rem);
    }
}

@media screen and (max-width: 991px) {
	.expanded-resources-grid-wrapper .item {
		flex: 0 0 calc(50% - 1.875rem);
		max-width: calc(50% - 1.875rem);
	}
}

@media screen and (max-width: 767px) {
	.expanded-resources-grid .container {
		padding: 2.5rem 0;
	}

	.key-resources .title {
		font: normal var(--f-bold) 2rem / 1.1 var(--font-sans);
	}

	.expanded-resources-grid .content {
		font: normal var(--f-medium) 1.13rem / 1.3 var(--font-sans);
	}
}

@media screen and (max-width: 650px) {
	.expanded-resources-grid-wrapper .rs_card .rs_thumb{
		max-width: 100%;
		height: auto;
	}
}

@media screen and (max-width: 600px) {
	.expanded-resources-grid-wrapper .item {
        flex: 0 0 100%;
        max-width: 100%;
    }
	.expanded-resources-grid-wrapper .card .rs_thumb {
		justify-content: flex-start;
	}
}