/* Employer public profile — matches company_profile_vue_js mock */
.cw-ep-page {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #f9fafb;
    color: #1f2937;
}

.cw-ep-nav {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.cw-ep-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
}

.cw-ep-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.cw-ep-banner {
    height: 8rem;
    background-size: cover;
    background-position: center;
    background-color: #334155;
}

@media (min-width: 768px) {
    .cw-ep-banner {
        height: 11rem;
    }
}

.cw-ep-banner--fallback {
    background: linear-gradient(to right, #334155, #1e293b);
}

.cw-ep-logo-wrap {
    width: 5rem;
    height: 5rem;
    margin-top: -2.5rem;
    background: #fff;
    padding: 0.35rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .cw-ep-logo-wrap {
        width: 7rem;
        height: 7rem;
        margin-top: -3.5rem;
    }
}

.cw-ep-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.75rem;
}

.cw-ep-logo-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #334155;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 0.75rem;
}

.cw-ep-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #f1f5f9;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.cw-ep-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.cw-ep-btn:hover {
    background: #f9fafb;
    color: #111827;
}

.cw-ep-btn--dark {
    background: #020617;
    color: #fff;
    border-color: #020617;
}

.cw-ep-btn--dark:hover {
    background: #1e293b;
    color: #fff;
}

.cw-ep-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .cw-ep-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.cw-ep-section-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cw-ep-meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.cw-ep-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.875rem;
}

.cw-ep-meta-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cw-ep-job-card {
    display: block;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cw-ep-job-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.cw-ep-map {
    height: 7rem;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    margin-top: 1rem;
}

.cw-ep-map #leaflet-map,
.cw-ep-map #google-map {
    height: 7rem !important;
    width: 100%;
}

.cw-ep-social {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.2s;
}

.cw-ep-social:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #2563eb;
}

.cw-ep-toast {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #111827;
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 100;
    display: none;
}

.cw-ep-toast.is-visible {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cw-ep-empty {
    border: 1px dashed #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    background: #f9fafb;
}

.cw-ep-contact-panel {
    display: none;
}

.cw-ep-contact-panel.is-open {
    display: block;
}

.cw-ep-verified {
    color: #0ba02c;
    display: inline-flex;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.35rem;
}
