/* カテゴリーページ共通スタイル */
.category-header {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.category-description {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.market-data {
    background-color: #e9ecef;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.job-card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s;
}

.job-card:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.exclusive-badge {
    background-color: #ff6b6b;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: bold;
}

.related-links {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

/* カテゴリページ特有の調整 */
.category-header h1 {
    margin-bottom: 0.5rem;
}

.category-header .lead {
    color: #6c757d;
    margin-bottom: 0;
}

.market-data h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.market-data h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #495057;
}

.related-links h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.related-links ul {
    margin-bottom: 0;
}

.related-links li {
    margin-bottom: 0.5rem;
}

.related-links li:last-child {
    margin-bottom: 0;
}