.c-post-card__link {
	position: relative;
}

.c-post-card__thumbnail {
	overflow: hidden;
	width: 100%;
	border: 1px solid rgb(137 138 138 / 30%);
	border-radius: 24px;
	aspect-ratio: 1200/628;
}

.c-post-card__thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.c-post-card__textarea {
	display: grid;
	gap: 12px;
	margin-top: 20px;
}

.c-post-card__date {
	line-height: 1.45;
	color: #898a8a;
	text-align: center;
}

.c-post-card__title {
	font-size: 24px;
	line-height: 1.4;
	letter-spacing: 0;
	text-align: center;
}

.c-post-card__label {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	color: rgb(26 27 29 / 60%);
}

.c-post-card__label::before {
	content: '[';
}

.c-post-card__label::after {
	content: ']';
}

.c-post-card__icon {
	position: absolute;
	inset: 100% auto auto 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	margin-top: 12.5px;
	background-color: #1a1b1d;
	border-radius: 50%;
	aspect-ratio: 1/1;
	opacity: 0;
	transform: translateX(-50%);
	transition: all 0.6s ease-in-out;
	z-index: 1;
}

.c-post-card__icon>span {
	position: relative;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.c-post-card__icon>span::before {
	content: '';
	position: absolute;
	inset: 50% auto auto 50%;
	display: block;
	width: 10px;
	height: 2px;
	background-color: #fff;
	transform: translate(-50%, -50%);
	transition: all 0.5s ease-in-out;
}

.c-post-card__icon>span::after {
	content: '';
	position: absolute;
	inset: 50% auto auto 50%;
	display: block;
	width: 2px;
	height: 10px;
	background-color: #fff;
	transform: translate(-50%, -50%);
	transition: all 0.5s ease-in-out;
}

@media (any-hover: hover) {
	a.c-post-card__link:hover {
		opacity: 1;
	}

	.c-post-card__link:hover .c-post-card__thumbnail img {
		transform: scale(1.1);
	}

	.c-post-card__link:hover .c-post-card__icon {
		opacity: 1;
	}
}