/* stylelint-disable */
.wp-component-content > :first-child {
  margin-top: 0 !important;
}

.wp-component-content > :last-child {
  margin-bottom: 0 !important;
}

.wp-component-content.wp-component-content--centered {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--content-centered-max-width, 800px);
  text-align: center;
}

.wp-component-content.wp-component-content--centered .wp-component-content__meta,
.wp-component-content.wp-component-content--centered .wp-component-content__eyebrow,
.wp-component-content.wp-component-content--centered .wp-component-content__buttons {
  justify-content: center;
}

.wp-component-content__inner > :first-child {
  margin-top: 0 !important;
}

.wp-component-content__inner > :last-child {
  margin-bottom: 0 !important;
}

.wp-component-content__eyebrow {
  align-items: center;
  color: var(--tag-colour, var(--colour-dark-blue-35));
  display: flex;
  font-weight: 700;
  gap: var(--spacing-xxxs);
  text-decoration: none;
  margin: 0 0 var(--spacing-xxs);
}

.wp-component-content__eyebrow::before {
  background-color: var(--colour-orange-100);
  border-radius: 50%;
  content: "";
  flex: 0 0 8px;
  height: 8px;
  width: 8px;
}

.wp-component-content__title {
  color: var(--colour-dark-blue-35);
  margin: 0 0 var(--spacing-xs);
}

.wp-component-content__content {
  margin: 0 0 var(--spacing-s);
}

.wp-component-content__icons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.wp-component-content__icon {
  align-items: center;
  display: flex;
  gap: var(--spacing-xs);
}

.wp-component-content__icon-image {
  align-items: center;
  background-color: var(--colour-light-blue-75);
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  height: 60px;
  justify-content: center;
  width: 60px;
}

.wp-component-content__icon-label {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p-large);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-p-large);
  line-height: var(--line-height-p-large);
  text-transform: none;
  color: var(--colour-dark-blue-35);
}

.wp-component-content__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-s);
}

.wp-component-content__meta {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p-xsmall);
  font-weight: 400;
  letter-spacing: var(--letter-spacing-p-xsmall);
  line-height: var(--line-height-p-xsmall);
  text-transform: none;
  align-items: center;
  display: flex;
  gap: var(--spacing-xxs);
  margin-bottom: var(--spacing-m);
}

@media (max-width: 766.98px) {
  .wp-component-content__meta {
    flex-wrap: wrap;
    row-gap: var(--spacing-xxxs);
  }
}
.wp-component-content__type {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.wp-component-content__separator {
  background-color: currentcolor;
  height: 20px;
  width: 1px;
}

@media (max-width: 766.98px) {
  .wp-component-content__separator {
    flex: 1 0 100%;
    height: 0;
  }
}
.wp-component-content--dark {
  color: var(--colour-white);
}

.wp-component-content--dark .wp-component-content__eyebrow {
  --tag-colour: var(--colour-white);
}

.wp-component-content--dark .wp-component-content__icon-label,
.wp-component-content--dark .wp-component-content__title {
  color: var(--colour-white);
}
