/* ==================== EMPLOYER PROFILE PAGE ==================== */

.employer-page {
    max-width: var(--gj-max-width);
    margin: 0 auto;
    padding: var(--gj-space-xl) var(--gj-page-px) var(--gj-space-3xl);
    display: flex;
    flex-direction: column;
    gap: var(--gj-space-xl);
}


/* ==================== HEADER ==================== */

.employer-page-header {
    display: flex;
    gap: var(--gj-space-lg);
    align-items: flex-start;
}

.employer-page-logo {
    width: 96px;
    height: 96px;
    border-radius: var(--gj-radius-lg);
    flex-shrink: 0;
    overflow: hidden;
    background: var(--gj-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.employer-page-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.employer-page-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--gj-space-sm);
}

.employer-page-title-row h1 {
    font-size: var(--gj-text-2xl);
    font-weight: 700;
    margin: 0;
}

.employer-type {
    font-size: var(--gj-text-sm);
    color: var(--gj-text-muted);
}

.employer-page-location {
    font-size: var(--gj-text-sm);
    color: var(--gj-text-muted);
    margin-top: var(--gj-space-xs);
}

.employer-page-description {
    font-size: var(--gj-text-base);
    color: var(--gj-text-secondary);
    line-height: 1.6;
    margin-top: var(--gj-space-sm);
}

.employer-page-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gj-space-sm) var(--gj-space-md);
    margin-top: var(--gj-space-md);
}

.employer-page-links a {
    font-size: var(--gj-text-sm);
    color: var(--gj-brand);
}

.employer-page-links a:hover {
    color: var(--gj-brand-dark);
    text-decoration: underline;
}

.employer-page-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--gj-transition-fast);
}

.employer-page-social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.employer-page-social-icon:hover {
    transform: scale(1.1);
}


/* ==================== JOBS SECTION ==================== */

.employer-page-jobs h2 {
    font-size: var(--gj-text-lg);
    font-weight: 700;
    margin-bottom: var(--gj-space-md);
}


/* ==================== RESPONSIVE ==================== */

@media (max-width: 639px) {
    .employer-page-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .employer-page-title-row {
        justify-content: center;
    }

    .employer-page-links {
        justify-content: center;
    }
}