/**
 * andW おたより管理 - フロントCSS
 * SWELLテーマとの調和を意識したシンプルなスタイル
 */

/* ===========================
   コンテナ
=========================== */
.andw-otayori-list {
	display: flex;
	flex-direction: column;
	gap: 1.5em;
	margin: 1.5em 0;
}

/* ===========================
   各レビューカード
=========================== */
.andw-otayori-item {
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 1.2em 1.5em;
	background: #fff;
	line-height: 1.7;
}

/* ===========================
   ヘッダー（投稿者・地域）
=========================== */
.andw-otayori-item__header {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	align-items: center;
	margin-bottom: 0.4em;
}

.andw-otayori-item__author {
	font-weight: bold;
	font-size: 0.95em;
}

.andw-otayori-item__region {
	font-size: 0.85em;
	color: #666;
}

.andw-otayori-item__region::before {
	content: "（";
}

.andw-otayori-item__region::after {
	content: "）";
}

/* ===========================
   ツアー情報
=========================== */
.andw-otayori-item__tour {
	font-size: 0.85em;
	color: #555;
	margin-bottom: 0.6em;
	padding-bottom: 0.4em;
	border-bottom: 1px dashed #ddd;
}

/* ===========================
   本文
=========================== */
.andw-otayori-item__body {
	font-size: 0.95em;
	color: #333;
}

/* ===========================
   「もっと見る」リンク
=========================== */
.andw-otayori-more {
	text-align: right;
	margin-top: 0.8em;
}

.andw-otayori-more a {
	display: inline-block;
	padding: 0.3em 1em;
	border: 1px solid currentColor;
	border-radius: 3px;
	font-size: 0.9em;
	text-decoration: none;
}

/* ===========================
   ページネーション
=========================== */
.andw-otayori-pagination {
	margin: 1.5em 0;
	text-align: center;
}

.andw-otayori-pagination .page-numbers {
	display: inline-block;
	padding: 0.3em 0.7em;
	margin: 0 0.2em;
	border: 1px solid #ddd;
	border-radius: 3px;
	text-decoration: none;
	font-size: 0.9em;
}

.andw-otayori-pagination .page-numbers.current {
	background: #333;
	color: #fff;
	border-color: #333;
}

/* ===========================
   優先モード見出し
=========================== */
.andw-otayori-priority-heading {
	font-size: 1.1em;
	margin: 0 0 0.8em;
	padding-left: 0.5em;
	border-left: 4px solid #888;
}

.andw-otayori-priority-heading--other {
	margin-top: 1.5em;
	border-left-color: #bbb;
	color: #666;
}

.andw-otayori-separator {
	border: none;
	border-top: 1px solid #e0e0e0;
	margin: 1.5em 0;
}

/* ===========================
   フォールバック通知
=========================== */
.andw-otayori-fallback-notice {
	font-size: 0.85em;
	color: #777;
	font-style: italic;
	margin-bottom: 0.8em;
}

/* ===========================
   レスポンシブ
=========================== */
@media (max-width: 640px) {
	.andw-otayori-item {
		padding: 1em;
	}
}
