/* ========================================
   Drink (kuchikomi) Single Page
   ======================================== */

.p-single--drink {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.p-single--drink .p-single__header {
	margin-bottom: 40px;
}

.p-drink__header-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
}

.p-drink__tag {
	display: inline-block;
	padding: 5px 14px;
	background: #f0f0f0;
	border-radius: 3px;
	font-size: 1em;
	font-weight: bold;
	color: #555;
	text-decoration: none;
}

.p-drink__tag:hover {
	background: #e0e0e0;
}

.p-drink__tag--series {
	background: #e8f0e8;
	color: #3a6b3a;
}

.p-drink__tag--series:hover {
	background: #d4e6d4;
}

/* Sections */
.p-drink__section {
	margin-bottom: 40px;
}

.p-drink__section-title {
	font-size: 1.2em;
	font-weight: bold;
	padding: 8px 12px;
	border-left: 4px solid #c8a96e;
	background: #faf8f4;
	margin-bottom: 16px;
}

/* Info Table */
.p-drink__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95em;
}

.p-drink__table th,
.p-drink__table td {
	padding: 10px 14px;
	border: 1px solid #e0ddd8;
	vertical-align: top;
	line-height: 1.6;
}

.p-drink__table th {
	width: 140px;
	background: #f7f5f0;
	font-weight: bold;
	white-space: nowrap;
	color: #555;
}

.p-drink__table td a {
	color: #c8a96e;
}

.p-drink__table td a:hover {
	text-decoration: underline;
}

/* Body content */
.p-drink__body {
	margin-bottom: 40px;
}

/* External Links */
.p-drink__ext-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.p-drink__ext-link-card {
	display: flex;
	flex-direction: column;
	border: 1px solid #e0ddd8;
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	background: #fff;
	transition: box-shadow 0.2s, transform 0.2s;
}

.p-drink__ext-link-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.p-drink__ext-link-thumb img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.p-drink__ext-link-body {
	padding: 10px 12px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	flex: 1;
}

.p-drink__ext-link-title {
	font-size: 0.88em;
	font-weight: bold;
	line-height: 1.45;
	color: #333;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.p-drink__ext-link-desc {
	font-size: 0.78em;
	color: #777;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.p-drink__ext-link-domain {
	font-size: 0.75em;
	color: #c8a96e;
	margin-top: auto;
	padding-top: 4px;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.p-single--drink {
		padding: 0 12px;
	}

	.p-drink__table th {
		width: 110px;
		font-size: 0.85em;
	}

	.p-drink__ext-links {
		grid-template-columns: 1fr;
	}
}

/* ── この酒が買える・飲めるお店 ── */
.p-drink__shop-subhead {
	font-size: 0.95em;
	font-weight: bold;
	color: #555;
	margin-bottom: 10px;
	padding-left: 4px;
}

.p-drink__shop-subhead:not(:first-child) {
	margin-top: 20px;
}

.p-drink__shops {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 12px;
	margin-bottom: 8px;
}

.p-drink__shop-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border: 1px solid #e0ddd8;
	border-radius: 6px;
	text-decoration: none;
	color: inherit;
	background: #fff;
	transition: box-shadow 0.2s, transform 0.15s;
}

.p-drink__shop-card:hover {
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	transform: translateY(-1px);
}

.p-drink__shop-thumb {
	width: 64px;
	height: 64px;
	object-fit: cover;
	flex-shrink: 0;
	border-radius: 4px;
}

.p-drink__shop-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
	min-width: 0;
}

.p-drink__shop-name {
	font-size: 0.95em;
	font-weight: bold;
	color: #333;
	line-height: 1.4;
}

.p-drink__shop-addr {
	font-size: 0.78em;
	color: #888;
	line-height: 1.3;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

/* ---- アイキャッチ: 600x600固定・小サイズは拡大しない ---- */
.p-single--drink .p-single__header-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 600px;
	height: 600px;
	max-width: 100%;
	background: #fff;
	margin-left: auto;
	margin-right: auto;
}
.p-single--drink .p-single__header-image img {
	width: auto !important;
	height: auto !important;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
