/* 通常カード */
.my-blogcard {
	display: flex;
	align-items: center;
	text-decoration: none;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 12px;
	padding: 1rem;
	margin: 1.5rem 0;
	box-shadow: 0 3px 8px rgba(0,0,0,0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.my-blogcard:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.my-blogcard .card-img {
	width: 120px;
	height: 70px;
	flex-shrink: 0;
	margin-right: 1rem;
	overflow: hidden;
	border-radius: 8px;
}

.my-blogcard .card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.my-blogcard .entry-title {
	flex: 1;
	font-weight: 600;
	color: var(--text-color, #252a65);
}

.my-blogcard-wrapper.travelingspirit .my-blogcard {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 12px;
	padding: 1.5rem 1rem 1rem; /* ← 上だけ少し広げる */
	display: flex;
	align-items: center;
	position: relative;
	flex-direction: row;
}

.my-blogcard-wrapper.travelingspirit .travelingspirit-label {
	position: absolute;
	top: -10px;
	left: 1rem;
	background: #62b4ff;
	color: #fff;
	font-weight: bold;
	padding: 0.3rem 0.7rem;
	border-radius: 8px;
	font-size: 0.75rem;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* タイトルとの間隔を確保 */
.my-blogcard.travelingspirit .entry-title {
	margin-top: 0.2rem; /* ラベルと本文の間に少し余裕 */
}

@media (max-width: 700px) {
	.my-blogcard-wrapper.travelingspirit .my-blogcard {
		flex-direction: column;
		align-items: flex-start;
	}

	.my-blogcard-wrapper.travelingspirit .card-img {
		width: 100%;
		height: auto;
		margin-right: 0;
		margin-bottom: 0.5rem;
	}

	.my-blogcard-wrapper.travelingspirit .card-img img {
		aspect-ratio: 16 / 9;
	}
}