.performance-report-card {
	margin: 0 auto;
    max-width: 1200px;
    padding-bottom: 72px;
}

.report-card-container {
	display: flex;
    align-items: stretch;
    background-color: var(--white);
    border-radius: var(--border-radius);
}

.report-card-container .report-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.report-card-container .report-content .accordion-button {
	padding-left: 0;
    padding-right: 0;
    background: none;
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 18px;
}

.report-card-container .report-content .accordion-button:focus {
	box-shadow: none;
}

.report-title span {
  display: block;
}

.report-description br {
    display: none;
}

.report-image {
	flex-shrink: 0;
	width: 532px;
	height: 532px;
	overflow: hidden;
	background-color: #f0f0f0;
    border-radius: 4px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.report-image-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.report-downloads {
	display: flex;
	flex-direction: column;
	gap: 4px;
	max-width: 100%;
}

.report-downloads .link {
    text-transform: none;
	color: var(--dark-color);
}

@media (max-width: 1200px) {
	.report-card-container {
		flex-direction: column;
		gap: 30px;
	}

	.report-image {
		width: 100%;
		height: 400px;
	}

	.report-content {
		padding: 30px;
	}
}

@media (max-width: 768px) {

	.performance-report-card {
		padding-left: 20px;
		padding-right: 20px;
	}

}

@media (max-width: 480px) {
	/* .hero-image {
		height: 250px;
	} */

}
