.article-card {
	width: 100%;
}

.article-card__heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: #222;
	text-align: center;
}

.article-card__heading::before,
.article-card__heading::after {
	content: '◆ ◆ ◆ ◆ ◆';
	letter-spacing: 0.05em;
	font-size: 12px;
	color: #ccc;
}

.article-card__inner {
	display: flex;
	align-items: flex-start;
	gap: 24px;
}

.article-card__image {
	flex: 0 0 30%;
	max-width: 30%;
	border-radius: 16px;
	overflow: hidden;
}

.article-card__image-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.article-card__image img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.article-card__body {
	flex: 1;
	min-width: 0;
}

.article-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-bottom: 8px;
}

.article-card__date {
	font-size: 14px;
	color: #888;
	line-height: 1.4;
}

.article-card__tag {
	display: inline-block;
	padding: 2px 12px;
	border: 1px solid #e53935;
	border-radius: 9999px;
	background-color: #fff;
	color: #e53935;
	font-size: 13px;
	line-height: 1.6;
	white-space: nowrap;
}

.article-card__title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	color: #222;
}

.article-card__title-link {
	color: inherit;
	text-decoration: none;
}

.article-card__title-link:hover {
	text-decoration: underline;
}

.article-card__summary {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: #333;
}

@media (max-width: 580px) {
	.article-card__inner {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}

	.article-card__image {
		flex: none;
		max-width: 80%;
		width: 80%;
	}

	.article-card__body {
		width: 100%;
	}

	.article-card__title {
		font-size: 16px;
	}

	.article-card__summary {
		font-size: 13px;
	}
}
