/* ================================================
   CareerEdge Page Styles - 転職サポートサービス
   ================================================ */

/* Job Site Access Section - CareerEdge専用セクション */
.job-site-section {
    padding: var(--section-padding-mobile);
    background: linear-gradient(135deg, var(--color-bg-light), var(--color-white));
    position: relative;
    overflow: hidden;
}

.job-site-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 184, 28, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 152, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.job-site-content {
    text-align: center;
    max-width: 800px;
    margin: var(--spacing-2xl) auto 0;
    position: relative;
    z-index: 1;
}

.job-site-description {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-2xl);
    font-weight: var(--font-weight-medium);
}

.job-site-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    justify-content: center;
    align-items: stretch;
}

/* Responsive - Desktop */
@media (min-width: 769px) {
    .job-site-section {
        padding: var(--section-padding);
    }

    .job-site-description {
        font-size: var(--font-size-xl);
    }

    .job-site-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
}
