.jobs-page {
  background: #fff;
}

.jobs-main {
  color: #202020;
  font-family: "M PLUS Rounded 1c", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

.jobs-main *,
.jobs-main *::before,
.jobs-main *::after {
  box-sizing: border-box;
}

.jobs-main img {
  display: block;
  max-width: 100%;
  height: auto;
}

.jobs-inner {
  width: min(1040px, calc(100% - 40px));
  margin-inline: auto;
}

.jobs-list-section .jobs-inner {
  width: 100%;
  max-width: 1040px;
}

.jobs-page-title {
  padding: 8px 20px;
  background: var(--meets-pale-blue);
}

.jobs-page-title h1 {
  display: flex;
  min-height: 64px;
  gap: 4px;
  margin: 0;
  align-items: center;
  justify-content: center;
  color: var(--meets-deep-green);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.4;
}

.jobs-page-title img {
  width: 84px;
  margin: -4px -88px -4px 0;
}

.jobs-list-section {
  padding: 0 0 70px;
  background: #fff;
}

.jobs-filter-status {
  margin: 0 0 12px;
  color: #202020;
  font-size: 16px;
  font-weight: 700;
}

.jobs-filter {
  padding: 30px 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  background: #eaf2f8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .03);
}

.jobs-results-anchor {
  padding-top: 24px;
  margin-top: -24px;
}

.jobs-filter__row {
  margin-bottom: 20px;
}

.jobs-filter__row.is-expanded {
  padding-bottom: 20px;
  border-bottom: 1px solid #b2c6bf;
}

.jobs-filter__header {
  padding-bottom: 14px;
  border-bottom: 1px solid #b2c6bf;
  margin-bottom: 10px;
}

.jobs-accordion-trigger {
  display: inline-flex;
  width: 280px;
  min-width: 200px;
  padding: 6px 22px;
  border: 3px solid var(--meets-green);
  border-radius: 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--meets-green);
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.jobs-accordion-trigger:hover {
  background: #f5fcf9;
  transform: translateY(-1px);
}

.jobs-filter__trigger-label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.jobs-filter__trigger-label svg {
  flex: 0 0 auto;
}

.jobs-accordion-trigger__arrow {
  display: inline-grid;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: var(--meets-green);
  font-size: 10px;
  transition: transform .25s ease;
}

.jobs-accordion-trigger__arrow::before {
  content: "▼";
  transform: translateY(1px);
}

.jobs-accordion-trigger.is-open .jobs-accordion-trigger__arrow {
  transform: rotate(180deg);
}

.jobs-accordion-panel {
  padding-top: 15px;
}

.jobs-accordion-panel.is-animating {
  overflow: hidden;
  will-change: height, padding-top, opacity;
}

.jobs-accordion-panel[hidden] {
  display: none;
}

.jobs-region-group {
  padding: 12px 0 16px;
  border-bottom: 1px solid #b2c6bf;
}

.jobs-region-group:last-child {
  border-bottom: 0;
}

.jobs-region-group__title {
  display: flex;
  width: 100%;
  padding: 0 0 4px;
  border-bottom: 1px solid currentColor;
  margin-bottom: 15px;
  align-items: center;
  font-size: 19px;
  font-weight: 700;
}

.jobs-region-group__title span {
  font-size: 19px;
}

.jobs-region-group--1 .jobs-region-group__title,
.jobs-region-group--1 .jobs-region-group__title label {
  color: #ec6b61;
}

.jobs-region-group--2 .jobs-region-group__title,
.jobs-region-group--2 .jobs-region-group__title label {
  color: var(--meets-green);
}

.jobs-region-group--3 .jobs-region-group__title,
.jobs-region-group--3 .jobs-region-group__title label {
  color: #f39800;
}

.jobs-region-group--4 .jobs-region-group__title,
.jobs-region-group--4 .jobs-region-group__title label {
  color: #2b7bb9;
}

.jobs-region-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px 20px;
  padding-left: 10px;
}

.jobs-category-options {
  display: flex;
  gap: 40px;
  padding: 20px 0 10px 10px;
}

.jobs-region-group label,
.jobs-category-options label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.jobs-filter input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.jobs-filter input[type="checkbox"] + span {
  display: inline-flex;
  align-items: center;
}

.jobs-filter input[type="checkbox"] + span::before {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 2px solid #555;
  border-radius: 4px;
  margin-right: 8px;
  background: #fff;
  content: "";
}

.jobs-filter input[type="checkbox"]:checked + span::before,
.jobs-filter input[type="checkbox"]:indeterminate + span::before {
  border-color: var(--meets-green);
  background-color: var(--meets-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
}

.jobs-filter input[type="checkbox"]:focus-visible + span::before {
  outline: 3px solid rgba(34, 147, 94, .28);
  outline-offset: 3px;
}

.jobs-keyword {
  display: flex;
  gap: 15px;
  padding-bottom: 25px;
  border-bottom: 1px solid #b2c6bf;
  margin-top: 25px;
  align-items: center;
}

.jobs-keyword label {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
  color: #202020;
  font-size: 18px;
  font-weight: 700;
}

.jobs-keyword input {
  width: min(480px, 100%);
  height: 40px;
  padding: 0 12px;
  border: 1px solid #707070;
  border-radius: 6px;
  color: #202020;
  background: #fff;
  font: inherit;
  font-size: 16px;
}

.jobs-filter__actions {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  align-items: center;
  justify-content: center;
}

.jobs-filter__submit {
  display: inline-flex;
  padding: 10px 45px;
  border: 0;
  border-radius: 22px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--meets-green);
  box-shadow: 0 4px 8px rgba(0, 0, 0, .22);
  font: inherit;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.jobs-filter__submit::after {
  margin-left: 10px;
  content: "▶";
  font-size: 12px;
}

.jobs-filter__submit:hover {
  background: #1a7148;
  transform: translateY(-1px);
}

.jobs-filter__clear {
  color: #202020;
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.jobs-results-heading {
  display: flex;
  margin: 0 0 18px;
  align-items: baseline;
  justify-content: space-between;
}

.jobs-results-heading h2,
.jobs-results-heading p {
  margin: 0;
}

.jobs-results-heading h2 {
  color: var(--meets-deep-green);
  font-size: 24px;
}

.jobs-results-heading p {
  font-size: 16px;
  font-weight: 700;
}

.jobs-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.jobs-card {
  display: flex;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  position: relative;
  flex-direction: column;
  border: 2px solid #b8b8b8;
  border-radius: 20px;
  color: #202020;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.jobs-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, .16);
  transform: translateY(-3px);
}

.jobs-card__ribbon {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 66px;
  height: 66px;
  background: linear-gradient(135deg, #ee6a5b 0 50%, transparent 50%);
  pointer-events: none;
}

.jobs-card__ribbon span {
  position: absolute;
  top: 12px;
  left: 2px;
  width: 46px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  transform: rotate(-45deg);
}

.jobs-card__image {
  height: 180px;
  overflow: hidden;
  background: #edf3f0;
}

.jobs-card__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jobs-card__placeholder,
.jobs-detail-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: rgba(3, 56, 36, .36);
  background:
    radial-gradient(circle at 72% 26%, rgba(34, 147, 94, .15) 0 42px, transparent 43px),
    radial-gradient(circle at 28% 76%, rgba(34, 147, 94, .1) 0 60px, transparent 61px),
    #edf3f0;
}

.jobs-card__placeholder span,
.jobs-detail-card__placeholder span {
  padding: 5px 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .08em;
}

.jobs-card__body {
  display: flex;
  min-height: 220px;
  padding: 16px 20px 20px;
  flex: 1;
  flex-direction: column;
}

.jobs-card__badge-row {
  margin-bottom: 12px;
}

.jobs-category-badge {
  display: inline-block;
  padding: 3px 22px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.jobs-category-badge--work {
  color: #1864ab;
  background: #d0ebff;
}

.jobs-category-badge--volunteer {
  color: #1b4332;
  background: #d8f3dc;
}

.jobs-category-badge--circle {
  color: #a92525;
  background: #ffe3e3;
}

.jobs-new-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  color: #fff;
  background: #e76f59;
  font-size: 14px;
  font-weight: 700;
}

.jobs-card h3 {
  display: -webkit-box;
  height: 66px;
  padding-bottom: 10px;
  border-bottom: 2px solid #b2b2b2;
  margin: 0 0 12px;
  overflow: hidden;
  color: #202020;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.jobs-card__meta {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: auto 0 0;
}

.jobs-card__meta div,
.jobs-detail-card__meta dl div {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.jobs-card__meta dt,
.jobs-card__meta dd,
.jobs-detail-card__meta dt,
.jobs-detail-card__meta dd {
  margin: 0;
}

.jobs-card__meta dt,
.jobs-detail-card__meta dt {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.jobs-card__meta-place::before,
.jobs-card__meta-date::before {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.jobs-card__meta-place::before {
  background-image: url("/assets/images/jobs/icon-place.png");
}

.jobs-card__meta-date::before {
  background-image: url("/assets/images/jobs/icon-calendar.png");
}

.jobs-no-results {
  padding: 45px 20px;
  border-radius: 14px;
  background: #f8faf9;
  text-align: center;
}

.jobs-no-results p {
  margin: 0 0 5px;
  color: var(--meets-deep-green);
  font-size: 18px;
  font-weight: 700;
}

.jobs-no-results span {
  color: #666;
  font-size: 14px;
}

.jobs-pagination {
  display: flex;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid #dcdcdc;
  margin: 50px 0 0;
  align-items: center;
  justify-content: center;
}

.jobs-pagination__count {
  font-size: 18px;
  font-weight: 800;
}

.jobs-pagination__list {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.jobs-pagination__list a,
.jobs-pagination__list span {
  display: inline-grid;
  min-width: 44px;
  height: 44px;
  padding: 0 8px;
  border: 2px solid var(--meets-green);
  border-radius: 50%;
  place-items: center;
  color: var(--meets-green);
  background: #fff;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.jobs-pagination__list a:hover,
.jobs-pagination__list a.is-current {
  color: #fff;
  background: var(--meets-green);
}

.jobs-pagination__list .is-disabled {
  border-color: #c8d2cc;
  color: #9aa59f;
}

.jobs-detail-section,
.jobs-apply-section {
  padding: 0 0 60px;
  background: #fbfaf5;
}

.jobs-detail-card,
.jobs-apply-card {
  width: 100%;
  padding: 40px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(95, 92, 92, .05);
}

.jobs-detail-card__top {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(320px, 2fr);
  gap: 30px;
  align-items: start;
}

.jobs-detail-card__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 12px;
  background: #edf3f0;
}

.jobs-detail-card__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jobs-detail-card__meta {
  display: flex;
  gap: 12px;
  margin: 15px 0;
  align-items: center;
  justify-content: space-between;
}

.jobs-detail-card__badges,
.jobs-apply-card__badges {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
  align-items: center;
}

.jobs-detail-card__meta dl {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.jobs-detail-card__main h2 {
  padding: 10px 0;
  border-top: 3px solid var(--meets-green);
  border-bottom: 3px solid var(--meets-green);
  margin: 18px 0 12px;
  color: var(--meets-deep-green);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
}

.jobs-detail-card__organization {
  margin: 0;
  color: #333;
  font-size: 14px;
  font-weight: 700;
}

.jobs-detail-card__summary {
  min-width: 0;
  position: relative;
  padding-bottom: 150px;
}

.jobs-detail-card__summary table {
  width: 100%;
  border-collapse: collapse;
}

.jobs-detail-card__summary th {
  width: 108px;
  padding: 11px 4px 11px 0;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
  text-align: left;
}

.jobs-detail-card__summary th span,
.jobs-apply-table th span {
  display: flex;
  min-height: 29px;
  padding: 4px 8px;
  border-radius: 4px;
  align-items: center;
  justify-content: flex-start;
  color: #0d5ea5;
  background: #e3eef5;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.jobs-detail-card__summary td {
  padding: 11px 6px 11px 10px;
  border-bottom: 1px solid #e0e0e0;
  color: #202020;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  vertical-align: middle;
}

.jobs-detail-card__senior {
  position: absolute;
  right: 8px;
  bottom: -72px;
  width: min(300px, 90%);
  pointer-events: none;
}

.jobs-detail-card__status {
  display: flex;
  margin: 25px 0 10px;
  justify-content: center;
}

.jobs-detail-card__status span {
  display: inline-block;
  padding: 7px 42px;
  border-radius: 8px;
  color: #fff;
  background: var(--meets-green);
  font-size: 18px;
  font-weight: 700;
}

.jobs-detail-card__status--ended span {
  background: #666;
}

.jobs-dotted-line {
  width: 100%;
  border: 0;
  border-top: 2px dotted var(--meets-green);
  margin: 35px 0;
}

.jobs-detail-card__text h3 {
  margin: 0 0 15px;
  color: var(--meets-deep-green);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.6;
}

.jobs-detail-card__text > div {
  color: #333;
  font-size: 18px;
  letter-spacing: .02em;
  line-height: 1.85;
}

.jobs-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(760px, 100%);
  margin: 35px auto 0;
}

.jobs-detail-gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  object-fit: cover;
}

.jobs-detail-card__apply {
  display: flex;
  margin-top: 35px;
  flex-direction: column;
  align-items: center;
}

.jobs-detail-card__apply a {
  display: inline-flex;
  min-width: 290px;
  padding: 12px 35px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--meets-green);
  box-shadow: 0 4px 10px rgba(34, 147, 94, .25);
  font-size: 21px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.jobs-detail-card__apply a span {
  margin-left: 14px;
  font-size: 12px;
}

.jobs-detail-card__apply a:hover {
  background: #1a7148;
  transform: translateY(-2px);
}

.jobs-detail-card__apply small {
  margin-top: 7px;
  color: #555;
  font-size: 13px;
}

.jobs-detail-card__account-note {
  margin: 35px 0 0;
  color: #555;
  text-align: center;
}

.jobs-back {
  display: flex;
  margin-top: 38px;
  justify-content: center;
}

.jobs-back a {
  display: inline-flex;
  width: 290px;
  min-height: 60px;
  padding: 8px 24px 8px 42px;
  position: relative;
  border: 3px solid var(--meets-green);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  color: var(--meets-green);
  background: #fff;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, .12);
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.jobs-back a::before {
  position: absolute;
  top: 50%;
  left: 30px;
  border-width: 6px 9px 6px 0;
  border-style: solid;
  border-color: transparent var(--meets-green) transparent transparent;
  content: "";
  transform: translateY(-50%);
}

.jobs-back a:hover {
  background: #f4f9f6;
  transform: translateY(-2px);
}

.jobs-apply-card {
  padding: 50px 60px;
}

.jobs-apply-card header h2 {
  margin: 0 0 15px;
  color: var(--meets-deep-green);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.45;
}

.jobs-apply-card__intro {
  margin: 30px 0 40px;
  color: #333;
  font-size: 18px;
  letter-spacing: .03em;
  line-height: 1.85;
}

.jobs-apply-table {
  width: min(760px, 100%);
  border-collapse: separate;
  border-spacing: 0 16px;
  margin: 0 auto 30px;
}

.jobs-apply-table th {
  width: 145px;
  padding: 0;
  vertical-align: top;
  text-align: left;
}

.jobs-apply-table th span {
  width: 125px;
  min-height: 32px;
  justify-content: center;
}

.jobs-apply-table td {
  padding: 2px 10px 0 16px;
  color: #333;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.jobs-apply-table td div + div {
  margin-top: 5px;
}

.jobs-apply-table td a {
  color: #145d9d;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.jobs-apply-bottom-line {
  width: 100%;
  border: 0;
  border-top: 1px solid #b3b3b3;
  margin: 50px 0 0;
}

@media (max-width: 900px) {
  .jobs-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jobs-region-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jobs-detail-card__top {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  }

  .jobs-detail-card__meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 750px) {
  .jobs-inner {
    width: min(100% - 30px, 1040px);
  }

  .jobs-page-title {
    padding: 8px 15px;
  }

  .jobs-page-title h1 {
    min-height: 48px;
    font-size: 24px;
    letter-spacing: .02em;
  }

  .jobs-page-title img {
    width: 56px;
    margin: -4px -60px -4px 0;
  }

  .jobs-list-section,
  .jobs-detail-section,
  .jobs-apply-section {
    padding-bottom: 42px;
  }

  .jobs-filter-status {
    font-size: 14px;
    line-height: 1.6;
  }

  .jobs-filter {
    padding: 20px 15px;
  }

  .jobs-filter__row {
    margin-bottom: 20px;
  }

  .jobs-accordion-trigger {
    width: 100%;
  }

  .jobs-region-group__title {
    font-size: 19px;
  }

  .jobs-region-options {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    padding-left: 10px;
  }

  .jobs-region-group label,
  .jobs-category-options label {
    font-size: 18px;
  }

  .jobs-filter input[type="checkbox"] + span::before {
    width: 20px;
    height: 20px;
  }

  .jobs-category-options {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0 10px 10px;
  }

  .jobs-keyword {
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
  }

  .jobs-keyword label {
    font-size: 18px;
  }

  .jobs-keyword input {
    width: 100%;
  }

  .jobs-filter__actions {
    gap: 15px;
    flex-direction: column;
  }

  .jobs-filter__submit {
    width: 100%;
    max-width: 280px;
  }

  .jobs-results-heading h2 {
    font-size: 21px;
  }

  .jobs-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .jobs-card__image {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .jobs-card__body {
    min-height: 0;
  }

  .jobs-card h3 {
    height: auto;
    min-height: 58px;
    font-size: 18px;
  }

  .jobs-card__meta div,
  .jobs-detail-card__meta dl div {
    font-size: 15px;
  }

  .jobs-pagination {
    gap: 12px;
    margin-top: 35px;
    flex-direction: column;
  }

  .jobs-pagination__list {
    gap: 6px;
  }

  .jobs-pagination__list a,
  .jobs-pagination__list span {
    min-width: 38px;
    height: 38px;
  }

  .jobs-detail-card,
  .jobs-apply-card {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .jobs-detail-card__top {
    display: flex;
    gap: 18px;
    flex-direction: column;
  }

  .jobs-detail-card__main,
  .jobs-detail-card__summary {
    width: 100%;
  }

  .jobs-detail-card__summary {
    padding-bottom: 0;
  }

  .jobs-detail-card__meta {
    gap: 10px;
  }

  .jobs-detail-card__meta dl {
    display: grid;
    gap: 7px;
  }

  .jobs-detail-card__main h2 {
    margin-top: 14px;
    font-size: 18px;
  }

  .jobs-detail-card__summary th {
    width: 100px;
  }

  .jobs-detail-card__summary td {
    font-size: 15px;
  }

  .jobs-only-desktop {
    display: none !important;
  }

  .jobs-detail-card__status {
    margin-top: 20px;
  }

  .jobs-detail-card__status span {
    padding: 7px 32px;
    border-radius: 10px;
    font-size: 16px;
  }

  .jobs-dotted-line {
    margin: 25px 0;
  }

  .jobs-detail-card__text h3 {
    font-size: 18px;
    line-height: 1.5;
  }

  .jobs-detail-card__text > div {
    font-size: 15px;
    line-height: 1.75;
  }

  .jobs-detail-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
  }

  .jobs-detail-card__apply {
    margin-top: 25px;
  }

  .jobs-detail-card__apply a {
    min-width: 210px;
    min-height: 48px;
    padding: 8px 22px;
    font-size: 16px;
  }

  .jobs-back {
    margin-top: 30px;
  }

  .jobs-back a {
    width: 230px;
    min-height: 48px;
    padding-left: 35px;
    border-width: 2px;
    font-size: 16px;
  }

  .jobs-back a::before {
    left: 23px;
  }

  .jobs-apply-card header h2 {
    font-size: 20px;
  }

  .jobs-apply-card__intro {
    margin: 22px 0 28px;
    font-size: 15px;
    line-height: 1.75;
  }

  .jobs-apply-table {
    border-spacing: 0;
    margin-bottom: 10px;
  }

  .jobs-apply-table tr,
  .jobs-apply-table th,
  .jobs-apply-table td {
    display: block;
    width: 100%;
  }

  .jobs-apply-table tr + tr {
    margin-top: 18px;
  }

  .jobs-apply-table th {
    margin-bottom: 6px;
  }

  .jobs-apply-table th span {
    width: fit-content;
    min-width: 100px;
    min-height: 29px;
  }

  .jobs-apply-table td {
    padding: 0;
    font-size: 15px;
  }

  .jobs-apply-bottom-line {
    margin-top: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jobs-accordion-trigger,
  .jobs-filter__submit,
  .jobs-card,
  .jobs-detail-card__apply a,
  .jobs-back a {
    transition: none;
  }
}
