/* ==========================================================================
   EMPLOYERS PAGE
   ========================================================================== */
.emp-page { background: #FFFFFF; }

/* Hero */
.emp-hero {
    background: linear-gradient(120deg, #F7E4EE 0%, #FCEFF6 45%, #F3E9F5 100%);
    border-bottom-left-radius: 34px;
    border-bottom-right-radius: 34px;
    padding: 40px 0 46px;
    text-align: center;
}
.emp-eyebrow {
    display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: #C05680; margin-bottom: 10px;
}
.emp-hero-title {
    font-family: var(--sf-font);
    font-size: 42px; font-weight: 800; color: #2D0C1E; margin: 0 0 10px;
}
.emp-hero-title span {
    background: linear-gradient(90deg, #C05680, #8E2A59);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.emp-hero-sub { color: #6E5C66; font-size: 15px; margin-bottom: 26px; }

.emp-search {
    display: flex; align-items: center; gap: 10px;
    background: #FFFFFF; border-radius: 16px; padding: 10px;
    box-shadow: 0 14px 34px rgba(142, 42, 89, 0.10);
    max-width: 820px; margin: 0 auto;
}
.emp-search-field { display: flex; align-items: center; gap: 10px; flex: 1 1 0; min-width: 0; padding: 0 14px; text-align: left; }
.emp-search-field.emp-search-loc { border-left: 1px solid #EEE0E8; flex: 0 0 36%; }
.emp-search-field i { color: #C05680; font-size: 15px; }
.emp-search-field input { border: 0; outline: 0; width: 100%; font-size: 14px; color: #2D0C1E; background: transparent; height: 44px; }
.emp-search-field input::placeholder { color: #9A8A93; }
.emp-search-btn {
    border: 0; border-radius: 12px; padding: 12px 30px; white-space: nowrap;
    background: linear-gradient(135deg, #4A1436 0%, #7A1E4C 100%);
    color: #FFFFFF; font-weight: 700; font-size: 14px;
}

/* Body */
.emp-body { padding: 34px 0 70px; }
.emp-results-bar { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.emp-results-count { font-size: 24px; font-weight: 800; color: #2D0C1E; margin: 0; }
.emp-results-sub { color: #8A7A83; font-size: 13px; margin: 2px 0 0; }
.emp-tools { display: flex; align-items: center; gap: 10px; }
.emp-tools-label { color: #6E5C66; font-size: 13px; }
.emp-perpage select {
    border: 1px solid #EAD9E2; border-radius: 10px; padding: 8px 30px 8px 12px; font-size: 13px;
    color: #2D0C1E; background: #fff; appearance: none; -webkit-appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C05680' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 10px center;
}

/* Cards */
.emp-card {
    height: 100%;
    background: #FFFFFF; border: 1px solid #F1E4EB; border-radius: 18px;
    padding: 22px; box-shadow: 0 8px 24px rgba(142, 42, 89, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    display: flex; flex-direction: column;
}
.emp-card:hover { box-shadow: 0 16px 36px rgba(142, 42, 89, 0.12); border-color: #EBC7D9; transform: translateY(-3px); }
.emp-card-top { display: flex; gap: 16px; align-items: flex-start; }
.emp-card-logo { flex: 0 0 62px; }
.emp-card-logo img {
    width: 62px; height: 62px; border-radius: 14px; object-fit: cover;
    background: #F6EEF2; border: 1px solid #F1E4EB; padding: 4px;
}
.emp-card-info { flex: 1 1 auto; min-width: 0; }
.emp-name { font-size: 18px; font-weight: 700; color: #1F1620; margin: 0 0 8px; }
.emp-meta {
    display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
    color: #6B5A63; font-size: 13.5px; text-decoration: none;
}
.emp-meta i { color: #C05680; font-size: 13px; width: 15px; flex: 0 0 15px; }
.emp-meta span { overflow-wrap: anywhere; }
a.emp-meta:hover span { color: #8E2A59; }
.emp-vacancy {
    flex: 0 0 auto; white-space: nowrap; font-size: 12.5px; font-weight: 600; color: #8E2A59;
    background: #F7E7F0; border-radius: 20px; padding: 6px 12px;
}
.emp-vacancy b { color: #C05680; }
.emp-card-foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid #F3E9EF; }
.emp-view {
    display: inline-flex; align-items: center; gap: 7px;
    color: #8E2A59; font-weight: 700; font-size: 14px; text-decoration: none;
    transition: gap 0.25s ease;
}
.emp-view i { font-size: 12px; color: #C05680; }
.emp-view:hover { gap: 12px; color: #C05680; }

/* See More + empty */
.emp-more-wrap { text-align: center; margin-top: 36px; }
.emp-more {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 34px; border-radius: 30px; text-decoration: none;
    background: linear-gradient(135deg, #8E2A59, #C05680); color: #fff; font-weight: 700; font-size: 14px;
    box-shadow: 0 10px 24px rgba(142, 42, 89, 0.28); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.emp-more:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(142, 42, 89, 0.4); color: #fff; }
.emp-empty { text-align: center; padding: 60px 20px; color: #8A7A83; }
.emp-empty i { font-size: 40px; color: #E0C4D2; margin-bottom: 14px; }
.emp-empty p { margin-bottom: 16px; }

@media (max-width: 767.98px) {
    .emp-hero-title { font-size: 30px; }
    .emp-search { flex-wrap: wrap; }
    .emp-search-field.emp-search-loc { border-left: 0; flex-basis: 100%; }
    .emp-search-btn { flex: 1; }
    .emp-card-top { flex-wrap: wrap; }
    .emp-vacancy { order: 3; }
}
