:root {
    --home-primary: #ff6b1b;
    --home-primary-strong: #ff5a00;
    --home-text: #1b1e24;
    --home-muted: #616776;
    --home-card: #ffffff;
    --home-border: rgba(15, 23, 42, 0.09);
    --home-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --home-soft-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    --home-bg: #f8f3ee;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
  font-family: 'Inter', sans-serif !important;
}

* {
    box-sizing: border-box;
}

body.home-page {
    margin: 0;
    font-family: "Be Vietnam Pro", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--home-text);
    background: #fffaf5;
}

.home-hero {
    overflow: hidden;
    position: relative;
    min-height: 900px;
    padding-top: 94px;
    background-image: url("/static/images/home/bg-home-1.png");
    background-size: cover;
    background-position: center;
}

.home-hero-content {
    padding-top: 150px !important;
}

.home-title {
    font-family: "Sora", "Be Vietnam Pro", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 14px;
}

.home-title .accent {
    color: #FF6A18;
}

.home-subtitle {
    margin: 0;
    font-size: 21px;
    color: #353c4a;
    max-width: 610px;
}

.home-search-card {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--home-soft-shadow);
    padding: 14px;
    max-width: 900px;
}

.home-search-row {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(140px, 1fr) minmax(140px, 1fr) 140px;
    gap: 0;
    border: 1px solid var(--home-border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.home-search-field {
    position: relative;
    border-right: 1px solid var(--home-border);
    padding: 0 10px;
    margin: 10px 0;
}

.home-search-field:last-child {
    border-right: 0;
}

.home-search-field label {
    display: block;
    font-size: 12px;
    color: #636978;
    font-weight: 700;
    margin-bottom: 6px;
}

.home-search-field input,
.home-search-field select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--home-text);
    font-size: 14px;
}

.home-search-field-keyword input {
    padding-right: 28px;
}

.home-search-icon,
.home-select-icon {
    position: absolute;
    right: 14px;
    top: 70%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
    font-size: 14px;
}

.home-search-field-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 22px;
}

.home-search-submit {
    border: 0;
    background: linear-gradient(120deg, #ff6b1b 0%, #ff8e3a 100%);
    color: #fff;
    font-weight: 700;
    padding: 0 22px;
    border-radius: 14px;
    cursor: pointer;
    width: 100%;
    height: 48px;
}

.home-search-submit:hover {
    background: linear-gradient(120deg, #ff5a00 0%, #ff7d2a 100%);
}

.home-search-manager {
    margin-top: 10px;
    padding: 0 10px;
    display: flex;
    align-items: center;
}

.home-location-manager-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff6b1b;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-location-manager-link:hover {
    color: #ff5a00;
    text-decoration: none;
}

.home-location-manager-link i {
    font-size: 12px;
}

.home-chip-row {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #5a6070;
    border: 1px solid #ffe0cb;
    border-radius: 12px;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 600;
}

.home-float-metrics {
    position: absolute;
    right: 70px;
    top: 160px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.home-float-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 17px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.home-float-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff7b28;
    background: #fff3e8;
}

.home-float-item:nth-child(1) .home-float-icon {
    background: #FEF1EA;
    color: #FD580A;
}
.home-float-item:nth-child(2) .home-float-icon{
    background: #F5F4F6;
    color: #1C914F;
}
.home-float-item:nth-child(3) {
    margin-right: 32px;
}
.home-float-item:nth-child(3) .home-float-icon {
    background: #FCEDC5;
    color: #FCA11A;
    margin-right: 16px;
}
.home-float-item:nth-child(4) .home-float-icon {
    background: #FCEDC8;
    color: #FE9800;
}

.home-float-label {
    font-size: 12px;
    color: #5e6473;
}

.home-float-value {
    font-size: 18px;
    font-weight: 600;
    color: #1e222a;
}

.home-stats {
    margin-top: -50px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--home-shadow);
    position: relative;
    z-index: 4;
}

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

.home-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
}

.home-stat + .home-stat {
    border-left: 1px solid var(--home-border);
}

.home-stat-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff3ea;
    font-size: 17px;
    flex-shrink: 0;
}

.home-stat-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.home-stat-value {
    font-family: "Sora", "Be Vietnam Pro", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
}

.home-stat-label {
    color: #626876;
    font-size: 14px;
}

.home-nearby-section {
    margin: 22px auto 40px;
    position: relative;
    padding: 8px 10px 2px;
    overflow: visible;
    isolation: isolate;
}

.home-nearby-decor {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 7;
}

.home-nearby-decor-left {
    left: -200px;
    top: -20px;
    width: 400px;
    opacity: 0.8;
}

.home-nearby-decor-cloud-1 {
    right: 154px;
    top: -2px;
    width: 66px;
    opacity: 0.78;
}

.home-nearby-decor-cloud-2 {
    right: 18px;
    top: 8px;
    width: 92px;
    opacity: 0.76;
}

.home-nearby-head {
    position: relative;
    z-index: 8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.home-nearby-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-nearby-pin {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffe9db;
    color: #ff6a17;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-nearby-title {
    margin: 0;
    font-family: "Sora", "Be Vietnam Pro", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 31px;
    font-weight: 700;
    color: #222832;
    line-height: 1.1;
}

.home-nearby-see-all {
    color: #ff5f0f;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.home-nearby-see-all i {
    font-size: 11px;
}

.home-nearby-tabs {
    position: relative;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.home-nearby-tab {
    border: 1px solid #e5e8ee;
    background: #fff;
    color: #616976;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
}

.home-nearby-tab.active {
    background: #ff6b1b;
    border-color: #ff6b1b;
    color: #fff;
}

.home-nearby-grid {
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-nearby-card {
    background: #fff;
    border: 1px solid #dfe5ef;
    border-radius: 14px;
    padding: 14px 14px 12px;
    box-shadow: 0 3px 10px rgba(13, 32, 66, 0.05);
}

.home-nearby-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.home-nearby-company {
    display: flex;
    gap: 10px;
}

.home-nearby-logo-wrap {
    width: 44px;
    height: 44px;
    border: 1px solid #edf0f4;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.home-nearby-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-nearby-job-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2530;
    text-decoration: none;
}

.home-nearby-company-name {
    margin: 2px 0 0;
    font-size: 12px;
    color: #667083;
}

.home-nearby-save {
    border: 0;
    background: transparent;
    color: #aeb8c6;
    padding: 2px;
}

.home-nearby-salary {
    margin-top: 12px;
    color: #ff5c12;
    font-size: 14px;
    font-weight: 700;
}

.home-nearby-meta {
    margin-top: 9px;
    color: #636d7c;
    font-size: 12px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.home-nearby-skills {
    margin-top: 10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.home-nearby-skill {
    border: 1px solid #e7eaf0;
    border-radius: 999px;
    font-size: 11px;
    color: #5d6776;
    padding: 4px 10px;
    background: #fafbfc;
}

.home-nearby-urgent {
    margin-top: 10px;
    color: #ff4a11;
    font-size: 12px;
    font-weight: 700;
}

.home-nearby-empty {
    grid-column: 1/-1;
    background: #fff;
    border: 1px dashed #d8dde6;
    border-radius: 14px;
    padding: 18px;
    color: #667083;
}

.home-hero-content,
.home-industry-section,
.home-why-section,
.home-steps-section,
.home-cv-section,
.home-float-metrics {
    margin: 22px auto 0;
    padding: 0 10px;
}

.home-section-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 28px;
    box-shadow: var(--home-shadow);
    overflow: hidden;
}

.home-section-head {
    padding: 24px 28px 0;
}

.home-section-head-center {
    text-align: center;
}

.home-section-title {
    margin: 0;
    font-family: "Sora", "Be Vietnam Pro", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 29px;
    line-height: 1.15;
    font-weight: 700;
    color: #212633;
}

.home-industry-card {
    background: linear-gradient(180deg, #fff8f2 0%, #fffdfb 100%);
    padding-bottom: 24px;
}

.home-industry-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    padding: 18px 24px 0;
    padding-right: 256px;
}

.home-industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    text-align: center;
    text-decoration: none;
    color: var(--home-text);
    background: #fff;
    border: 1px solid #ffe0cb;
    border-radius: 16px;
    box-shadow: var(--home-soft-shadow);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.home-industry-item:hover {
    transform: translateY(-2px);
    border-color: #ffc89f;
}

.home-industry-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.home-industry-item strong {
    font-size: 14px;
    font-weight: 700;
}

.home-industry-item span {
    font-size: 12px;
    color: #636b78;
}

.home-industry-illustration {
    position: absolute;
    right: 18px;
    top: 8px;
    width: 220px;
    max-width: 25vw;
    pointer-events: none;
    user-select: none;
}

.home-why-card {
    padding-bottom: 20px;
    background: #fff;
}

.home-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 18px 20px 4px;
}

.home-why-item {
    position: relative;
    min-height: 160px;
    padding: 18px 16px 12px;
    border: 1px solid #e8ecf2;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--home-soft-shadow);
}

.home-why-copy {
    width: 50%;
    margin-top: 20px;
}
.home-why-copy h3 {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
    color: #252b35;
}

.home-why-copy p,
.home-cv-copy p {
    margin: 0;
    color: #66707d;
    font-size: 12px;
    line-height: 1.45;
    position: relative;
    z-index: 3;
}

.home-why-item img {
    position: absolute;
    bottom: -10px;         /* đẩy ảnh xuống thấp hơn mép dưới card */
    right: -15px;           /* đẩy ảnh sang phải, tràn ra ngoài */
    width: 200px;           /* to hơn không gian còn lại trong card */
    z-index: 2;  
}

.home-steps-section {
    margin-top: 18px;
}

.home-steps-grid {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) 30px minmax(150px, 1fr) 30px minmax(150px, 1fr);
    align-items: center;
    gap: 14px;
    padding: 18px 0 0;
}

.home-step-item {
    display: flex;
    justify-content: center;
}

.home-step-item img {
    width: 100%;
    display: block;
}

.home-step-arrow img {
    width: 30px;
    max-width: 30px;
}

.home-cv-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 24px;
    background: linear-gradient(120deg, #fff7f0 0%, #fff1e7 58%, #fffdfb 100%);
}

.home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 107, 27, 0.1);
    color: var(--home-primary-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.home-cv-copy h2 {
    margin: 0 0 12px;
    font-family: "Sora", "Be Vietnam Pro", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 32px;
    line-height: 1.12;
    font-weight: 800;
    color: #1f2530;
}

.home-cv-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.home-cv-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 12px;
    border: 1px solid #ffd9bf;
    background: rgba(255, 255, 255, 0.8);
    color: #ff6a16;
    font-size: 12px;
    font-weight: 700;
}

.home-cv-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.home-btn-lg {
    padding: 13px 20px;
}

.home-cv-visual {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-cv-main-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.home-cv-bubble {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 214, 184, 0.9);
    box-shadow: var(--home-soft-shadow);
    color: #1d2430;
    font-size: 13px;
    font-weight: 700;
}

.home-cv-bubble strong {
    color: #3c8f39;
    font-size: 20px;
    line-height: 1;
}

.home-cv-bubble-top {
    right: 10px;
    top: 12px;
}

.home-cv-bubble-bottom {
    right: 16px;
    bottom: 10px;
}

.home-featured-company-section,
.home-recruiter-section,
.home-career-guide-section {
    margin: 34px auto 0;
    padding: 0 10px;
}

.home-featured-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.home-featured-title {
    margin: 0;
    font-family: "Sora", "Be Vietnam Pro", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;
    color: #202630;
}

.home-featured-subtitle {
    margin: 6px 0 0;
    color: #66707d;
    font-size: 15px;
}

.home-featured-see-all {
    margin-top: 6px;
    color: #ff5f0f;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.home-featured-see-all i {
    font-size: 12px;
}

.home-featured-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.home-featured-filter {
    border: 1px solid #e7ebf1;
    background: #fff;
    border-radius: 999px;
    color: #78818f;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-featured-filter.active {
    color: #ff5d13;
    border-color: #ffd7bf;
    background: #fff5ee;
}

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

.home-featured-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e9edf4;
    background: #fff;
    box-shadow: 0 6px 16px rgba(20, 33, 61, 0.08);
}

.home-featured-cover {
    width: 100%;
    height: 176px;
    object-fit: cover;
    display: block;
}

.home-featured-card-body {
    padding: 10px 12px 12px;
}

.home-featured-card-body h3 {
    margin: 0;
    font-size: 29px;
    line-height: 1.1;
    font-family: "Sora", "Be Vietnam Pro", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.home-featured-card-body p {
    margin: 4px 0 8px;
    font-size: 14px;
    color: #656f7d;
}

.home-featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.home-featured-tag {
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.home-featured-tag-open {
    color: #ff5f12;
    background: #fff2ea;
    border: 1px solid #ffd8c2;
}

.home-featured-tag-verified {
    color: #2b9a5a;
    background: #eefbf3;
    border: 1px solid #caefd8;
}

.home-recruiter-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 28px;
}

.home-recruiter-visual {
    position: relative;
}

.home-recruiter-dashboard {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 14px 28px rgba(15, 32, 58, 0.12);
}

.home-recruiter-floating {
    position: absolute;
    background: #fff;
    border: 1px solid #e7ecf4;
    border-radius: 14px;
    box-shadow: var(--home-soft-shadow);
}

.home-recruiter-floating-top {
    left: -26px;
    top: 110px;
    padding: 10px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-recruiter-floating-top i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8faef;
    color: #2f9d5f;
    font-size: 12px;
}

.home-recruiter-floating-top strong {
    color: #2f9d5f;
    font-size: 20px;
    line-height: 1;
}

.home-recruiter-floating-top span {
    display: block;
    color: #6f7886;
    font-size: 11px;
    font-weight: 600;
}

.home-recruiter-floating-bottom {
    left: -18px;
    bottom: 26px;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-recruiter-floating-bottom img {
    width: 56px;
    height: 28px;
    object-fit: contain;
}

.home-recruiter-floating-bottom span {
    font-size: 12px;
    font-weight: 700;
    color: #222b37;
}

.home-recruiter-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    font-weight: 700;
    color: #ff6b1b;
}

.home-recruiter-copy h2 {
    margin: 10px 0 10px;
    font-family: "Sora", "Be Vietnam Pro", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 52px;
    line-height: 1.06;
    font-weight: 700;
    color: #171d29;
}

.home-recruiter-copy p {
    margin: 0;
    color: #5f6876;
    font-size: 17px;
    line-height: 1.45;
    max-width: 510px;
}

.home-recruiter-points {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: grid;
    gap: 12px;
}

.home-recruiter-points li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #212b37;
    font-weight: 600;
}

.home-recruiter-points img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.home-recruiter-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-recruiter-actions .home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-recruiter-footnote {
    margin-top: 14px;
    color: #313b49;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.home-recruiter-footnote i {
    color: #ff6a16;
}

.home-career-guide-section {
    margin-bottom: 36px;
}

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

.home-guide-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e7ebf2;
    box-shadow: 0 5px 14px rgba(20, 33, 61, 0.07);
}

.home-guide-cover {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.home-guide-body {
    padding: 10px 12px 12px;
}

.home-guide-category {
    display: inline-flex;
    border-radius: 999px;
    padding: 4px 8px;
    color: #ff5f12;
    background: #fff3eb;
    border: 1px solid #ffd9c4;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.home-guide-body h3 {
    margin: 8px 0 8px;
    font-size: 24px;
    line-height: 1.24;
    font-family: "Sora", "Be Vietnam Pro", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1d2532;
}

.home-guide-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: #7b8491;
    font-size: 12px;
}

.home-guide-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 1024px) {
    .home-search-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-hero-content {
        padding-top: 0 !important;
    }
    .home-float-metrics {
        position: relative;
        flex-direction: row;
        right: auto;
        top: auto;
    }
    .home-float-item:nth-child(3) {
        margin-right: 0;
    }
}
@media (max-width: 768px) {
    .home-float-metrics {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
@media (max-width: 576px) {
    .home-industry-grid {
        padding-right: 24px;
    }
    .home-search-field {
        border-right: 0;
    }
    .home-stats-grid, .home-nearby-grid, .home-industry-grid, .home-why-grid, .home-steps-grid, .home-featured-grid, .home-guide-grid,
    .home-recruiter-grid, .home-bottom-cta-card, .home-cv-card, .home-search-row {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .home-steps-grid {
        justify-items: center;
        gap: 8px;
    }
    .home-step-item {
        width: 100%;
        max-width: 420px;
    }
    .home-step-arrow img {
        width: 30px;
        max-width: 30px;
        transform: rotate(90deg);
    }
}