/* Trang tuyển dụng nhân sự cấp cao.
   Dùng lại phần lớn khối của trang FDI (fd-*) và trang hub (hb-*). Chỉ khai báo
   thêm bốn nhóm riêng: thẻ nhóm vị trí nền tối, thẻ bước có số lớn, quy trình
   ngang sáu bước, và khối ba cột tiêu chí. */

/* --- thẻ nhóm vị trí nền tối --- */
.cnk-landing-page .sr-roles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.cnk-landing-page .sr-role { overflow: hidden; border-radius: 10px; background: #0d2a47; color: #fff; }
.cnk-landing-page .sr-role img { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.cnk-landing-page .sr-role__body { padding: 16px; }
.cnk-landing-page .sr-role strong { display: block; margin-bottom: 8px; color: #fff; font-size: 12.5px; font-weight: 700; }
.cnk-landing-page .sr-role ul { margin: 0; padding: 0; list-style: none; }
.cnk-landing-page .sr-role li { position: relative; padding-left: 11px; color: rgba(255,255,255,.76); font-size: 11.5px; line-height: 1.85; }
.cnk-landing-page .sr-role li::before { content: "•"; position: absolute; left: 0; color: rgba(255,255,255,.5); }

/* --- thẻ bước có số lớn --- */
.cnk-landing-page .sr-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.cnk-landing-page .sr-step { padding: 20px 16px; border: 1px solid var(--lp-line); border-radius: 8px; background: #fff; }
.cnk-landing-page .sr-step__num { margin: 0 0 10px !important; color: #dfe5ea; font: 800 1.9rem/1 Manrope, sans-serif; font-variant-numeric: tabular-nums; }
.cnk-landing-page .sr-step strong { display: block; margin-bottom: 6px; color: #061d3d; font-size: 12.5px; font-weight: 700; line-height: 1.4; }
.cnk-landing-page .sr-step p { margin: 0; color: var(--lp-gray); font-size: 11.5px; line-height: 1.65; }

/* --- quy trình ngang sáu bước --- */
.cnk-landing-page .sr-flow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; position: relative; }
.cnk-landing-page .sr-flow__item { position: relative; text-align: center; }
.cnk-landing-page .sr-flow__item:not(:last-child)::after { content: ""; position: absolute; top: 27px; left: calc(50% + 32px); right: calc(-50% + 32px); border-top: 1px dashed var(--lp-line); }
.cnk-landing-page .sr-flow__icon { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 12px; border: 1px solid var(--lp-line); border-radius: 50%; background: #fff; }
.cnk-landing-page .sr-flow__icon svg { width: 22px; height: 22px; fill: none; stroke: var(--lp-red); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cnk-landing-page .sr-flow__item p { margin: 0; color: #061d3d; font-size: 12px; font-weight: 600; line-height: 1.5; }

/* --- ba cột tiêu chí --- */
.cnk-landing-page .sr-criteria { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.cnk-landing-page .sr-criteria__col { padding: 22px; border: 1px solid var(--lp-line); border-radius: 10px; background: #fff; }
.cnk-landing-page .sr-criteria h3 { margin: 0 0 14px; color: #061d3d; font: 700 1rem/1.4 Manrope, sans-serif; }
.cnk-landing-page .sr-criteria ul { margin: 0; padding: 0; list-style: none; }
.cnk-landing-page .sr-criteria li { position: relative; padding: 6px 0 6px 22px; color: #33455f; font-size: 12.5px; line-height: 1.6; }
.cnk-landing-page .sr-criteria li::before { content: "✓"; position: absolute; left: 0; top: 6px; color: var(--lp-red); font-weight: 800; }
.cnk-landing-page .sr-note-card__tag { margin: 0 0 8px !important; color: var(--lp-red); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.cnk-landing-page .sr-note-card p { margin: 0 0 12px; color: var(--lp-gray); font-size: 12px; line-height: 1.7; }
.cnk-landing-page .sr-note-card img { width: 100%; height: auto; margin-bottom: 12px; border-radius: 8px; }
.cnk-landing-page .sr-note-card a { color: var(--lp-red); font-size: 12.5px; font-weight: 700; text-decoration: none; }
.cnk-landing-page .sr-note-card a:hover { text-decoration: underline; }

/* --- khổ hẹp --- */
@media (max-width: 1100px) {
  .cnk-landing-page .sr-roles,
  .cnk-landing-page .sr-steps { grid-template-columns: repeat(3, 1fr); }
  .cnk-landing-page .sr-flow { grid-template-columns: repeat(3, 1fr); row-gap: 26px; }
  .cnk-landing-page .sr-flow__item::after { display: none; }
  .cnk-landing-page .sr-criteria { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .cnk-landing-page .sr-roles,
  .cnk-landing-page .sr-steps,
  .cnk-landing-page .sr-flow { grid-template-columns: 1fr 1fr; }
}
