/* stylelint-disable */
.c-card {
	display: flex;
	flex-direction: column;
	position: relative;
	gap: 20px;
}

a.c-card {
	text-decoration: none;
}

.c-card__link {
	position: absolute;
	width: 100%;
	height: 100%;
}

.c-card__image-picture {
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 1.3851;
	width: 100%;
}

.c-card__image-picture img {
	width: 100%;
	height: 100%;
}

.c-card__category {
	margin-bottom: 1em;
}

.c-card__title {
	font-family: var(--font-family-accent);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.04em;
}

@media (min-width: 0) and (max-width: 1023px) {
	.c-card__title {
		font-size: 24px;
	}
}

.c-card__text {
	margin-top: 0.5em;
}

.c-card__meta {
	margin-top: 1em;
	display: flex;
	gap: 0.5em;
}

@media (min-width: 768px) {
	.c-card--search {
		flex-direction: row;
		align-items: center;
		gap: 34px;
	}
	.c-card--search .c-card__image {
		width: 140px;
		flex-shrink: 0;
	}
	.c-card--search .c-card__image-picture {
		aspect-ratio: 1;
		width: 100%;
		height: 100%;
	}
}

.c-card--archive .c-card__title {
	font-size: 24px;
}

.c-card--archive .c-card__text {
	font-size: 16px;
}

/*# sourceMappingURL=card.css.map */