:root {
  --bg: #f6f9fc;
  --card: #ffffff;
  --text: #132238;
  --muted: #6b7a90;
  --line: #d9e1eb;
  --brand: #17335f;
  --brand-2: #2b4d7a;
  --soft: #eef4fb;
  --soft-2: #f3f7fc;
  --success: #e9f8ef;
  --error: #fdecec;
  --radius: 24px;
  --shadow: 0 16px 40px rgba(12, 28, 52, 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 {
  height: 48px;
  width: auto;
}

.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: #081425;
}

.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, #162a4a, #284a74);
  box-shadow: 0 28px 70px rgba(12, 28, 52, 0.18);
  border: 1px solid rgba(20, 39, 69, 0.08);
}

.hero-media-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 12, 24, 0.2), rgba(5, 12, 24, 0.56));
  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(8, 20, 39, 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(5, 12, 24, 0.72) 0%, rgba(5, 12, 24, 0.52) 36%, rgba(5, 12, 24, 0.3) 62%, rgba(5, 12, 24, 0.48) 100%),
    linear-gradient(180deg, rgba(5, 12, 24, 0.2) 0%, rgba(5, 12, 24, 0.34) 100%);
}

.hero .eyebrow {
  color: #d6e6ff;
}

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

.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: #bfd0e2;
  box-shadow: 0 20px 50px rgba(12, 28, 52, 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: #edf6ff;
  color: #15457b;
}

.urgency-pill--countdown,
.urgency-line--countdown {
  background: #fff0e4;
  color: #9a4700;
}

.urgency-pill--closing,
.urgency-line--closing {
  background: #eef4fb;
  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: #f0f5fb;
  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: #eef3fb;
  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: #8094b2;
  font-size: 0.96rem;
  line-height: 1.4;
}

.testimonial-quote {
  margin: 0 0 18px;
  color: #4f617d;
  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, #f8fbff, #eef4fb);
}

.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 #cfd8e3;
  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: #9aa8ba;
}

.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(12, 28, 52, 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;
}

.language-dropdown__summary.is-open {
  border-color: #0f2038;
  box-shadow: 0 10px 22px rgba(12, 28, 52, 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(12, 28, 52, 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 #edf1f6;
  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(12, 28, 52, 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);
}

.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: #d6e6ff;
}

.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-side-column {
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: 760px;
  align-self: start;
  position: static;
}

.contact-email-guidance,
.contact-action-status {
  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%;
  max-width: 320px;
}

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

.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: #f4f8fd;
  border-color: #d9e4f1;
  color: var(--brand);
}

.contact-action-status.is-neutral {
  background: #f4f8fd;
  border-color: #d9e4f1;
  color: var(--brand);
}

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

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

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

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

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

.contact-action-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 28px 26px;
}

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

.contact-action-card p,
.contact-action-copy {
  margin: 0 0 18px;
  color: var(--muted);
}

.contact-action-placeholder {
  padding: 16px 18px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid #dfe7f0;
  color: var(--muted);
}

.contact-action-placeholder code {
  font-family: inherit;
  font-weight: 700;
  color: var(--brand);
}

.button.is-disabled {
  opacity: 0.55;
  pointer-events: none;
  transform: none;
}

.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, #f8fbff, #eef4fb);
  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-cookie-line {
  margin-top: 8px;
}

.footer-cookie-trigger,
.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(5, 12, 24, 0.56);
}

.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(11, 27, 51, 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;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 70;
  width: min(960px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 46px rgba(11, 27, 51, 0.16);
  backdrop-filter: blur(12px);
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 6px;
}

.cookie-banner__copy p {
  margin: 0;
  color: var(--muted);
  max-width: 640px;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

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

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

  .contact-side-column {
    position: static;
    max-width: 520px;
  }

  .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;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__actions .button {
    flex: 1 1 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-action-card {
    padding: 24px;
  }

  .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%;
  }
}
