/**
 * 文字数カウント - 専用スタイル
 */

/* 詳細分析セクション */
.detail-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-stats-group {
    
}

.detail-stats-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--color-border);
}

.detail-stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.detail-stat-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    min-width: 140px;
}

.detail-stat-label {
    font-size: 13px;
    color: var(--color-text-muted);
}

.detail-stat-value {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
    .detail-stat-item {
        min-width: calc(50% - 12px);
    }
    
    .action-section {
        flex-direction: column;
    }
    
    .action-section .btn-secondary,
    .action-section .btn-primary {
        width: 100%;
    }
}
