.tfb3-shell,
.tfb3-shell * {
	box-sizing: border-box;
}

.tfb3-shell {
	width: 100%;
}

.tfb3 {
	--tfb3-text: #0b1d3a;
	--tfb3-muted: #667085;
	--tfb3-border: #e3e6eb;
	--tfb3-dark: #171717;
	--tfb3-navy: #071a3d;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: clamp(22px, 3vw, 36px);
	border-radius: 26px;
	background: #f7f7f5;
	color: var(--tfb3-text);
	font-family: inherit;
}

.tfb3__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 22px;
}

.tfb3__eyebrow {
	display: inline-flex;
	align-items: center;
	min-height: 31px;
	padding: 0 12px;
	border-radius: 999px;
	background: #e9e9e7;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .055em;
}

.tfb3__header h2,
.tfb3--empty h2 {
	margin: 10px 0 5px !important;
	color: var(--tfb3-text) !important;
	font-size: clamp(25px, 2.4vw, 37px) !important;
	font-weight: 750 !important;
	line-height: 1.12 !important;
	letter-spacing: -.03em;
}

.tfb3__header p {
	margin: 0 !important;
	color: var(--tfb3-muted) !important;
	font-size: 15px !important;
	line-height: 1.5 !important;
}

.tfb3__all {
	flex: 0 0 auto;
	padding-bottom: 4px;
	color: var(--tfb3-text) !important;
	font-size: 15px;
	font-weight: 750;
	text-decoration: none !important;
}

.tfb3__all:hover {
	text-decoration: underline !important;
	text-underline-offset: 4px;
}

.tfb3__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.tfb3__card {
	display: grid;
	grid-template-columns: minmax(155px, .76fr) minmax(235px, 1.24fr);
	min-width: 0;
	min-height: 230px;
	overflow: hidden;
	border: 1px solid var(--tfb3-border);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(16, 24, 40, .07);
	transition: transform .2s ease, box-shadow .2s ease;
}

.tfb3__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 36px rgba(16, 24, 40, .11);
}

.tfb3__media {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 230px;
	max-height: 260px;
	padding: 12px;
	overflow: hidden;
	background: var(--tfb3-navy);
	text-decoration: none !important;
}

.tfb3__card--politics .tfb3__media {
	background: #18213a;
}

.tfb3__media img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-height: 236px !important;
	margin: 0 !important;
	object-fit: contain !important;
	object-position: center !important;
}

.tfb3__fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 200px;
	color: rgba(255,255,255,.92);
	font-size: 21px;
	font-weight: 850;
	letter-spacing: .08em;
	background: radial-gradient(circle at 25% 20%, rgba(255,255,255,.16), transparent 34%);
}

.tfb3__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-width: 0;
	padding: 22px;
}

.tfb3__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 11px;
}

.tfb3__category {
	display: inline-flex;
	align-items: center;
	min-height: 27px;
	padding: 0 10px;
	border-radius: 999px;
	color: #fff;
	background: var(--tfb3-dark);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .035em;
}

.tfb3__card--politics .tfb3__category {
	background: #2e3a59;
}

.tfb3__meta time {
	color: var(--tfb3-muted);
	font-size: 13px;
	font-weight: 700;
}

.tfb3__content h3 {
	margin: 0 0 7px !important;
	color: var(--tfb3-text) !important;
	font-size: clamp(21px, 1.8vw, 28px) !important;
	font-weight: 750 !important;
	line-height: 1.15 !important;
	letter-spacing: -.025em;
}

.tfb3__content > p {
	margin: 0 0 17px !important;
	color: var(--tfb3-muted) !important;
	font-size: 14px !important;
	line-height: 1.5 !important;
}

.tfb3__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 17px;
	border-radius: 999px;
	color: #fff !important;
	background: var(--tfb3-dark);
	font-size: 14px;
	font-weight: 750;
	text-decoration: none !important;
	transition: opacity .2s ease, transform .2s ease;
}

.tfb3__button:hover {
	color: #fff !important;
	opacity: .9;
	transform: translateY(-1px);
}

.tfb3__previous {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
	font-size: 12px;
}

.tfb3__previous > span {
	color: var(--tfb3-muted);
}

.tfb3__previous a {
	color: var(--tfb3-text) !important;
	font-weight: 700;
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

.tfb3--empty {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

@media (max-width: 1100px) {
	.tfb3__grid {
		grid-template-columns: 1fr;
	}

	.tfb3__card {
		grid-template-columns: minmax(200px, .55fr) minmax(300px, 1.45fr);
	}
}

@media (max-width: 680px) {
	.tfb3 {
		padding: 19px;
		border-radius: 19px;
	}

	.tfb3__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 11px;
	}

	.tfb3__card {
		grid-template-columns: 1fr;
		border-radius: 17px;
	}

	.tfb3__media {
		min-height: 190px;
		max-height: 210px;
	}

	.tfb3__media img {
		max-height: 190px !important;
	}

	.tfb3__content {
		padding: 20px;
	}

	.tfb3__button {
		width: 100%;
	}

	.tfb3--empty {
		align-items: flex-start;
		flex-direction: column;
	}
}
