.hot-careers-page {
    background: #f7f8fb;
    color: #17202a;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

.hot-careers-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #17202a;
    color: #fff;
    padding: 72px 0 56px;
}

.hot-careers-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: #17202a;
}

.hot-careers-hero::after {
    display: none;
}

.hot-careers-hero .container,
.hot-careers-section .container,
.career-detail-page .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.hot-careers-hero h1 {
    color: #fff;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    margin: 0 0 14px;
    font-weight: 800;
}

.hot-careers-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.hot-careers-section {
    padding: 42px 0 70px;
}

.hot-careers-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hot-careers-toolbar h2 {
    font-size: 24px;
    margin: 0;
}

.career-search {
    width: min(360px, 100%);
    border: 1px solid #dfe3ea;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
}

.hot-careers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.hot-career-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    background: #fff;
    border: 1px solid #e6e9ef;
    border-radius: 8px;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(17, 24, 39, .06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hot-career-card:hover {
    transform: translateY(-3px);
    border-color: #fd5f00;
    box-shadow: 0 14px 34px rgba(17, 24, 39, .1);
}

.career-card-image {
    aspect-ratio: 16 / 9;
    background: #eef1f5;
    overflow: hidden;
}

.career-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #f7f8fb;
}

.career-card-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #fd5f00;
    font-size: 34px;
}

.career-card-body {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.career-card-body h3 {
    font-size: 18px;
    line-height: 1.35;
    margin: 0;
}

.career-card-body p {
    color: #5b6472;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

.career-meta-list {
    display: grid;
    gap: 8px;
    color: #475569;
    font-size: 13px;
}

.career-meta-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.career-card-link {
    color: #fd5f00;
    font-weight: 700;
    font-size: 14px;
}

.career-detail-page {
    background: #f7f8fb;
    min-height: 100vh;
    padding-bottom: 70px;
}

.career-detail-hero {
    position: relative;
    display: block;
    color: #fff;
    background: #17202a;
    overflow: hidden;
}

.career-detail-hero img {
    position: relative;
    display: block;
    width: 100%;
    height: clamp(220px, 56.25vw, 760px);
    object-fit: cover;
    object-position: center top;
    opacity: 1;
}

.career-detail-hero::after {
    display: none;
}

.career-detail-hero-content {
    position: relative;
    width: 100%;
    padding: 22px 0 28px;
    background: #17202a;
}

.career-detail-hero h1 {
    color: #fff;
    max-width: 920px;
    font-size: clamp(28px, 3.6vw, 48px);
    line-height: 1.12;
    margin: 10px 0 0;
    font-weight: 800;
}

.back-link {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
}

.career-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    margin-top: 28px;
}

.career-article,
.career-sidebar-card {
    background: #fff;
    border: 1px solid #e6e9ef;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(17, 24, 39, .06);
}

.career-article {
    padding: 30px;
}

.career-article h2,
.career-article h3 {
    color: #17202a;
    margin-top: 26px;
}

.career-article p,
.career-article li {
    color: #384253;
    line-height: 1.8;
    font-size: 16px;
}

.career-article ul {
    padding-left: 20px;
}

.career-sidebar-card {
    padding: 22px;
    position: sticky;
    top: 20px;
}

.career-sidebar-card h3 {
    margin: 0 0 12px;
}

.career-sidebar-card .meta-line {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eef1f5;
    color: #475569;
}

.career-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    background: #fd5f00;
    color: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    text-decoration: none;
    font-weight: 800;
}

.career-empty {
    background: #fff;
    border: 1px dashed #d8dde6;
    border-radius: 8px;
    padding: 42px;
    text-align: center;
    color: #64748b;
}

@media (max-width: 992px) {
    .hot-careers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .career-detail-layout {
        grid-template-columns: 1fr;
    }

    .career-sidebar-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .hot-careers-hero {
        padding: 48px 0 38px;
    }

    .hot-careers-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .hot-careers-grid {
        grid-template-columns: 1fr;
    }

    .career-article {
        padding: 20px;
    }

    .career-detail-hero {
        min-height: 360px;
    }

    .career-detail-hero h1 {
        font-size: 30px;
    }
}
