@charset "UTF-8";
.employers-grid {
  display: flex;
  gap: 19px;
}
.employers-grid__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.employers-grid__card {
  border-radius: 5px;
  overflow: hidden;
  background: var(--wp--preset--color--white);
}
.employers-grid__logo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--wp--preset--color--dark-blue);
  padding: 28px 30px;
  min-height: 109px;
  border-radius: 5px 5px 0 0;
}
.employers-grid__logo-bar img {
  max-width: 250px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.employers-grid__name {
  font-family: var(--wp--preset--font-family--apotek-comp);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--wp--preset--color--white);
}
.employers-grid__flags {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 7px;
  margin-left: auto;
  flex-shrink: 0;
}
.employers-grid__flag {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 16px;
  border-radius: 50px;
  font-family: var(--wp--preset--font-family--apotek-comp);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  white-space: nowrap;
}
.employers-grid__flag--hiring {
  background: var(--wp--preset--color--accessible-red);
  color: var(--wp--preset--color--light-grey);
}
.employers-grid__flag--entry {
  background: #0ce600;
  color: var(--wp--preset--color--dark-blue);
}
.employers-grid__panel {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
.employers-grid__card.is-open .employers-grid__panel {
  overflow: visible;
}
.employers-grid__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  width: 100%;
  background: var(--wp--preset--color--light-grey);
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 0 0 5px 5px;
  transition: opacity 0.2s ease;
}
.employers-grid__toggle:hover {
  opacity: 0.7;
}
.employers-grid__toggle:focus-visible {
  outline: 2px solid var(--wp--preset--color--teal);
  outline-offset: -2px;
}
.employers-grid__card.is-open .employers-grid__toggle {
  background: transparent;
}
.employers-grid__toggle-text {
  font-family: var(--wp--preset--font-family--gimlet-text);
  font-weight: 400;
  font-size: 12px;
  color: var(--wp--preset--color--dark-blue);
  line-height: 1.51;
}
.employers-grid__card.is-open .employers-grid__toggle-text {
  color: var(--wp--preset--color--teal);
}
.employers-grid__chevron {
  width: 16px;
  height: 8px;
  color: var(--wp--preset--color--dark-blue);
  transition: transform 0.35s ease, color 0.35s ease;
}
.employers-grid__chevron--up {
  transform: rotate(180deg);
  color: var(--wp--preset--color--teal);
}
.employers-grid__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 28px 30px;
}
.employers-grid__description {
  font-family: var(--wp--preset--font-family--gimlet-text);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.51;
  color: var(--wp--preset--color--dark-blue);
}
.employers-grid__description p {
  margin-top: 0;
}
.employers-grid__description p:last-child {
  margin-bottom: 0;
}
.employers-grid__sidebar {
  font-family: var(--wp--preset--font-family--gimlet-text);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.51;
  color: var(--wp--preset--color--dark-blue);
}
.employers-grid__sidebar-label {
  font-family: var(--wp--preset--font-family--apotek-comp);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.68px;
  color: var(--wp--preset--color--teal);
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--wp--preset--color--light-blue);
}
.employers-grid__sidebar-content h6 {
  font-family: var(--wp--preset--font-family--apotek-comp);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.68px;
  color: var(--wp--preset--color--teal);
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--wp--preset--color--light-blue);
}
.employers-grid__sidebar-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.employers-grid__sidebar-content ul li {
  padding-left: 12px;
  position: relative;
}
.employers-grid__sidebar-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
}
.employers-grid__sidebar-content ul li + li {
  margin-top: 2px;
}
.employers-grid__sidebar-content p:last-child {
  margin-bottom: 0;
}
.employers-grid__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
  padding: 0 30px 16px;
}
.employers-grid__action-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--wp--preset--color--light-blue);
  border-radius: 2px;
  padding: 6px 15px;
  min-height: 32px;
  font-family: var(--wp--preset--font-family--apotek-comp);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.92px;
  color: var(--wp--preset--color--dark-blue);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.employers-grid__action-link--jobs {
  gap: 40px;
}
.employers-grid__action-link:hover, .employers-grid__action-link:focus {
  text-decoration: none;
  opacity: 0.85;
}
.employers-grid__action-link svg {
  width: 65px;
  height: 15px;
  flex-shrink: 0;
  color: inherit;
}
.employers-grid--empty {
  padding: 40px;
  text-align: center;
  color: var(--wp--preset--color--inactive-grey);
}
@media (max-width: 985px) {
  .employers-grid__logo-bar {
    flex-wrap: wrap;
    gap: 12px;
  }
  .employers-grid__body {
    grid-template-columns: 1fr;
  }
  .employers-grid__actions {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 781px) {
  .employers-grid {
    flex-direction: column;
  }
  .employers-grid__logo-bar {
    padding: 20px;
  }
  .employers-grid__logo-bar img {
    max-width: 180px;
  }
  .employers-grid__description {
    font-size: 18px;
  }
}

/*# sourceMappingURL=block-style.css.map */
