/*
 Details (Accordion)
========================================================================== */
:root .wp-block-details {
  overflow: unset !important;
}
:root .wp-block-details summary {
  padding: 24px var(--wp--style--block-gap) 24px 32px;
  font-size: clamp(1.125rem, 15.6px + 0.5vw, 1.375rem);
  line-height: 1.3;
  font-weight: 500;
  color: var(--wp--custom--color--heading);
  position: relative;
  list-style: none;
}
:root .wp-block-details summary::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid currentColor;
  opacity: 0.15;
  border-radius: 6px;
  pointer-events: none;
}
.has-text-color :root .wp-block-details summary::before {
  opacity: 0.45;
}
:root .wp-block-details summary::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 16px;
  width: 14px;
  height: 16px;
  background: #acacac;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 448 512'%3E%3Cpath d='M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z'/%3E%3C/svg%3E");
  transition: all 0.2s ease;
  pointer-events: none;
}
:root .wp-block-details summary:focus-visible {
  outline: 2px solid rgb(216.9820481928, 254.0251807229, 13.2448192771);
}
:root .wp-block-details summary + * {
  margin-top: 0 !important;
}
:root .wp-block-details + .wp-block-details {
  margin-top: 8px;
}
:root .wp-block-details[open] {
  padding-bottom: clamp(32px, 22.4px + 0.02 * 100vw, 48px);
}
:root .wp-block-details[open] summary {
  margin-bottom: 24px;
}
:root .wp-block-details[open] summary::after {
  transform: rotate(135deg);
}
:root .wp-block-details:not([open]) summary ~ * {
  animation: none;
}
:root .wp-block-details[open] summary ~ * {
  animation: sweep 0.25s ease-in-out;
  animation-direction: normal;
}
@keyframes sweep {
  0% {
    opacity: 0;
    transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.has-text-color summary {
  color: currentcolor !important;
}

/*
 Accordion
========================================================================== */
.wp-block-meta-job-listing .status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 4px 4px;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 0.6;
  border-radius: var(--wp--custom--border--radius);
  text-transform: uppercase;
  top: -2px;
  margin-left: 6px;
  position: relative;
}
.wp-block-meta-job-listing .status i {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  margin-top: -1px;
}
.wp-block-meta-job-listing .status.is-open {
  background: rgba(74, 242, 161, 0.2);
}
.wp-block-meta-job-listing .status.is-open i {
  background: #4af2a1;
}
.wp-block-meta-job-listing .status.is-closed {
  background: rgba(242, 74, 92, 0.2);
}
.wp-block-meta-job-listing .status.is-closed i {
  background: #f24a5c;
}
.wp-block-meta-job-listing .job-specs {
  margin: 0 0 24px 0;
  padding: 12px 24px;
  list-style: none;
  background: #f7f7f7;
  border-radius: 10px;
}
.wp-block-meta-job-listing .job-specs li {
  line-height: 1.2;
  padding: 12px 0;
}
.wp-block-meta-job-listing .job-specs li:not(:last-child) {
  border-bottom: 1px solid rgba(172, 172, 172, 0.3);
}
.wp-block-meta-job-listing .job-specs strong {
  font-weight: 600;
  color: var(--wp--custom--color--heading);
}
