/* Developer Center Card Style */
.dc-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	border-radius: 18px;
	overflow: hidden;
	background: var(--bg-light-override, #f5f5f7);
	margin-bottom: 24px;
}
body[data-color-scheme="dark"] .dc-card,
.theme-dark .dc-card {
	background: var(--bg-light-override, #1d1d1f);
}
.dc-card-pin {
	width: 58px;
	height: auto;
	margin-bottom: 1.5em;
}
.dc-card-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 3em;
}
.dc-card-headline {
	font-size: 32px;
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.015em;
	margin: 0 0 12px;
}
.dc-card-p {
	margin-bottom: 0.8em;
}
.dc-card-link {
	margin-top: 1.5em;
}
.dc-card-media {
	margin: 0;
}
.dc-card-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dc-card-image-right {
	object-position: 75% center;
}
@media only screen and (max-width: 1068px) {
	.dc-card-copy {
		padding: 2.5em;
	}
	.dc-card-headline {
		font-size: 28px;
	}
}
@media only screen and (max-width: 734px) {
	.dc-card {
		grid-template-columns: 1fr;
		border-radius: 12px;
	}
	.dc-card-copy {
		padding: 2em;
	}
	.dc-card-image {
		height: auto;
		aspect-ratio: 16 / 9;
	}
}
/* Default Tile Card Layout */
a.block-link {
	display: flex;
	flex-direction: column;
	height: 100%;
}
a.block-link .tile.tile-rounded,
.grid-item > .tile.tile-rounded {
	display: flex;
	flex-direction: column;
	flex: 1;
	height: 100%;
}
.tile-content.padding-top-small {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding-bottom: 2.5em;
}
.tile-content.padding-top-small p:not(.date-label):not(.link) {
	margin-bottom: 0;
}
.tile-content.padding-top-small .link {
	position: static;
	margin-top: auto;
	padding-top: 1.5em;
}
.tile-content.padding-top-small ul.links-stacked {
	margin-top: auto;
	padding-top: 1.5em;
}
.tile-content.padding-top-small ul.bullet {
	margin-top: 1em;
}
.tile-content.padding-top-small ul.bullet li:not(:last-child) {
	margin-bottom: 0.8em;
}
.date-label {
	color: var(--color-text-secondary);
	margin-top: 0.75em;
	margin-bottom: 0;
}
.tile-content.icon-left .eyebrow.badge {
	display: inline-block;
	margin-left: 148px;
	margin-top: 1em;
}
@media only screen and (max-width: 734px) {
	.tile-content.icon-left .eyebrow.badge {
		margin-left: 0;
	}
}
