:root {
    --brand-navy: #0f2748;
    --brand-navy-soft: #1c3b67;
    --brand-cyan: #e8b84b;
    --brand-sky: #f5d080;
    --surface: #f7f3ea;
    --surface-card: #ffffff;
    --text-strong: #0f172a;
    --text-muted: #64748b;
    --border-soft: #dbe5f3;
    --danger: #f04438;
    --warning: #f79009;
    --success: #12b76a;
    --shadow-soft: 0 14px 38px rgba(15, 39, 72, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text-strong);
    background: var(--surface);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

p {
    line-height: 1.65;
}

.recruit-shell {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at top right,
            rgba(232, 184, 75, 0.3),
            rgba(15, 39, 72, 0.95) 50%
        ),
        linear-gradient(140deg, #0e1f3c, #1d3e66);
    color: #fff;
}

.recruit-nav {
    max-width: 1120px;
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recruit-brand {
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
}

.recruit-brand span {
    color: var(--brand-sky);
}

.recruit-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.recruit-menu a {
    color: #f4e5c2;
    font-size: 0.95rem;
    font-weight: 500;
}

.btn-solid,
.btn-outline {
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 18px;
    transition: 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.btn-solid {
    background: var(--brand-cyan);
    color: #122b45;
}

.btn-solid:hover {
    background: #f2c96c;
    color: #122b45;
}

.btn-outline {
    border-color: rgba(245, 208, 128, 0.7);
    color: #f5d080;
}

.btn-outline:hover {
    border-color: var(--brand-cyan);
    color: var(--brand-cyan);
}

.recruit-mobile-toggle {
    display: none;
    border: 1px solid rgba(217, 235, 255, 0.3);
    background: transparent;
    color: #fff;
    border-radius: 8px;
    width: 40px;
    height: 40px;
}

.front-page {
    background: var(--surface);
}

.hero {
    max-width: 1120px;
    margin: 0 auto;
    padding: 48px 24px 88px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 44px;
    align-items: center;
}

.hero h1 {
    max-width: 780px;
    font-size: clamp(2.3rem, 4.2vw, 4.8rem);
    line-height: 1.06;
    letter-spacing: 0;
    margin-bottom: 22px;
}

.hero p {
    color: #efdfb8;
    margin-bottom: 28px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-visual {
    background: linear-gradient(
        150deg,
        rgba(232, 184, 75, 0.28),
        rgba(15, 39, 72, 0.52)
    );
    border: 1px solid rgba(245, 208, 128, 0.38);
    border-radius: 22px;
    padding: 24px;
    backdrop-filter: blur(6px);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.22);
    animation: rise 0.8s ease;
}

.hero-visual img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.panel-label {
    color: #f5d080;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.front-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 88px 24px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
    margin-bottom: 28px;
}

.section-head p {
    margin: 0;
    color: var(--text-muted);
    max-width: 540px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.feature-card {
    background: var(--surface-card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.feature-card i {
    color: #c79322;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-card p {
    margin: 8px 0 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

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

.job-card {
    background: linear-gradient(165deg, #0f2748, #1a3c5e);
    color: #d9ecff;
    border-radius: 16px;
    border: 1px solid rgba(245, 208, 128, 0.24);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.2s ease;
}

.job-card:hover {
    transform: translateY(-4px);
}

.job-card h3 {
    font-size: 1.15rem;
    color: #fff;
}

.job-meta {
    font-size: 0.82rem;
    color: #f3dca2;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.job-card p {
    margin: 0;
    font-size: 0.92rem;
    color: #f1e4c4;
}

.job-card .btn-outline {
    width: fit-content;
    color: #d9ecff;
    border-color: rgba(217, 236, 255, 0.36);
}

.cta-band {
    background: linear-gradient(145deg, #0f2748, #1c3b67);
    border-radius: 20px;
    padding: 30px;
    color: #deefff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cta-band p {
    margin: 8px 0 0;
    color: #bad4ef;
}

.front-footer {
    background: #0b1a31;
    color: #8fb1d4;
    padding: 22px 24px;
}

.front-footer__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.9rem;
}

.front-page .split {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}

.job-listing {
    display: grid;
    gap: 18px;
}

.list-item {
    background: #fff;
    border: 1px solid #d6dfeb;
    border-radius: 18px;
    padding: 22px 22px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
    box-shadow: 0 10px 24px rgba(15, 39, 72, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(15, 39, 72, 0.10);
}

.list-item h3 {
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.list-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.8;
}

.list-item .job-meta {
    margin: 0 0 12px;
    color: #5f7ea3;
    font-size: 0.88rem;
}

.list-item .btn-solid {
    min-width: 96px;
    align-self: center;
}

.list-item--empty {
    grid-template-columns: 1fr;
}

.public-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
    padding: 18px;
    background: #fff;
    border: 1px solid #d6dfeb;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(15, 39, 72, 0.06);
}

.pagination-pages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-btn,
.pagination-page {
    min-height: 38px;
    border: 1px solid #d8e1ed;
    border-radius: 8px;
    padding: 9px 13px;
    background: #fff;
    color: #17324f;
    font-size: 0.88rem;
    font-weight: 700;
}

.pagination-btn:hover,
.pagination-page:hover,
.pagination-page.is-active {
    background: #f0b840;
    border-color: #f0b840;
    color: #132234;
}

.pagination-btn.is-disabled {
    color: #9aa8b8;
    background: #f4f7fb;
    cursor: not-allowed;
}

.filter-box {
    background: #fff;
    border: 1px solid #d6dfeb;
    border-radius: 18px;
    padding: 20px 18px;
    position: sticky;
    top: 22px;
    height: fit-content;
    box-shadow: 0 10px 24px rgba(15, 39, 72, 0.06);
}

.filter-box .field {
    margin-bottom: 12px;
}

.filter-box input,
.filter-box select,
.application-form input,
.application-form textarea,
.admin-main input,
.admin-main select,
.admin-main textarea {
    width: 100%;
    border: 1px solid #cbd6e5;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.92rem;
    background: #fff;
}

.filter-box label,
.application-form label {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    display: block;
}

.job-detail-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    margin-bottom: 14px;
}

.job-facts,
.job-description,
.application-form {
    background: #fff;
    border: 1px solid #d6dfeb;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(15, 39, 72, 0.06);
}

.job-description p {
    margin-bottom: 12px;
    line-height: 1.78;
}

.job-facts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-facts li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #e5edf8;
    padding: 14px 0;
    font-size: 0.92rem;
}

.job-facts li:last-child {
    border-bottom: 0;
}

.application-form {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    border-left: 4px solid rgba(232, 184, 75, 0.75);
}

.application-form h3 {
    margin-bottom: 8px;
}

.application-form ol {
    margin-top: 6px;
    margin-bottom: 16px;
}

.application-form li {
    margin-bottom: 4px;
}

.admin-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px 1fr;
    background: #eff4fb;
}

.admin-sidebar {
    background: linear-gradient(180deg, #12315b, #0e2443);
    color: #deefff;
    padding: 20px 16px;
}

.admin-sidebar .brand {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin-bottom: 26px;
    color: #fff;
    display: block;
    font-size: 1.2rem;
}

.admin-sidebar .brand span {
    color: var(--brand-cyan);
}

.admin-nav {
    display: grid;
    gap: 6px;
}

.admin-nav a {
    color: #b9d4ef;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.92rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-nav a.active,
.admin-nav a:hover {
    background: rgba(53, 224, 200, 0.15);
    color: #f7ffff;
}

.admin-content {
    min-width: 0;
}

.admin-topbar {
    background: #fff;
    border-bottom: 1px solid var(--border-soft);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.admin-search {
    width: min(380px, 100%);
}

.admin-search input {
    background: #f5f8fc;
}

.admin-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
}

.avatar-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #dbeafe;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.admin-main {
    padding: 22px 24px 34px;
}

.admin-main .page-title {
    margin-bottom: 18px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--shadow-soft);
}

.stat-card .label {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 8px;
    display: block;
}

.stat-card .value {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.stat-card .delta {
    font-size: 0.82rem;
    margin-top: 9px;
}

.delta.up {
    color: var(--success);
}

.delta.down {
    color: var(--danger);
}

.admin-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 16px;
}

.panel-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 18px;
}

.department-row,
.candidate-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    border-bottom: 1px solid #edf2f8;
    padding: 12px 0;
    gap: 10px;
}

.department-row:last-child,
.candidate-row:last-child {
    border-bottom: 0;
}

.department-row small,
.candidate-row small {
    color: var(--text-muted);
}

.badge-status {
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.badge-status.review {
    background: #fff4e5;
    color: #b54708;
}

.badge-status.Interview {
    background: #ebf7ff;
    color: #175cd3;
}

.badge-status.hired {
    background: #e8fff3;
    color: #067647;
}

.table-shell {
    overflow-x: auto;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    background: #fff;
}

.table-shell table {
    width: 100%;
    border-collapse: collapse;
}

.table-shell th,
.table-shell td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid #edf2f8;
    font-size: 0.92rem;
}

.table-shell th {
    background: #f8fbff;
    color: #5b6f8f;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .feature-grid,
    .job-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-layout {
        grid-template-columns: 84px 1fr;
    }

    .admin-sidebar .brand,
    .admin-sidebar .text {
        display: none;
    }

    .admin-nav a {
        justify-content: center;
    }

    .admin-nav a i {
        margin-right: 0;
    }
}

@media (max-width: 860px) {
    .hero,
    .front-page .split,
    .job-detail-grid,
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .recruit-mobile-toggle {
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .recruit-menu {
        position: absolute;
        left: 12px;
        right: 12px;
        top: 76px;
        padding: 14px;
        border-radius: 12px;
        background: #102b51;
        border: 1px solid rgba(217, 235, 255, 0.26);
        display: none;
        flex-direction: column;
        align-items: stretch;
        z-index: 5;
    }

    .recruit-shell.menu-open .recruit-menu {
        display: flex;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .front-section {
        padding: 62px 20px;
    }

    .list-item {
        padding: 18px;
    }

    .job-facts,
    .job-description,
    .application-form,
    .filter-box {
        padding: 18px;
        border-radius: 14px;
    }

    .front-footer__inner {
        flex-direction: column;
    }

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

    .admin-sidebar {
        display: none;
    }
}

@media (max-width: 620px) {
    .feature-grid,
    .job-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .list-item {
        grid-template-columns: 1fr;
    }

    .public-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Public career site refresh */
.front-page {
    --front-max: 1480px;
    --front-pad: clamp(18px, 3.2vw, 56px);
    background: #f5f7f2;
}

.recruit-shell {
    min-height: auto;
    background:
        linear-gradient(110deg, rgba(11, 31, 55, 0.95) 0%, rgba(16, 48, 78, 0.9) 48%, rgba(75, 91, 74, 0.82) 100%),
        url('../img/background/bg1.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.recruit-nav,
.hero,
.front-section,
.front-footer__inner {
    width: min(var(--front-max), 100%);
    max-width: none;
    margin-inline: auto;
    padding-inline: var(--front-pad);
}

.recruit-nav {
    padding-top: 24px;
    padding-bottom: 18px;
}

.recruit-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.recruit-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    padding: 5px;
}

.recruit-brand span {
    color: #fff;
    font-size: 1.12rem;
}

.recruit-menu {
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(9, 27, 48, 0.42);
    backdrop-filter: blur(14px);
}

.recruit-menu a {
    color: #f7ead1;
    border-radius: 999px;
    padding: 9px 13px;
}

.recruit-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.recruit-menu .btn-solid,
.btn-solid {
    background: #f0b840;
    color: #132234;
    box-shadow: 0 12px 24px rgba(240, 184, 64, 0.24);
}

.btn-solid:hover {
    background: #ffd16a;
    color: #132234;
}

.btn-outline {
    border-color: rgba(255, 232, 182, 0.72);
    color: #ffe6ad;
}

.btn-outline:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
}

.hero-home {
    min-height: calc(100vh - 92px);
    padding-top: clamp(52px, 7vw, 104px);
    padding-bottom: clamp(64px, 8vw, 118px);
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.78fr);
    gap: clamp(34px, 5vw, 78px);
}

.hero-copy {
    max-width: 780px;
}

.hero-home h1 {
    max-width: 780px;
    font-size: clamp(2.25rem, 4.2vw, 4.65rem);
    line-height: 1.06;
    letter-spacing: 0;
    margin-bottom: 22px;
}

.hero p {
    max-width: 720px;
    color: #f5e6c6;
    font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.panel-label {
    color: #ffc44d;
}

.hero-actions {
    margin-bottom: 30px;
}

.hero-actions .btn-solid,
.hero-actions .btn-outline {
    min-height: 48px;
    padding-inline: 22px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 960px;
}

.hero-stats div {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero-stats strong {
    display: block;
    color: #fff;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1;
}

.hero-stats span {
    display: block;
    margin-top: 7px;
    color: #f8dfaa;
    font-size: 0.82rem;
}

.hero-slider {
    position: relative;
    min-height: clamp(460px, 58vh, 680px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 214, 126, 0.34);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
    background: #10263d;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 24, 42, 0.08), rgba(9, 24, 42, 0.86));
}

.hero-slide__content {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 28px;
    z-index: 1;
}

.hero-slide__content span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #ffc44d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-slide__content h3 {
    max-width: 720px;
    color: #fff;
    font-size: clamp(0.95rem, 1.15vw, 1.25rem);
    line-height: 1.35;
}

.hero-slider__controls {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    display: flex;
    gap: 8px;
}

.hero-slider__controls button {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.hero-slider__controls button.is-active {
    background: #ffc44d;
}

.front-section {
    padding-top: clamp(70px, 7vw, 112px);
    padding-bottom: clamp(70px, 7vw, 112px);
}

.core-values-section {
    background: #f5f7f2;
}

.testimonial-section {
    width: 100%;
    max-width: none;
    padding-left: max(var(--front-pad), calc((100vw - var(--front-max)) / 2 + var(--front-pad)));
    padding-right: max(var(--front-pad), calc((100vw - var(--front-max)) / 2 + var(--front-pad)));
    background: #18263a;
    color: #fff;
}

.testimonial-section .section-head p {
    color: #bed0df;
}

.section-head {
    margin-bottom: 34px;
}

.section-head h2 {
    font-size: clamp(2rem, 3vw, 3.35rem);
    line-height: 1.1;
    color: #162235;
}

.testimonial-section .section-head h2 {
    color: #fff;
}

.section-head p {
    font-size: 1rem;
    line-height: 1.75;
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    min-height: 210px;
    border-radius: 8px;
    padding: 24px;
    border-color: #d9e0d4;
    box-shadow: 0 16px 34px rgba(35, 48, 35, 0.08);
}

.feature-card i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f9e8bd;
    color: #9a6715;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.08rem;
    color: #162235;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.1fr 0.95fr;
    gap: 18px;
}

.testimonial-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.07);
}

.testimonial-card.is-highlight {
    background: #f0b840;
    color: #142236;
}

.testimonial-card p {
    margin: 0 0 20px;
    font-size: 1.02rem;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card span {
    margin-top: 4px;
    color: inherit;
    opacity: 0.72;
    font-size: 0.86rem;
}

.jobs-section {
    background: #f5f7f2;
}

.job-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.job-card {
    min-height: 260px;
    border-radius: 8px;
    padding: 24px;
    background: #fff;
    color: #172235;
    border: 1px solid #d9e0d4;
    box-shadow: 0 16px 34px rgba(35, 48, 35, 0.08);
}

.job-card h3 {
    color: #142236;
    font-size: 1.22rem;
}

.job-card p {
    color: #617083;
}

.job-card .job-meta {
    color: #8f671e;
}

.job-card .btn-outline {
    margin-top: auto;
    color: #132234;
    border-color: #d1a13b;
}

.job-card .btn-outline:hover {
    background: #f0b840;
    border-color: #f0b840;
    color: #132234;
}

.jobs-section__action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.jobs-section__action .btn-solid {
    min-width: 220px;
    justify-content: center;
}

.cta-band {
    border-radius: 8px;
    padding: clamp(26px, 4vw, 48px);
    background:
        linear-gradient(120deg, rgba(15, 39, 72, 0.94), rgba(39, 70, 61, 0.9)),
        url('../img/background/bg2.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.cta-band h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.45rem);
}

.front-footer {
    position: relative;
    background: #09182a;
    color: #fff;
    padding: 48px 0 14px;
}

.front-footer__inner {
    display: grid;
    grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 0.9fr) minmax(320px, 0.95fr);
    align-items: start;
    gap: clamp(32px, 5vw, 72px);
}

.front-footer__brand strong {
    color: #fff;
    display: block;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.front-footer__brand p {
    max-width: 360px;
    margin: 0 0 28px;
    color: #fff;
    font-size: 0.96rem;
    line-height: 1.05;
}

.front-footer__socials {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.front-footer__socials a {
    color: #fff;
    font-size: 1.45rem;
    line-height: 1;
}

.front-footer__socials a:hover {
    color: #ffc44d;
}

.front-footer__products strong {
    display: block;
    margin-bottom: 28px;
    font-size: 1rem;
    font-weight: 800;
}

.front-footer__products ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(110px, 1fr));
    column-gap: 44px;
    row-gap: 22px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.front-footer__products li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.94rem;
    font-weight: 700;
}

.front-footer__products i {
    font-size: 0.82rem;
}

.front-footer__map iframe {
    width: 100%;
    min-height: 200px;
    border: 0;
    display: block;
    background: #fff;
}

.front-footer__bottom {
    width: min(var(--front-max), 100%);
    margin: 64px auto 0;
    padding-inline: var(--front-pad);
    text-align: center;
}

.front-footer__copy {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.front-footer__top {
    position: absolute;
    right: 24px;
    bottom: 28px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: #f0b840;
    color: #111827;
    font-size: 0.9rem;
}

.front-footer__top:hover {
    color: #111827;
    background: #ffd16a;
}

.front-page .split {
    grid-template-columns: minmax(0, 1fr) 360px;
}

@media (max-width: 1180px) {
    .hero-home {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-copy {
        max-width: 920px;
    }

    .hero-slider {
        min-height: 480px;
    }

    .front-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .front-footer__map {
        grid-column: 1 / -1;
    }

    .feature-grid,
    .job-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-card.is-highlight {
        grid-column: span 2;
    }
}

@media (max-width: 860px) {
    .recruit-shell {
        position: relative;
    }

    .recruit-nav {
        padding-top: 16px;
    }

    .recruit-menu {
        border-radius: 12px;
        background: rgba(9, 24, 42, 0.96);
    }

    .hero-home {
        padding-top: 42px;
    }

    .hero-home h1 {
        font-size: clamp(2rem, 9vw, 3.15rem);
    }

    .hero-stats,
    .feature-grid,
    .job-grid,
    .testimonial-grid,
    .front-footer__inner {
        grid-template-columns: 1fr;
    }

    .front-footer {
        padding-top: 38px;
    }

    .front-footer__map {
        grid-column: auto;
    }

    .front-footer__bottom {
        margin-top: 34px;
        text-align: left;
        padding-right: 76px;
    }

    .testimonial-card.is-highlight {
        grid-column: auto;
    }

    .hero-slider {
        min-height: 390px;
    }

    .section-head {
        align-items: flex-start;
    }
}

@media (max-width: 620px) {
    .recruit-brand span {
        font-size: 1rem;
    }

    .recruit-brand img {
        width: 36px;
        height: 36px;
    }

    .hero-stats {
        gap: 10px;
    }

    .hero-slide__content {
        left: 18px;
        right: 18px;
        bottom: 20px;
    }

    .front-footer__copy {
        white-space: normal;
    }

    .front-footer__products ul {
        grid-template-columns: 1fr;
        row-gap: 14px;
    }

    .front-footer__socials {
        gap: 22px;
    }
}

/* Core values refinement */
.core-values-section {
    padding-top: 90px;
    padding-bottom: 90px;
    background: #f6f7f5;
}

.core-values-section .section-head,
.core-values-section .feature-grid {
    width: min(1180px, 100%);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.core-values-section .section-head {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 48px;
}

.core-values-section .section-head h2 {
    margin-top: 8px;
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0;
}

.core-values-section .section-head p {
    max-width: 520px;
    margin: 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.7;
}

.core-values-section .feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    margin-top: 30px;
}

.core-values-section .feature-card {
    min-height: 252px;
    background: #fff;
    border: 1px solid #f0f2f5;
    border-radius: 16px;
    padding: 28px 26px;
    box-shadow: 0 10px 25px rgba(16, 24, 40, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.core-values-section .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.1);
}

.feature-card .icon-box {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #f6e7c8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-card .icon-box i,
.feature-card i {
    color: #b8892e;
    font-size: 18px;
    margin: 0;
}

.core-values-section .feature-card h3 {
    margin-bottom: 10px;
    color: #162235;
    font-size: 18px;
}

.core-values-section .feature-card p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .core-values-section .section-head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .core-values-section .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .core-values-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .core-values-section .section-head,
    .core-values-section .feature-grid {
        padding-left: 18px;
        padding-right: 18px;
    }

    .core-values-section .section-head h2 {
        font-size: 34px;
    }

    .core-values-section .section-head p {
        font-size: 16px;
    }

    .core-values-section .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Activity HRD page */
.activity-hrd-hero {
    min-height: calc(100vh - 92px);
    padding-top: clamp(58px, 7vw, 104px);
    padding-bottom: clamp(62px, 8vw, 104px);
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.75fr);
    gap: clamp(34px, 6vw, 82px);
}

.activity-hrd-copy {
    max-width: 760px;
}

.activity-hrd-hero h1 {
    max-width: 720px;
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(3.2rem, 6vw, 6.2rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.activity-hrd-hero p {
    max-width: 690px;
    color: #f5e6c6;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.activity-hrd-visual {
    align-self: center;
    background: linear-gradient(150deg, rgba(232, 184, 75, 0.24), rgba(15, 39, 72, 0.5));
    border: 1px solid rgba(245, 208, 128, 0.42);
    border-radius: 18px;
    padding: 26px;
    backdrop-filter: blur(8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.activity-hrd-visual h3 {
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(1rem, 1.25vw, 1.35rem);
    line-height: 1.35;
}

.activity-hrd-visual img {
    width: 100%;
    min-height: 320px;
    display: block;
    object-fit: cover;
    border-radius: 14px;
}

.activity-visual-slider {
    position: relative;
    min-height: 570px;
}

.activity-visual-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(14px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.activity-visual-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.activity-visual-dots {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 8px;
}

.activity-visual-dots button {
    width: 30px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
}

.activity-visual-dots button.is-active {
    background: #f0b840;
}

.activity-hrd-section {
    padding-top: 64px;
}

.activity-hrd-head {
    width: min(1180px, 100%);
    margin: 0 auto 34px;
    padding: 0 24px;
}

.activity-hrd-head h2 {
    margin-top: 8px;
    color: #162235;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.15;
}

.activity-hrd-head p {
    max-width: 760px;
    margin: 12px 0 0;
    color: #667085;
    font-size: 1rem;
    line-height: 1.75;
}

.activity-highlight,
.activity-grid,
.activity-timeline,
.activity-hrd-section .split {
    width: min(1180px, 100%);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.activity-highlight {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
    gap: 34px;
    align-items: center;
    margin-bottom: 28px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e3e9ef;
    box-shadow: 0 18px 42px rgba(16, 24, 40, 0.08);
}

.activity-highlight h3 {
    margin-bottom: 12px;
    color: #162235;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.12;
}

.activity-highlight p {
    margin: 0;
    color: #667085;
    font-size: 1rem;
    line-height: 1.75;
}

.activity-highlight img {
    width: 100%;
    min-height: 340px;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.activity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.activity-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    padding: 8px 12px;
    background: #f6f7f5;
    color: #344054;
    font-size: 0.84rem;
    font-weight: 700;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 26px;
}

.activity-card {
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e3e9ef;
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(16, 24, 40, 0.11);
}

.activity-card img {
    width: 100%;
    height: 210px;
    display: block;
    object-fit: cover;
}

.activity-card div {
    padding: 22px;
}

.activity-card span {
    display: block;
    margin-bottom: 8px;
    color: #b8892e;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.activity-card h3 {
    margin-bottom: 10px;
    color: #162235;
    font-size: 1.12rem;
}

.activity-card p {
    margin: 0;
    color: #667085;
    font-size: 0.92rem;
    line-height: 1.7;
}

.activity-timeline {
    margin-top: 28px;
    margin-bottom: 46px;
    padding: 0;
    border-radius: 16px;
    background: #162235;
    overflow: hidden;
}

.activity-timeline img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.activity-hrd-section .split {
    margin-top: 8px;
    padding-left: 24px;
    padding-right: 24px;
}

@media (max-width: 1180px) {
    .activity-hrd-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .activity-hrd-visual img {
        min-height: 360px;
    }

    .activity-highlight,
    .activity-timeline {
        grid-template-columns: 1fr;
    }

    .activity-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .activity-hrd-hero {
        padding-top: 42px;
        padding-bottom: 62px;
    }

    .activity-hrd-hero h1 {
        font-size: clamp(2.4rem, 12vw, 3.6rem);
    }

    .activity-hrd-visual {
        padding: 18px;
        border-radius: 14px;
    }

    .activity-hrd-visual img {
        min-height: 240px;
    }

    .activity-hrd-head {
        padding-left: 18px;
        padding-right: 18px;
    }

    .activity-highlight,
    .activity-grid,
    .activity-timeline,
    .activity-hrd-section .split {
        padding-left: 18px;
        padding-right: 18px;
    }

    .activity-highlight {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .activity-highlight img {
        min-height: 230px;
    }

    .activity-grid {
        grid-template-columns: 1fr;
    }

    .activity-card img {
        height: 190px;
    }
}

/* Public compact alignment pass */
.front-page {
    --front-max: 1760px;
    --front-content: 1680px;
    --front-pad: clamp(12px, 1.4vw, 28px);
}

.recruit-nav,
.hero,
.front-section,
.front-footer__inner,
.front-footer__bottom {
    width: min(var(--front-max), 100%);
    max-width: none;
    padding-left: var(--front-pad);
    padding-right: var(--front-pad);
}

.recruit-nav {
    padding-top: 18px;
    padding-bottom: 14px;
}

.hero,
.hero-home,
.activity-hrd-hero {
    min-height: auto;
    padding-top: clamp(34px, 4.5vw, 72px);
    padding-bottom: clamp(42px, 5vw, 78px);
    gap: clamp(24px, 3vw, 52px);
}

.hero h1,
.hero-home h1,
.activity-hrd-hero h1 {
    max-width: 680px;
    font-size: clamp(2.15rem, 3.6vw, 4.2rem);
    line-height: 1.08;
    margin-bottom: 16px;
}

.hero p,
.hero-home p,
.activity-hrd-hero p {
    max-width: 660px;
    font-size: clamp(0.96rem, 1vw, 1.08rem);
    line-height: 1.65;
    margin-bottom: 22px;
}

.hero-slider,
.activity-hrd-visual {
    min-height: clamp(360px, 42vh, 520px);
}

.hero-slide__content h3,
.activity-hrd-visual h3 {
    font-size: clamp(0.95rem, 1.15vw, 1.35rem);
}

.activity-hrd-visual img {
    min-height: 260px;
}

.activity-visual-slider {
    min-height: clamp(410px, 46vh, 560px);
}

.activity-visual-slide img {
    height: clamp(260px, 32vh, 390px);
    min-height: 0;
}

.front-section,
.core-values-section,
.activity-hrd-section {
    padding-top: clamp(46px, 4vw, 68px);
    padding-bottom: clamp(46px, 4vw, 68px);
}

.front-section > .section-head,
.front-section > .feature-grid,
.front-section > .testimonial-grid,
.front-section > .job-grid,
.front-section > .cta-band,
.core-values-section .section-head,
.core-values-section .feature-grid,
.activity-hrd-head,
.activity-highlight,
.activity-grid,
.activity-timeline,
.activity-hrd-section .split,
.front-page .split,
.job-detail-grid {
    width: min(var(--front-content), 100%);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--front-pad);
    padding-right: var(--front-pad);
}

.testimonial-section {
    padding-left: max(var(--front-pad), calc((100vw - var(--front-max)) / 2 + var(--front-pad)));
    padding-right: max(var(--front-pad), calc((100vw - var(--front-max)) / 2 + var(--front-pad)));
}

.section-head,
.core-values-section .section-head {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(24px, 4vw, 56px);
    margin-bottom: 34px;
}

.section-head h2,
.core-values-section .section-head h2,
.activity-hrd-head h2 {
    font-size: clamp(1.75rem, 2.35vw, 2.75rem);
    line-height: 1.16;
}

.section-head p,
.core-values-section .section-head p,
.activity-hrd-head p {
    max-width: 720px;
    font-size: clamp(0.95rem, 1vw, 1.04rem);
    line-height: 1.68;
}

.feature-grid,
.core-values-section .feature-grid,
.job-grid,
.testimonial-grid,
.activity-grid {
    gap: 18px;
}

.core-values-section .feature-card,
.job-card,
.testimonial-card,
.activity-card,
.list-item,
.filter-box {
    border-radius: 10px;
}

.core-values-section .feature-card {
    min-height: 220px;
    padding: 22px;
}

.activity-highlight,
.activity-timeline {
    border-radius: 12px;
}

.activity-timeline {
    padding: 0;
}

.front-page .split {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 20px;
}

@media (max-width: 1180px) {
    .hero,
    .hero-home,
    .activity-hrd-hero {
        grid-template-columns: 1fr;
    }

    .activity-visual-slider {
        min-height: 540px;
    }

    .activity-visual-slide img {
        height: 380px;
    }

    .section-head,
    .core-values-section .section-head {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .front-page {
        --front-pad: 16px;
    }

    .hero h1,
    .hero-home h1,
    .activity-hrd-hero h1 {
        font-size: clamp(2rem, 9vw, 3.1rem);
    }

    .hero,
    .hero-home,
    .activity-hrd-hero {
        padding-top: 32px;
        padding-bottom: 48px;
    }

    .activity-visual-slider {
        min-height: 430px;
    }

    .activity-visual-slide img {
        height: 250px;
    }
}

/* Corporate footer refresh */
.front-footer {
    background: #f5f7f2;
    color: #fff;
    padding: 30px var(--front-pad) 26px;
}

.front-footer__inner {
    display: grid;
    width: min(var(--front-content), 100%);
    margin: 0 auto;
    grid-template-columns: minmax(360px, 1.35fr) minmax(180px, 0.55fr) minmax(320px, 0.8fr);
    gap: clamp(26px, 5vw, 76px);
    align-items: start;
    padding: 34px 42px 22px;
    border-radius: 28px;
    background: #061a2a;
}

.front-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: #fff;
}

.front-footer__logo:hover {
    color: #ffc44d;
}

.front-footer__logo img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    border-radius: 8px;
    background: transparent;
    padding: 0;
}

.front-footer__logo span {
    max-width: none;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.front-footer__brand strong {
    display: none;
}

.front-footer__brand p {
    max-width: 520px;
    margin: 0;
    color: #fff;
    font-size: 0.86rem;
    line-height: 1.5;
}

.front-footer__links strong,
.front-footer__subscribe strong {
    display: block;
    margin-bottom: 14px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
}

.front-footer__links a {
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #d9e6f2;
    font-size: 0.9rem;
    line-height: 1.5;
}

.front-footer__links a:hover {
    color: #ffc44d;
}

.front-footer__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(82px, 1fr));
    gap: 12px 18px;
}

.front-footer__links strong {
    grid-column: 1 / -1;
}

.front-footer__subscribe {
    padding-top: 14px;
}

.front-footer__socials {
    display: grid;
    grid-template-columns: repeat(2, minmax(118px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.front-footer__social-card {
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.front-footer__social-card i,
.front-footer__social-card img {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #061a2a;
    font-size: 1rem;
    font-weight: 800;
}

.front-footer__social-card img {
    padding: 6px;
    object-fit: contain;
}

.front-footer__social-card span:last-child {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
}

.front-footer__social-card:hover {
    border-color: #ffc44d;
    background: rgba(255, 196, 77, 0.14);
    color: #fff;
}

.front-footer__bottom {
    width: min(var(--front-content), 100%);
    margin: -54px auto 0;
    padding: 0 42px 0;
    border-top: 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.front-footer__copy {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
}

.front-footer__top {
    right: 18px;
    bottom: 18px;
    background: #ffc44d;
}

@media (max-width: 1180px) {
    .front-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .front-footer__subscribe {
        grid-column: 1 / -1;
        padding-top: 0;
    }

    .front-footer__socials {
        grid-template-columns: repeat(4, minmax(100px, 1fr));
    }
}

@media (max-width: 720px) {
    .front-footer__inner {
        grid-template-columns: 1fr;
    }

    .front-footer__links {
        grid-template-columns: repeat(2, minmax(110px, 1fr));
    }

    .front-footer__socials {
        grid-template-columns: 1fr;
    }

    .front-footer__inner {
        padding: 28px 22px 24px;
        border-radius: 20px;
    }

    .front-footer__bottom {
        margin-top: 18px;
        padding-left: 22px;
        padding-right: 52px;
        text-align: left;
    }

    .front-footer__logo span {
        font-size: 1.45rem;
    }
}

/* Public jobs filter */
.job-result-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid #d6dfeb;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 39, 72, 0.06);
}

.job-result-summary .panel-label {
    margin-bottom: 6px;
    color: #b8892e;
}

.job-result-summary strong {
    display: block;
    color: #162235;
    font-size: 1.05rem;
}

.job-filter-form {
    display: grid;
    gap: 12px;
}

.filter-reset {
    display: inline-flex;
    justify-content: center;
    color: #57769d;
    font-size: 0.86rem;
    font-weight: 700;
}

.filter-reset:hover {
    color: #b8892e;
}

.filter-box {
    top: 92px;
    max-width: 100%;
}

.filter-box h3 {
    color: #162235;
    font-size: 1.08rem;
}

.filter-box input,
.filter-box select {
    min-height: 44px;
}

@media (max-width: 1080px) {
    .activity-hrd-section .split,
    .front-page .split {
        grid-template-columns: 1fr;
    }

    .filter-box {
        order: -1;
        position: static;
    }

    .job-filter-form {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: end;
    }

    .job-filter-form .btn-solid,
    .job-filter-form .filter-reset {
        grid-column: span 3;
    }
}

@media (max-width: 720px) {
    .job-result-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .job-result-summary .btn-outline {
        width: 100%;
    }

    .job-filter-form {
        grid-template-columns: 1fr;
    }

    .job-filter-form .btn-solid,
    .job-filter-form .filter-reset {
        grid-column: auto;
    }

    .filter-box {
        padding: 16px;
    }

    .list-item {
        gap: 14px;
    }
}
