/* =============================================
   特集記事ページ CSS
   ============================================= */

/* 背景は .feature-article 側で担保（全ページ body 上書きはしない） */

/* 全体コンテナ */
.feature-article {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    background: #ffffff;
}

/* 記事ヘッダー */
.feature-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e5e7eb;
}

.feature-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    line-height: 1.4;
    margin-bottom: 12px;
}

.feature-meta {
    color: #6b7280;
    font-size: 14px;
}

/* 記事本文 */
.feature-content {
    margin-bottom: 48px;
    line-height: 1.8;
    color: #374151;
    font-size: 16px;
}

.feature-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #3b82f6;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 32px 0 12px;
}

.feature-content p {
    margin-bottom: 16px;
}

/* スポット一覧エリア */
.feature-spots {
    background: #f0f7ff !important;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 32px;
}

.feature-spots-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #3b82f6;
}

/* スポットリスト */
.feature-spot-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* スポット各アイテム */
.feature-spot-item {
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-spot-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.feature-spot-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    text-decoration: none;
    color: inherit;
    gap: 12px;
}

.feature-spot-link:hover {
    text-decoration: none;
    color: inherit;
}

/* スポット名・住所 */
.feature-spot-main {
    flex: 1;
}

.feature-spot-name {
    font-size: 16px;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 4px;
}

.feature-spot-address {
    font-size: 13px;
    color: #6b7280;
}

/* スポット情報（エリア・ジャンル・評価） */
.feature-spot-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.feature-spot-area,
.feature-spot-genre {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.feature-spot-area {
    background: #eff6ff;
    color: #3b82f6;
}

.feature-spot-genre {
    background: #f0fdf4;
    color: #16a34a;
}

.feature-spot-rating {
    font-size: 13px;
    color: #f59e0b;
    font-weight: 600;
    white-space: nowrap;
}

.feature-spot-review-count {
    color: #9ca3af;
    font-weight: 400;
    font-size: 12px;
}

/* スポットなしメッセージ */
.feature-no-spots {
    text-align: center;
    color: #9ca3af;
    padding: 24px 0;
}

/* =============================================
   レスポンシブ
   ============================================= */
@media (max-width: 768px) {
    .feature-article {
        margin: 20px auto;
        padding: 0 16px;
    }

    .feature-title {
        font-size: 22px;
    }

    .feature-spots {
        padding: 20px 16px;
    }

    .feature-spot-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 14px 16px;
    }

    .feature-spot-info {
        flex-wrap: wrap;
    }
}
