/* ========================================
   ニュース詳細ページ専用スタイル
   共通スタイルは page-detail.css（detail-page-*）
   BEM命名
   ======================================== */

/* ヘッダー：日付が meta 内のため余白調整 */
.news-detail .detail-page-header__date {
    margin-bottom: 0;
}

.news-detail .detail-page-header__meta {
    margin-bottom: var(--spacing-lg);
}

/* 本文：複数段落の余白 */
.news-detail .detail-page-section__text {
    margin-bottom: var(--spacing-lg);
}

.news-detail .detail-page-section__text:last-child {
    margin-bottom: 0;
}

/* ========================================
   埋め込み画像（ニュース・ブログ用）
   ======================================== */
.detail-page-figure {
    margin: var(--spacing-3xl) 0;
}

.detail-page-figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.detail-page-figure__caption {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-top: var(--spacing-md);
    text-align: center;
}

/* ========================================
   記事内お問い合わせCTA（ニュース専用）
   ======================================== */
.detail-page-contact-box {
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-xl);
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    border-radius: 10px;
}

.detail-page-contact-box__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
}

.detail-page-contact-box__text {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-primary);
    line-height: 1.6;
    margin: 0 0 var(--spacing-xs);
}

.detail-page-contact-box__text:last-child {
    margin-bottom: 0;
}