:root {
  --bg: #fff1e6;
  --card: #ffffff;
  --text: #2f211a;
  --muted: #725b4d;
  --line: #ead4c3;
  --brand: #6a2e00;
  --brand-2: #9c3f00;
  --accent: #d96c00;
  --accent-soft: #f2b277;
  --soft: #fff1e6;
  --soft-2: #fff8f2;
  --success: #e9f8ef;
  --error: #fdecec;
  --radius: 24px;
  --shadow: 0 16px 40px rgba(106, 46, 0, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
main { min-height: calc(100vh - 180px); }

.shell {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
}

.logo-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(145deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 24px rgba(106, 46, 0, 0.18);
  color: #fff1e6;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.16em;
}

.logo-mark span:last-child {
  color: var(--accent-soft);
  transform: translateX(-0.04em);
}

.main-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--brand);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 74px;
  background: #6a2e00;
}

.hero-stage {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  padding: 56px 0;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.02;
  max-width: 720px;
  color: #fff;
}

.hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  max-width: 700px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-media-band {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(140deg, #6a2e00, #9c3f00);
  box-shadow: 0 28px 70px rgba(106, 46, 0, 0.18);
  border: 1px solid rgba(106, 46, 0, 0.12);
}

.hero-media-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74, 32, 0, 0.2), rgba(74, 32, 0, 0.62));
  z-index: 1;
}

.hero-media-band--placeholder {
  display: grid;
  place-items: center;
}

.video-placeholder {
  height: 100%;
  min-height: 100%;
  border-radius: 0;
  border: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}

.hero-background-video,
.hero-background-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(106, 46, 0, 0.35);
  pointer-events: none;
}

.hero-background-video {
  object-fit: cover;
}

.hero-background-embed {
  transform: scale(1.22);
  transform-origin: center;
}

.hero-media-tint {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(74, 32, 0, 0.78) 0%, rgba(74, 32, 0, 0.58) 36%, rgba(106, 46, 0, 0.34) 62%, rgba(74, 32, 0, 0.56) 100%),
    linear-gradient(180deg, rgba(74, 32, 0, 0.22) 0%, rgba(74, 32, 0, 0.4) 100%);
}

.hero .eyebrow {
  color: #f2b277;
}

.hero .button-primary {
  background: #fff;
  color: var(--brand);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--brand-2);
}

.hero .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(8px);
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--bg);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h1,
.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand-2);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brand);
  color: #fff;
}

.button-secondary {
  background: #fff;
  color: var(--brand);
  border-color: var(--line);
}

.button-full {
  width: 100%;
}

.section-cta-center {
  margin-top: 30px;
  text-align: center;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.job-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 30px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.job-card:hover {
  transform: translateY(-4px);
  border-color: #f2b277;
  box-shadow: 0 20px 50px rgba(106, 46, 0, 0.12);
}

.job-card h3 {
  margin: 0 0 18px;
  font-size: 1.45rem;
  line-height: 1.16;
}

.job-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.job-meta-list {
  display: grid;
  gap: 8px;
}

.job-meta-list span strong {
  display: inline-block;
  min-width: 86px;
  color: var(--muted);
  font-weight: 700;
}

.urgency-pill {
  margin-top: 18px;
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 700;
}

.urgency-pill--new,
.urgency-line--new {
  background: #fff1e6;
  color: #6a2e00;
}

.urgency-pill--countdown,
.urgency-line--countdown {
  background: #f2b277;
  color: #6a2e00;
}

.urgency-pill--closing,
.urgency-line--closing {
  background: #fff1e6;
  color: var(--brand);
}

.urgency-pill--expired,
.urgency-line--expired {
  background: #f3f4f7;
  color: #5f6c7d;
}


.testimonials-home {
  overflow: hidden;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.testimonials-header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.testimonial-controls {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.testimonial-nav {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff1e6;
  color: var(--brand);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.testimonial-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.testimonial-slider {
  width: 100%;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.28s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  background: #fff1e6;
  border-radius: 24px;
  padding: 28px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-avatar-fallback {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}

.testimonial-person h3 {
  margin: 0 0 4px;
  font-size: 1.18rem;
  line-height: 1.18;
}

.testimonial-person p {
  margin: 0;
  color: #8a6f5e;
  font-size: 0.96rem;
  line-height: 1.4;
}

.testimonial-quote {
  margin: 0 0 18px;
  color: #5f4a3d;
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--brand);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }

  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }
}



.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--muted);
}

.upload-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, #fff8f2, #fff1e6);
}

.upload-banner h2 {
  margin: 0 0 8px;
}

.upload-banner p {
  margin: 0;
  color: var(--muted);
}

.single-job-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 42px;
  align-items: start;
}

.job-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 10px;
}

.badge {
  background: var(--soft);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
}

.urgency-line {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--brand);
  font-weight: 700;
}

.rich-copy,
.rich-copy p,
.rich-copy ul,
.rich-copy ol {
  color: var(--text);
}

.rich-copy p {
  margin: 0 0 16px;
}

.detail-list {
  padding-left: 20px;
}

.detail-list li {
  margin-bottom: 12px;
}

.apply-card,
.admin-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.stack-form {
  display: grid;
  gap: 14px;
}

.stack-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.stack-form input,
.stack-form textarea,
.stack-form select {
  width: 100%;
  border: 1px solid #e2c2aa;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
}

.stack-form textarea {
  resize: vertical;
  max-width: 100%;
  min-height: 160px;
  max-height: 420px;
}

.stack-form input::placeholder,
.stack-form textarea::placeholder {
  color: #a48978;
}

.stack-form-group {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 12px;
}

.stack-form-group legend {
  padding: 0;
  font-weight: 600;
}

.language-dropdown {
  position: relative;
  border: 0;
  overflow: visible;
  display: grid;
  gap: 12px;
}

.language-dropdown__summary {
  width: 100%;
  min-height: 56px;
  cursor: pointer;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(106, 46, 0, 0.04);
  font-weight: 700;
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
  overflow: hidden;
}

.language-dropdown__summary [data-language-summary] {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.stack-form .language-dropdown__summary {
  min-height: 68px;
  padding: 10px 22px;
}

.stack-form .language-dropdown__summary [data-language-summary] {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.35;
}

.language-dropdown__summary.is-open {
  border-color: #9c3f00;
  box-shadow: 0 10px 22px rgba(106, 46, 0, 0.08);
}

.language-dropdown__arrow {
  color: var(--brand);
  font-size: 0.78rem;
  transition: transform .18s ease;
  flex-shrink: 0;
}

.language-dropdown__summary.is-open .language-dropdown__arrow {
  transform: rotate(180deg);
}

.language-dropdown__panel {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  z-index: 40;
  width: min(100%, 430px);
  display: grid;
  gap: 12px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 42px rgba(106, 46, 0, 0.14);
}

.language-dropdown__panel[hidden] {
  display: none !important;
}

.language-options-list {
  display: grid;
  max-height: 320px;
  overflow-y: auto;
}

.language-option-line {
  padding: 14px 8px;
  border-bottom: 1px solid #f3e4d8;
  font-weight: 500;
}

.language-option-line:last-child {
  border-bottom: 0;
}

.checkbox-line {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.checkbox-line input {
  width: auto;
}

.file-picker {
  position: relative;
}

.file-picker__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-picker__control {
  min-height: 56px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 18px rgba(106, 46, 0, 0.04);
  min-width: 0;
  overflow: hidden;
}

.file-picker__button {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.file-picker__name {
  color: var(--muted);
  font-weight: 600;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.form-two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.admin-shell {
  max-width: 520px;
}

.admin-shell-wide {
  max-width: 980px;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.admin-toolbar.compact {
  margin-bottom: 18px;
}

.admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-grid {
  display: grid;
  gap: 24px;
}

.notice {
  padding: 12px 14px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.notice.error {
  background: var(--error);
}

.notice.success {
  background: var(--success);
}

.delivery-status {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft-2);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.delivery-status--sent {
  background: var(--success);
  color: #1e6840;
}

.delivery-status--failed {
  background: var(--error);
  color: #8a2525;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.simple-form-shell {
  max-width: 760px;
}

.contact-page-hero {
  padding: 88px 0 72px;
}

.contact-page-hero-copy {
  max-width: 760px;
  color: #fff;
}

.contact-page-hero-copy h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.contact-page-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.contact-page-hero .eyebrow {
  color: #f2b277;
}

.contact-page-body {
  padding-top: 56px;
}

.contact-page-shell {
  width: min(1240px, calc(100% - 48px));
}

.contact-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto;
}

.contact-form-column {
  display: flex;
  justify-content: center;
  width: 100%;
  min-width: 0;
}

.contact-form-shell {
  width: 100%;
  margin: 0 auto;
}

.contact-direct-section {
  width: 100%;
}

.contact-email-guidance {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 600;
}

.contact-request-form {
  margin-top: 20px;
}

.contact-request-form .button-primary {
  width: 100%;
}

.contact-request-form input::placeholder,
.contact-request-form textarea::placeholder {
  color: #a48978;
}

.contact-column-title {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.08;
  color: var(--text);
}

.contact-email-guidance.is-neutral {
  background: #fff1e6;
  border-color: #f2b277;
  color: var(--brand);
}

.contact-email-guidance.is-warning {
  background: #fff8ee;
  border-color: #f1d4a5;
  color: #835a16;
}

.contact-email-guidance.is-success {
  background: #edf7f1;
  border-color: #c9e8d4;
  color: #1e6840;
}

.field-optional {
  color: var(--muted);
  font-weight: 500;
}

.contact-direct-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-direct-option {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 26px;
}

.contact-direct-option + .contact-direct-option {
  border-left: 1px solid var(--line);
}

.contact-action-title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.contact-direct-option p {
  flex: 1 1 auto;
  margin: 0 0 18px;
  color: var(--muted);
}

.contact-direct-button {
  width: 100%;
  justify-content: center;
  text-align: center;
  overflow-wrap: anywhere;
}

.jobs-filter-toolbar {
  margin-bottom: 34px;
  position: relative;
}

.jobs-filter-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, #fff8f2, #fff1e6);
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.pagination {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pagination-link {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  color: var(--brand);
}

.pagination-link.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.empty-state-card {
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  color: var(--muted);
}

.footer-legal-line {
  margin-top: 8px;
}

.footer-legal-trigger {
  color: var(--brand);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
  text-underline-offset: 3px;
}

.modal-open {
  overflow: hidden;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(74, 32, 0, 0.62);
}

.legal-modal__dialog {
  position: relative;
  width: min(520px, calc(100% - 32px));
  margin: 10vh auto 0;
  padding: 30px 30px 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(106, 46, 0, 0.24);
}

.legal-modal__dialog h2 {
  margin: 0 0 16px;
}

.legal-modal__dialog p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.legal-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .jobs-grid,
  .stats-grid,
  .single-job-layout,
  .contact-content-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-shell {
    max-width: none;
  }

  .hero-stage {
    min-height: 600px;
  }

  .salary-range-inputs,
  .salary-dropdown-grid,
  .checkbox-grid,
  .form-two-up {
    grid-template-columns: 1fr;
  }

  .language-dropdown__panel {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }

  .upload-banner,
  .footer-inner,
  .admin-toolbar,
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .jobs-filter-row {
    flex-wrap: wrap;
  }

  .filter-results-count {
    margin-left: 0;
  }

}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 24px, 1320px);
  }

  .header-inner {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    gap: 14px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 66px 0 54px;
  }

  .contact-direct-panel {
    grid-template-columns: 1fr;
  }

  .contact-direct-option {
    padding: 24px;
  }

  .contact-direct-option + .contact-direct-option {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-stage {
    min-height: auto;
    padding: 42px 0;
  }

  .hero-media-band {
    border-radius: 24px;
  }

  .job-card,
  .testimonial-card,
  .stat-card,
  .admin-card,
  .apply-card {
    padding: 22px;
  }

  .jobs-filter-row {
    padding: 16px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
