.asset-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 10px;
}

.asset-grid-title {
	margin-bottom: 0;
	margin-top: 0;
	font-weight: 600;
	font-size: 2rem;
	color: rgba(31, 40, 48, 1);
}

.asset-card {
	font-family: "Inter", sans-serif;
}

.asset-grid-header {
	margin-bottom: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.asset-card.asset-videos,
.asset-card.asset-images {
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 10px;
	position: relative;
}

.asset-card.asset-videos video,
.asset-card.asset-images img {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.asset-card.asset-videos:before,
.asset-card.asset-images:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: 1;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}

.asset-card .asset-overlay {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 2;
	bottom: 0;
	padding: 10px 20px;
	color: #fff;
}

.asset-title {
	font-family: "Inter", sans-serif;
}

.asset-overlay .asset-title {
	font-size: 14px;
	margin-top: 5px;
	margin-bottom: 0;
	color: #fff;
	font-weight: 600;
}

.asset-card.asset-videos .asset-time {
	font-size: 14px;
	font-weight: 600;
}

a.asset-grid-cta {
	font-size: 16px;
	padding: 10px 24px;
	line-height: 22px;
	text-transform: capitalize;
	color: #000;
	border-radius: 8px;
	display: inline-block;
	font-weight: 600;
	background-color: rgba(255, 225, 33, 1);
}

.asset-grid-cta:hover {
	background-color: rgba(255, 225, 33, 0.8);
}

.asset-card.asset-audio {
	border: 1px solid rgba(185, 188, 193, 1);
	padding: 24px;
	border-radius: 10px;
}
.asset-card.asset-audio .asset-audio-wave {
	margin-bottom: 20px;
}
.asset-card.asset-audio .asset-audio-wave img {
	margin: 0 auto;
	display: block;
	max-width: 300px;
	width: 100%;
	filter: saturate(0.1) brightness(1.3) grayscale(1);
}
.asset-card.asset-audio .asset-audio-footer {
	display: flex;
	gap: 1rem;
}
.asset-card.asset-audio .asset-time {
	font-weight: 600;
	font-size: 14px;
	color: rgba(31, 40, 48, 1);
	margin-top: 8px;
}
.asset-card.asset-audio .asset-audio-play {
	flex-grow: 0;
	flex-shrink: 0;
}
.asset-card.asset-audio .asset-audio-play img {
	width: 62px;
	height: auto;
}
.asset-card.asset-audio .asset-title {
	font-size: 18px;
	font-weight: 600;
	color: rgba(31, 40, 48, 1);
	line-height: 25px;
	margin-top: 0;
	margin-bottom: 0;
}

@media only screen and (max-width: 760px) {
	.asset-grid {
		grid-template-columns: repeat(1, minmax(200px, 1fr));
	}
	.asset-grid-header {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
	.asset-grid-title {
		font-size: 24px;
		line-height: 30px;
	}
}
