#content #tfgReportFeed,
#tfgReportFeed {
	--tfg-report-bg: rgba(95, 119, 131, 0.42);
	--tfg-report-bg-hover: rgba(96, 143, 166, 0.58);
	--tfg-report-border: rgba(153, 170, 180, 0.28);
	--tfg-report-title: #d6e0e5;
	--tfg-report-date: #99aab4;
	--tfg-report-text: rgba(222, 222, 222, 0.84);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	width: 100%;
	max-width: 1170px;
	margin: 0 auto;
	box-sizing: border-box;
}

#tfgReportFeed .tfg-report-card {
	min-width: 0;
	margin: 0;
	background: var(--tfg-report-bg);
	border: 1px solid var(--tfg-report-border);
	border-radius: 6px;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
	overflow: hidden;
	transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

#tfgReportFeed .tfg-report-card:hover {
	background: var(--tfg-report-bg-hover);
	border-color: rgba(153, 170, 180, 0.52);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
	transform: translateY(-3px);
}

#content #tfgReportFeed .tfg-report-card__link,
#content #tfgReportFeed .tfg-report-card__link:visited,
#tfgReportFeed .tfg-report-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

#content #tfgReportFeed .tfg-report-card__link:hover,
#content #tfgReportFeed .tfg-report-card__link:active {
	color: inherit;
	text-decoration: none;
}

#tfgReportFeed .tfg-report-card__media {
	display: block;
	width: 100%;
	aspect-ratio: 420 / 296;
	background: rgba(0, 0, 0, 0.28);
	overflow: hidden;
}

#tfgReportFeed .tfg-report-card__img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	border: 0;
	box-shadow: none;
	object-fit: cover;
	transition: opacity .18s ease-out, transform .24s ease;
}

#tfgReportFeed .tfg-report-card:hover .tfg-report-card__img {
	transform: scale(1.04);
}

#tfgReportFeed .tfg-report-card.no-thumb .tfg-report-card__media {
	display: none;
}

#tfgReportFeed .tfg-report-card__content {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
	flex-direction: column;
	padding: 16px 17px 18px;
	box-sizing: border-box;
}

#tfgReportFeed .tfg-report-card__date {
	display: inline-block;
	align-self: flex-start;
	color: #fff;
	background: #5f7783;
	font: 700 12px/16px 'Open Sans', Arial, Helvetica, sans-serif;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 5px 8px;
	margin: 0 0 11px;
	border-radius: 3px;
}

#tfgReportFeed .tfg-report-card__title {
	display: block;
	color: var(--tfg-report-title);
	font: 400 22px/26px 'Philosopher', Georgia, "Times New Roman", Times, serif;
	margin: 0 0 9px;
}

#tfgReportFeed .tfg-report-card__desc {
	display: block;
	color: var(--tfg-report-text);
	font: 400 14px/21px 'Open Sans', Arial, Helvetica, sans-serif;
	margin: 0;
}

#tfgReportFeed .tfg-report-card__desc .more {
	display: none;
}

#tfgReportFeed .tfg-report-card__more {
	display: inline-block;
	align-self: flex-start;
	color: #fff;
	font: 700 12px/16px 'Open Sans', Arial, Helvetica, sans-serif;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-top: auto;
	padding-top: 15px;
}

#tfgReportFeed .tfg-report-card__more:after {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	margin-left: 8px;
	vertical-align: 1px;
}

@media (max-width: 768px) {
	#content #tfgReportFeed,
	#tfgReportFeed {
		grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
		gap: 22px;
	}
}

@media (max-width: 520px) {
	#content #tfgReportFeed,
	#tfgReportFeed {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	#tfgReportFeed .tfg-report-card__content {
		padding: 15px;
	}

	#tfgReportFeed .tfg-report-card__title {
		font-size: 20px;
		line-height: 24px;
	}
}
