.arbeit-portal {
  --ap-yellow: #ff6111;
  --ap-black: #050505;
  --ap-gray: #f0f1f4;
  --ap-muted: #555555;
  --ap-pink: #e83f78;
  --ap-white: #ffffff;
  --ap-line: #dedfe3;
  --ap-surface: var(--ap-gray);
  --ap-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ap-ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  color: var(--ap-black);
  font-family: inherit;
}

.arbeit-portal *,
.arbeit-portal *::before,
.arbeit-portal *::after {
  box-sizing: border-box;
}

.arbeit-portal__search {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "what what"
    "where radius"
    ". actions";
  gap: 16px;
  align-items: end;
  padding: 24px;
  background: var(--ap-surface);
  border: 2px solid var(--ap-white);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(5, 5, 5, 0.08);
  animation: arbeitPortalLiftIn 220ms var(--ap-ease-out) both;
}

.arbeit-portal__search.is-advanced-open {
  grid-template-areas:
    "what what"
    "where radius"
    "advanced advanced"
    ". actions";
}

.arbeit-portal__field {
  display: grid;
  gap: 6px;
}

.arbeit-portal__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.arbeit-portal__field label,
.arbeit-portal__checks legend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ap-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.arbeit-portal__label-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  color: currentColor;
}

.arbeit-portal__label-icon--search {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.arbeit-portal__label-icon--search::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.arbeit-portal__label-icon--pin {
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg) scale(0.9);
}

.arbeit-portal__label-icon--pin::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: currentColor;
}

.arbeit-portal__label-icon--target {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.arbeit-portal__label-icon--target::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.arbeit-portal__label-icon--briefcase {
  width: 14px;
  height: 11px;
  margin-top: 1px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.arbeit-portal__label-icon--briefcase::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 4px;
  width: 5px;
  height: 4px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}

.arbeit-portal__label-icon--calendar {
  border: 2px solid currentColor;
  border-radius: 3px;
}

.arbeit-portal__label-icon--calendar::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  border-top: 2px solid currentColor;
}

.arbeit-portal__label-icon--folder {
  width: 14px;
  height: 11px;
  margin-top: 1px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.arbeit-portal__label-icon--folder::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -2px;
  width: 8px;
  height: 5px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 2px 2px 0 0;
}

.arbeit-portal__label-icon--user::before,
.arbeit-portal__label-icon--user::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid currentColor;
}

.arbeit-portal__label-icon--user::before {
  top: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.arbeit-portal__label-icon--user::after {
  bottom: 0;
  width: 12px;
  height: 6px;
  border-radius: 8px 8px 2px 2px;
}

.arbeit-portal__label-icon--clock {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.arbeit-portal__label-icon--clock::before,
.arbeit-portal__label-icon--clock::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 2px;
  background: currentColor;
  border-radius: 999px;
}

.arbeit-portal__label-icon--clock::before {
  height: 4px;
}

.arbeit-portal__label-icon--clock::after {
  height: 5px;
  transform: rotate(90deg);
  transform-origin: bottom center;
}

.arbeit-portal__label-icon--globe {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.arbeit-portal__label-icon--globe::before,
.arbeit-portal__label-icon--globe::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid currentColor;
  border-left: 0;
  border-right: 0;
  border-radius: 50%;
}

.arbeit-portal__label-icon--globe::after {
  inset: 1px 4px;
  border: 0;
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.arbeit-portal__field input,
.arbeit-portal__field select {
  min-height: 58px;
  width: 100%;
  border: 2px solid transparent;
  border-radius: 18px;
  background: var(--ap-white);
  color: var(--ap-black);
  font: inherit;
  font-weight: 800;
  padding: 14px 16px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.arbeit-portal__input-control {
  position: relative;
}

.arbeit-portal__input-control input {
  padding-right: 50px;
}

.arbeit-portal__input-clear {
  position: absolute;
  top: 50%;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: var(--ap-gray);
  color: var(--ap-muted);
  cursor: pointer;
  font: inherit;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  transition: background-color 160ms ease, color 160ms ease, transform 140ms var(--ap-ease-out);
}

.arbeit-portal__input-clear:hover,
.arbeit-portal__input-clear:focus {
  background: var(--ap-yellow);
  color: var(--ap-black);
  transform: translateY(-50%) scale(1.04);
}

.arbeit-portal__input-clear:active {
  transform: translateY(-50%) scale(0.95);
}

.arbeit-portal__field input:focus,
.arbeit-portal__field select:focus {
  border-color: var(--ap-yellow);
  box-shadow: 0 0 0 4px rgba(255, 220, 61, 0.28);
}

.arbeit-portal__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.arbeit-portal__checks legend {
  width: 100%;
  margin-bottom: 2px;
}

.arbeit-portal__checks label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 48px;
  padding: 10px 14px;
  border: 2px solid transparent;
  border-radius: 16px;
  background: var(--ap-white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: background-color 160ms ease, border-color 160ms ease, transform 140ms var(--ap-ease-out);
}

.arbeit-portal__checks label:has(input:checked),
.arbeit-portal__checks label.is-checked {
  border-color: var(--ap-yellow);
  background: #fff7bd;
}

.arbeit-portal__checks input {
  accent-color: var(--ap-black);
}

.arbeit-portal__checks label:active {
  transform: scale(0.98);
}

.arbeit-portal__actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.arbeit-portal__advanced {
  grid-area: advanced;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "type published"
    "category profession"
    "working language"
    "quick quick";
  gap: 16px;
  align-items: end;
  padding-top: 4px;
  animation: arbeitPortalLiftIn 180ms var(--ap-ease-out) both;
}

.arbeit-portal__advanced[hidden] {
  display: none;
}

.arbeit-portal__quick-filters {
  grid-area: quick;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.arbeit-portal__quick-filters .arbeit-portal__button {
  min-height: 38px;
  font-size: 13px;
  padding: 8px 13px;
}

.arbeit-portal__field--what {
  grid-area: what;
}

.arbeit-portal__field--where {
  grid-area: where;
}

.arbeit-portal__field--radius {
  grid-area: radius;
}

.arbeit-portal__field--type {
  grid-area: type;
}

.arbeit-portal__field--published {
  grid-area: published;
}

.arbeit-portal__field--category {
  grid-area: category;
}

.arbeit-portal__field--profession {
  grid-area: profession;
}

.arbeit-portal__checks--working-time {
  grid-area: working;
}

.arbeit-portal__checks--language {
  grid-area: language;
}

.arbeit-portal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid var(--ap-black);
  border-radius: 999px;
  background: var(--ap-black);
  color: var(--ap-white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 12px 20px;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 140ms var(--ap-ease-out), box-shadow 180ms var(--ap-ease-out);
}

.arbeit-portal__button:hover,
.arbeit-portal__button:focus {
  background: #000000;
  color: var(--ap-white);
  box-shadow: 0 10px 24px rgba(5, 5, 5, 0.18);
  transform: translateY(-1px);
}

.arbeit-portal__button:active {
  transform: scale(0.97);
  box-shadow: none;
}

.arbeit-portal__button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.arbeit-portal__button--ghost {
  background: var(--ap-white);
  color: var(--ap-black);
}

.arbeit-portal__button--ghost:hover,
.arbeit-portal__button--ghost:focus {
  background: var(--ap-yellow);
  color: var(--ap-black);
}

.arbeit-portal__share-button {
  gap: 8px;
}

.arbeit-portal__share-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.arbeit-portal__button.is-disabled,
.arbeit-portal__button.is-disabled:hover,
.arbeit-portal__button.is-disabled:focus {
  pointer-events: none;
  opacity: 0.45;
  transform: none;
}

.arbeit-portal__status {
  scroll-margin-top: 24px;
  min-height: 24px;
  margin: 16px 0 10px;
  color: var(--ap-black);
  font-weight: 700;
}

.arbeit-portal__status[data-mode="error"] {
  color: #b42318;
}

.arbeit-portal__results {
  display: grid;
  gap: 14px;
}

.arbeit-portal__card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 20px;
  padding: 8px;
  border: 8px solid var(--ap-white);
  border-radius: 24px;
  background: var(--ap-white);
  box-shadow: 0 18px 45px rgba(5, 5, 5, 0.08);
  animation: arbeitPortalCardIn 220ms var(--ap-ease-out) both;
  transition: transform 180ms var(--ap-ease-out), box-shadow 180ms var(--ap-ease-out);
}

.arbeit-portal__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(5, 5, 5, 0.11);
}

.arbeit-portal__card-media {
  display: grid;
  place-items: center;
  min-height: 148px;
  border-radius: 18px;
  background: linear-gradient(145deg, #f7f7f8 0%, #e8ebf0 100%);
}

.arbeit-portal__card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 14px 14px 14px 0;
}

.arbeit-portal__logo,
.arbeit-portal__detail-logo {
  display: grid;
  place-items: center;
  position: relative;
  max-width: 108px;
  width: 108px;
  max-height: 78px;
  height: 78px;
  object-fit: contain;
}

.arbeit-portal__logo-initials {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ap-yellow);
  color: var(--ap-black);
  font-size: 18px;
  font-weight: 900;
}

.arbeit-portal__logo-image,
.arbeit-portal__favicon-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 180ms var(--ap-ease-out);
}

.arbeit-portal__favicon-image {
  inset: auto;
  width: 54px;
  height: 54px;
  opacity: 0;
}

.arbeit-portal__favicon-image[hidden] {
  display: none;
}

.arbeit-portal__logo-image.is-loaded,
.arbeit-portal__favicon-image.is-loaded {
  opacity: 1;
}

.arbeit-portal__logo-frame.has-logo-loaded .arbeit-portal__logo-initials,
.arbeit-portal__logo-frame.has-logo-loaded .arbeit-portal__favicon-image,
.arbeit-portal__logo-frame.has-favicon-loaded .arbeit-portal__logo-initials {
  opacity: 0;
}

.arbeit-portal__card-body h3,
.arbeit-portal__detail-head h2 {
  margin: 2px 0 8px;
  color: var(--ap-black);
  font-size: 24px;
  line-height: 1.15;
}

.arbeit-portal__card-title-link {
  color: inherit;
  text-decoration: none;
}

.arbeit-portal__card-title-link:hover,
.arbeit-portal__card-title-link:focus {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.arbeit-portal__eyebrow {
  margin: 0;
  color: var(--ap-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.arbeit-portal__meta,
.arbeit-portal__badges,
.arbeit-portal__card-actions,
.arbeit-portal__detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.arbeit-portal__meta {
  color: var(--ap-muted);
  font-size: 14px;
  margin-top: 10px;
}

.arbeit-portal__badges {
  margin-top: 12px;
}

.arbeit-portal__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: var(--ap-gray);
  color: var(--ap-black);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 9px;
  transition: background-color 160ms ease, transform 140ms var(--ap-ease-out);
}

.arbeit-portal__badge--meta {
  color: var(--ap-muted);
  font-size: 12px;
  font-weight: 800;
}

.arbeit-portal__card-actions {
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 14px;
}

.arbeit-portal__card-actions .arbeit-portal__button {
  min-height: 36px;
  border-radius: 999px;
  font-size: 13px;
  padding: 7px 13px;
}

.arbeit-portal__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.arbeit-portal__pager .arbeit-portal__button {
  min-height: 34px;
  border-radius: 999px;
  font-size: 13px;
  padding: 7px 12px;
}

.arbeit-portal__modal[hidden],
.arbeit-portal__pager[hidden] {
  display: none;
}

.arbeit-portal__modal {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(17, 17, 17, 0.58);
  animation: arbeitPortalFadeIn 180ms var(--ap-ease-out) both;
}

.arbeit-portal__modal-panel {
  position: relative;
  width: min(860px, 100%);
  max-height: min(780px, 90vh);
  overflow: auto;
  border-radius: 24px;
  background: var(--ap-white);
  padding: 28px;
  animation: arbeitPortalModalIn 220ms var(--ap-ease-out) both;
}

.arbeit-portal__inline-detail {
  margin-top: 18px;
  border: 1px solid var(--ap-line);
  border-radius: 24px;
  background: var(--ap-white);
  padding: 22px;
  animation: arbeitPortalLiftIn 220ms var(--ap-ease-out) both;
}

.arbeit-portal__single-detail {
  display: grid;
  gap: 14px;
  min-width: 0;
  max-width: 100%;
}

.arbeit-portal__detail {
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

.arbeit-portal__back-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--ap-line);
  border-radius: 999px;
  background: var(--ap-white);
  color: var(--ap-black);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 11px;
  text-decoration: none;
  transition: background-color 160ms ease, transform 140ms var(--ap-ease-out);
}

.arbeit-portal__back-link:hover,
.arbeit-portal__back-link:focus {
  background: var(--ap-yellow);
  color: var(--ap-black);
  transform: translateY(-1px);
}

.arbeit-portal__back-link:active {
  transform: scale(0.97);
}

.arbeit-portal__modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ap-line);
  border-radius: 50%;
  background: var(--ap-white);
  color: var(--ap-black);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: background-color 160ms ease, transform 140ms var(--ap-ease-out);
}

.arbeit-portal__modal-close:hover,
.arbeit-portal__modal-close:focus {
  background: var(--ap-yellow);
}

.arbeit-portal__modal-close:active {
  transform: scale(0.94);
}

.arbeit-portal__detail-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.arbeit-portal__detail-title {
  min-width: 0;
  max-width: 100%;
}

.arbeit-portal__detail-title h2 {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.arbeit-portal__detail-section {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--ap-line);
  animation: arbeitPortalLiftIn 220ms var(--ap-ease-out) both;
}

.arbeit-portal__detail-section h3 {
  margin: 0 0 12px;
  color: var(--ap-black);
  font-size: 17px;
  line-height: 1.25;
}

.arbeit-portal__detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 10px;
  margin: 0;
  max-width: 100%;
}

.arbeit-portal__detail-grid div {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--ap-line);
  border-radius: 16px;
  background: var(--ap-surface);
  padding: 14px 16px;
}

.arbeit-portal__detail-grid dt {
  color: var(--ap-muted);
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.arbeit-portal__detail-grid dd {
  margin: 2px 0 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.arbeit-portal__locations {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.arbeit-portal__locations li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.arbeit-portal__description {
  margin-top: 0;
  line-height: 1.65;
}

.arbeit-portal__description h4,
.arbeit-portal__contact-box h4 {
  margin: 0;
  color: var(--ap-black);
  font-size: 16px;
  font-weight: 900;
}

.arbeit-portal__description h4 {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--ap-yellow);
  padding: 5px 10px;
}

.arbeit-portal__description p,
.arbeit-portal__contact-box p {
  margin: 0 0 14px;
  white-space: pre-line;
}

.arbeit-portal__description-list {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 22px;
}

.arbeit-portal__description-list li {
  margin: 0;
  overflow-wrap: anywhere;
}

.arbeit-portal__contact-box {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  border: 2px solid var(--ap-yellow);
  border-radius: 18px;
  background: #fffbea;
  padding: 16px;
}

.arbeit-portal__contact-box a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.arbeit-portal__contact-box a,
.arbeit-portal__description a,
.arbeit-portal__description strong {
  color: var(--ap-black);
  font-weight: 800;
}

.arbeit-portal__contact-box a,
.arbeit-portal__description a {
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.arbeit-portal__detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

.arbeit-portal__error {
  color: #b42318;
  font-weight: 700;
}

.arbeit-portal__debug {
  margin-top: 12px;
  border: 1px dashed var(--ap-line);
  border-radius: 6px;
  background: #fffbea;
  color: var(--ap-muted);
  font-size: 13px;
  padding: 10px 12px;
}

@keyframes arbeitPortalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes arbeitPortalLiftIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes arbeitPortalCardIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes arbeitPortalModalIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .arbeit-portal *,
  .arbeit-portal *::before,
  .arbeit-portal *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 880px) {
  .arbeit-portal__search {
    grid-template-columns: 1fr;
    grid-template-areas:
      "what"
      "where"
      "radius"
      "actions";
  }

  .arbeit-portal__search.is-advanced-open {
    grid-template-areas:
      "what"
      "where"
      "radius"
      "advanced"
      "actions";
  }

  .arbeit-portal__advanced {
    grid-template-columns: 1fr;
    grid-template-areas:
      "type"
      "published"
      "category"
      "profession"
      "working"
      "language"
      "quick";
  }

  .arbeit-portal__quick-filters,
  .arbeit-portal__actions {
    justify-content: stretch;
  }

  .arbeit-portal__quick-filters .arbeit-portal__button {
    width: 100%;
  }

  .arbeit-portal__actions {
    justify-content: flex-end;
  }

  .arbeit-portal__actions .arbeit-portal__button {
    width: auto;
  }
}

@media (max-width: 620px) {
  .arbeit-portal__search,
  .arbeit-portal__card,
  .arbeit-portal__detail-grid {
    grid-template-columns: 1fr;
  }

  .arbeit-portal__detail-head {
    grid-template-columns: 1fr;
  }

  .arbeit-portal__field--wide,
  .arbeit-portal__checks,
  .arbeit-portal__actions {
    grid-column: auto;
  }

  .arbeit-portal__card-media {
    min-height: 82px;
  }

  .arbeit-portal__card-body h3,
  .arbeit-portal__detail-head h2 {
    font-size: 21px;
  }

  .arbeit-portal__pager {
    flex-wrap: wrap;
  }
}
