/* ===== Design tokens (from 公心会グループ recruit LP) ===== */


/* ===== Scatter decoration ===== */
.scatter { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.scatter svg { position: absolute; opacity: .35; }
.scatter .sm { width: 18px; height: 18px; }
.scatter .md { width: 32px; height: 32px; }
.scatter .lg { width: 64px; height: 64px; }
.scatter .c-blue { color: var(--pink-300); }
.scatter .c-pink { color: var(--rose-300); }
.scatter .R1 { top: 110px; right: -10px; transform: rotate(-12deg); }
.scatter .R2 { top: 280px; left: 6%; }
.scatter .R3 { bottom: 240px; right: 8%; }
.scatter .R4 { bottom: 80px; left: 12%; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    radial-gradient(60% 80% at 100% 0%, var(--pink-75), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  padding: 80px 0 70px;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute; pointer-events: none;
  background-image: radial-gradient(circle, var(--pink-200) 1.2px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: .5;
}
.hero::before { top: 24px; left: 24px; width: 220px; height: 120px; }
.hero::after  { bottom: 24px; right: 24px; width: 260px; height: 140px; }
.hero .container { position: relative; z-index: 1; text-align: center; }

.hero-title {
  font-size: 64px; font-weight: 900; line-height: 1.4;
  letter-spacing: 0.04em; margin: 0 0 28px;
}
.hero-title .pink { color: var(--rose-500); }
.hero-sub {
  font-size: 17px; color: var(--ink-2); line-height: 2.1;
  margin: 0 auto; max-width: 720px;
  font-weight: 500;
}

/* ===== Branch section ===== */
.branch-section { padding: 80px 0 100px; position: relative; }
.branch-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}

.branch-card {
  display: block;
  position: relative;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  padding: 36px 36px 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.branch-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--pink-100) 1px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0; transition: opacity .3s;
}
.branch-card.live { border-color: var(--pink-200); }
.branch-card.preview { background: var(--bg-soft); }

.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(45,133,179,0.4);
  border-color: var(--pink-300);
}
.branch-card:hover::before { opacity: .5; }

.branch-card > * { position: relative; }

.branch-card__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
}
.badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: currentColor;
}
.badge.live {
  background: var(--rose-500); color: #fff;
}
.badge.live .dot {
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.badge.preview {
  background: var(--pink-75); color: var(--pink-600);
  border: 1px solid var(--pink-200);
}
.badge.preview .dot { background: var(--pink-500); }

.count {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px; color: var(--ink-3); letter-spacing: 0.18em;
}

.branch-card__icon {
  width: 100px; height: 100px;
  border-radius: 24px;
  background: var(--pink-50);
  display: grid; place-items: center;
  color: var(--pink-500);
  margin-bottom: 22px;
}
.branch-card.live .branch-card__icon { background: var(--rose-50); color: var(--rose-500); }
.branch-card__icon svg { width: 56px; height: 56px; }

.branch-card__title {
  font-size: 28px; font-weight: 800;
  letter-spacing: 0.04em; margin: 0 0 14px;
  color: var(--ink);
}
.branch-card__lead {
  font-size: 15px; line-height: 1.95; color: var(--ink-2);
  margin: 0 0 22px;
}
.branch-card__lead strong { color: var(--rose-500); font-weight: 700; }
.branch-card.preview .branch-card__lead strong { color: var(--pink-600); }

.branch-card__tags {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.branch-card__tags li {
  font-size: 12.5px; font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
  background: var(--pink-75); color: var(--pink-600);
  letter-spacing: 0.04em;
}
.branch-card.live .branch-card__tags li {
  background: var(--rose-50); color: var(--rose-600);
}

.branch-card__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700;
  color: var(--pink-600); letter-spacing: 0.06em;
}
.branch-card.live .branch-card__cta { color: var(--rose-600); }
.branch-card__cta svg { transition: transform .25s; }
.branch-card:hover .branch-card__cta svg { transform: translateX(4px); }

.branch-note {
  margin-top: 48px;
  text-align: center;
  font-size: 13.5px; color: var(--ink-3); line-height: 2;
}
.branch-note strong { color: var(--ink-2); font-weight: 700; }

/* ===== Statement strip ===== */
.statement-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 72px 0;
  text-align: center;
}
.statement-strip__copy {
  margin: 0;
  font-size: 22px; font-weight: 700;
  line-height: 2.0; letter-spacing: 0.06em;
  color: var(--ink);
}
.statement-strip__copy strong { color: var(--ink); font-weight: 800; }
.statement-strip__copy .pink { color: var(--rose-500); }

/* ===== Listing page (recruiting / preview) ===== */
.page-hero {
  position: relative;
  background:
    radial-gradient(60% 80% at 100% 0%, var(--pink-75), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  padding: 60px 0 56px;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--pink-200) 1.2px, transparent 1.6px);
  background-size: 14px 14px; opacity: .35;
  mask: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: 48px; font-weight: 900; letter-spacing: 0.06em;
  margin: 0 0 16px; color: var(--ink);
}
.page-hero h1 .pink { color: var(--rose-500); }
.page-hero p.lead {
  font-size: 16px; line-height: 2; color: var(--ink-2);
  margin: 0 auto; max-width: 720px;
}

.listing-section { padding: 70px 0 90px; }
.listing-grid { display: grid; gap: 24px; }

.job-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 32px 36px 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px 36px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.job-card:hover {
  transform: translateY(-2px);
  border-color: var(--pink-200);
  box-shadow: 0 18px 36px -22px rgba(45,133,179,0.4);
}
.job-card__head {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 14px;
}
.job-card__head .badge { font-size: 11.5px; padding: 5px 12px; }
.job-card__title {
  margin: 0 0 12px;
  font-size: 24px; font-weight: 800; letter-spacing: 0.04em;
  color: var(--ink);
}
.job-card__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px 24px;
  margin: 14px 0 0;
  font-size: 13.5px; color: var(--ink-2);
}
.job-card__meta dt {
  font-size: 11px; color: var(--ink-3); font-weight: 700;
  letter-spacing: 0.14em; margin-bottom: 2px;
}
.job-card__meta dd { margin: 0; font-weight: 600; }

.job-card__action {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink-500); color: #fff;
  padding: 12px 22px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  white-space: nowrap;
  align-self: center;
  transition: background .2s, transform .2s;
}
.job-card__action:hover { background: var(--pink-600); transform: translateY(-1px); }
.job-card__action svg { width: 16px; height: 16px; }

.job-card.preview {
  background: var(--bg-soft);
  border-style: dashed;
  border-color: var(--pink-200);
}
.job-card.preview .job-card__action {
  background: #fff;
  color: var(--pink-600);
  border: 1px solid var(--pink-300);
}
.job-card.preview .job-card__action:hover { background: var(--pink-75); }

.empty-state {
  text-align: center;
  background: var(--bg-soft);
  border: 1px dashed var(--pink-200);
  border-radius: 20px;
  padding: 56px 32px;
  color: var(--ink-2);
}
.empty-state h3 {
  margin: 0 0 12px;
  font-size: 22px; font-weight: 800; color: var(--ink);
  letter-spacing: 0.04em;
}
.empty-state p { margin: 0 auto; max-width: 560px; font-size: 14.5px; line-height: 2; }

.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 56px;
  font-size: 13px; font-weight: 700; color: var(--pink-600);
  letter-spacing: 0.06em;
}
.back-link svg { transition: transform .2s; }
.back-link:hover svg { transform: translateX(-3px); }

/* ===== Detail block for a single job (used on recruiting page) ===== */
.detail-block {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 36px 40px;
}
.detail-block h3 {
  margin: 0 0 6px;
  font-size: 22px; font-weight: 800; letter-spacing: 0.04em;
}
.detail-block p.intro {
  margin: 0 0 22px;
  font-size: 14.5px; color: var(--ink-2); line-height: 2;
}
.entry-table {
  width: 100%; border-collapse: collapse;
  font-size: 13.5px;
}
.entry-table th, .entry-table td {
  text-align: left; padding: 14px 16px;
  border-bottom: 1px solid var(--line-2);
  vertical-align: top;
}
.entry-table th {
  width: 160px;
  font-weight: 700; color: var(--pink-600);
  background: var(--pink-50);
  letter-spacing: 0.08em;
  font-size: 12.5px;
}
.entry-table td { color: var(--ink-2); line-height: 1.9; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero { padding: 56px 0; }
  .hero-title { font-size: 40px; line-height: 1.45; }
  .statement-strip__copy { font-size: 17px; line-height: 1.9; }
  .page-hero h1 { font-size: 32px; }
  .job-card { grid-template-columns: 1fr; padding: 24px 22px; }
  .job-card__action { justify-self: start; }
  .detail-block { padding: 26px 22px; }
  .entry-table th { width: 110px; padding: 12px 10px; font-size: 11.5px; }
  .entry-table td { padding: 12px 10px; }
}

/* === Featured 新卒採用 banner === */
.featured-section {
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

.featured-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.featured-card:hover {
  transform: translateY(-3px);
  border-color: var(--pink-200);
  box-shadow: 0 40px 80px -40px rgba(45, 133, 179, 0.4);
}

.featured-card__body {
  padding: 56px 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.featured-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: var(--rose-500);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 28px;
}

.featured-card__eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: fpulse 1.8s infinite;
}

@keyframes fpulse {
  0% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
      box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.featured-card__en {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
  letter-spacing: 0.24em;
  color: var(--rose-500);
  font-weight: 700;
  margin-bottom: 14px;
}

.featured-card__title {
  margin: 0 0 18px;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: var(--ink);
}

.featured-card__title .accent {
  color: var(--rose-500);
}

.featured-card__lead {
  margin: 0 0 32px;
  font-size: 15.5px;
  line-height: 2.0;
  color: var(--ink-2);
  max-width: 480px;
}

.featured-card__lead strong {
  color: var(--pink-600);
  font-weight: 700;
}

.featured-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  align-self: flex-start;
  background: var(--rose-500);
  color: #fff;
  padding: 18px 36px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 14px 28px -14px rgba(242, 108, 139, 0.6);
}

.featured-card__cta:hover {
  background: var(--rose-600);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -16px rgba(242, 108, 139, 0.7);
  color: #fff;
}

.featured-card__cta svg {
  transition: transform .2s;
}

.featured-card__cta:hover svg {
  transform: translateX(4px);
}

/* Visual side */
.featured-card__visual {
  position: relative;
  background:
      linear-gradient(135deg, var(--rose-100), var(--rose-50)),
      var(--rose-50);
  min-height: 440px;
  display: grid;
  place-items: center;
  border-radius: 0 28px 28px 0;
}

.featured-card__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--rose-200) 1.2px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: .5;
}

.featured-card__visual::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  top: -80px;
  right: -60px;
  filter: blur(2px);
}

.featured-card__photo {
  position: relative;
  z-index: 1;
  width: 80%;
  aspect-ratio: 4 / 5;
  max-height: 360px;
  background:
      repeating-linear-gradient(135deg, #FFE3EC 0 14px, #FFD2DF 14px 28px);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--rose-600);
  font-family: ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  box-shadow: 0 30px 60px -30px rgba(242, 108, 139, 0.5);
  overflow: hidden;
}

.featured-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card__stamp {
  position: absolute;
  top: 40px;
  right: -30px;
  z-index: 2;
  background: #fff;
  color: var(--rose-500);
  padding: 14px 22px;
  border-radius: 18px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  box-shadow: 0 12px 28px -14px rgba(31, 42, 51, 0.25);
  transform: rotate(6deg);
  line-height: 1.5;
  text-align: center;
}

.featured-card__stamp strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* === Other jobs list === */
.jobs-section {
  padding: 60px 0 80px;
  position: relative;
}

.jobs-section .jobs-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.jobs-heading h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.jobs-heading h2 .en {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--pink-500);
  font-weight: 700;
  margin-bottom: 6px;
}

.jobs-heading .meta {
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.jobs-grid .job-tile.span-2 {
  grid-column: 1 / -1;
}

.job-tile {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}

.job-tile:hover {
  transform: translateY(-3px);
  border-color: var(--pink-300);
  box-shadow: 0 18px 36px -22px rgba(45, 133, 179, 0.4);
}

.job-tile__num {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--pink-50);
  color: var(--pink-600);
  display: grid;
  place-items: center;
  font-family: ui-monospace, monospace;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.job-tile__body {
  flex: 1;
  min-width: 0;
}

.job-tile__role {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--pink-600);
  margin-bottom: 5px;
}

.job-tile__title {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.55;
}

.job-tile__title .sub {
  display: inline-block;
  margin-left: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pink-600);
  letter-spacing: 0.06em;
}

.job-tile__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--rose-50);
  color: var(--rose-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.job-tile__badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-500);
}

.job-tile__arrow {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--pink-200);
  color: var(--pink-500);
  display: grid;
  place-items: center;
  transition: background .2s, color .2s, transform .2s;
}

.job-tile:hover .job-tile__arrow {
  background: var(--pink-500);
  color: #fff;
  transform: translateX(2px);
}

.jobs-section .featured-card__stamp {
  top: -30px;
  right: auto;
  left: -30px;
  transform: rotate(-6deg);
}

.jobs-section .featured-card__stamp strong {
  color: var(--rose-500);
}

/* === Interview section === */
.interview-section {
  padding: 90px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  position: relative;
}

.interview-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s;
}

.interview-card:hover {
  border-color: var(--pink-200);
  box-shadow: 0 30px 60px -36px rgba(45, 133, 179, 0.4);
}

.interview-card__media {
  position: relative;
  background:
      linear-gradient(135deg, var(--pink-100), var(--pink-50)),
      var(--pink-75);
  min-height: 280px;
  display: grid;
  place-items: center;
  color: var(--pink-600);
  overflow: hidden;
}

.interview-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--pink-200) 1.2px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: .5;
}

.interview-card__brand {
  position: relative;
  text-align: center;
}

.interview-card__brand .logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 24px -16px rgba(45, 133, 179, 0.45);
  margin-bottom: 12px;
}

.interview-card__brand .logo .name {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--pink-600);
}

.interview-card__brand .logo .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose-500);
  align-self: center;
}

.interview-card__brand .caption {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--pink-600);
}

.interview-card__body {
  padding: 44px 44px 40px;
}

.interview-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose-50);
  color: var(--rose-500);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.interview-card__title {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.55;
}

.interview-card__title .pink {
  color: var(--rose-500);
}

.interview-card__lead {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 2.0;
  color: var(--ink-2);
}

.interview-card__lead strong {
  color: var(--pink-600);
  font-weight: 700;
}

.interview-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink-500);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background .2s, transform .2s;
}

.interview-cta:hover {
  background: var(--pink-600);
  color: #fff;
  transform: translateY(-1px);
}

.interview-cta svg {
  transition: transform .2s;
}

.interview-cta:hover svg {
  transform: translateX(4px);
}

@media (max-width: 880px) {
  .featured-card {
      grid-template-columns: 1fr;
  }

  .featured-card__body {
      padding: 36px 26px 32px;
  }

  .featured-card__title {
      font-size: 28px;
  }

  .featured-card__visual {
      min-height: 260px;
      border-radius: 0 0 28px 28px;
  }

  .featured-card__photo {
      width: 60%;
      max-height: 240px;
  }

  .featured-card__stamp {
      top: 18px;
      right: -10px;
      padding: 10px 16px;
      font-size: 10px;
  }

  .featured-card__stamp strong {
      font-size: 15px;
  }

  .jobs-grid {
      grid-template-columns: 1fr;
  }

  .job-tile {
      padding: 20px 18px;
      gap: 14px;
  }

  .job-tile__num {
      width: 44px;
      height: 44px;
      font-size: 14px;
  }

  .job-tile__title {
      font-size: 16px;
  }

  .job-tile__arrow {
      width: 36px;
      height: 36px;
  }

  .interview-card {
      grid-template-columns: 1fr;
  }

  .interview-card__body {
      padding: 30px 26px;
  }

  .interview-card__title {
      font-size: 22px;
  }

  .jobs-section .featured-card__stamp {
    left: -10px;
  }
}

@media (max-width: 768px) {
  .featured-card__title {
    font-size: 24px;
  }
}