/* ==========================================================================
   CAREER-V2.CSS — ESdesire Career Pages
   ========================================================================== */

.v2-career-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.v2-career-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: var(--v2-white);
    font-size: 13px;
    font-weight: 600;
}

.v2-career-card-grid,
.v2-career-callout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.v2-career-card,
.v2-career-callout {
    height: 100%;
}

.v2-career-callout {
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    padding: 24px;
}

.v2-career-callout h3 {
    font-family: var(--v2-font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--v2-white);
    margin-bottom: 10px;
}

.v2-career-callout p {
    margin: 0;
    color: var(--v2-gray-400);
    line-height: 1.7;
}

.v2-career-list {
    margin-top: 8px;
}

.v2-career-list li {
    margin-bottom: 10px;
}

.v2-sidebar-title {
    font-family: var(--v2-font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--v2-white);
    margin-bottom: 18px;
}

.v2-career-sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.v2-career-sidebar-list li {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.v2-career-sidebar-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.v2-career-sidebar-list strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--v2-green);
    margin-bottom: 6px;
}

.v2-career-sidebar-list span {
    color: var(--v2-gray-400);
    line-height: 1.6;
}

.v2-career-link-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.v2-career-link-list a {
    display: block;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--v2-gray-400);
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.v2-career-link-list a:hover,
.v2-career-link-list a.is-active {
    color: var(--v2-white);
    border-color: rgba(128,183,55,0.35);
    background: rgba(128,183,55,0.08);
}

.v2-career-cta-card p {
    color: var(--v2-gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.v2-career-contact-block {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.v2-career-contact-block strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--v2-green);
    margin-bottom: 6px;
}

.v2-career-contact-block a {
    color: var(--v2-white);
    word-break: break-word;
}

.v2-career-contact-block a:hover {
    color: var(--v2-green);
}

.v2-career-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media (max-width: 1199px) {
    .v2-career-card-grid,
    .v2-career-callout-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .v2-career-pill-row {
        margin-bottom: 24px;
    }

    .v2-career-card-grid,
    .v2-career-callout-grid {
        grid-template-columns: 1fr;
    }

    .v2-career-callout {
        padding: 20px;
    }
}
