.col:not(.js-lpb-region):has([data-component-id="boral:card-long"]) {
  container-name: card-long;
  container-type: inline-size;
}
.card.card--long {
  --image-active: #00000080;
  --image-hover: #00000040;
  --card-breakpoint: 35rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  text-decoration: none;
  gap: 0.875rem;
}
.card.card--long:hover .image-wrapper::after {
      background: var(--image-hover);
    }
.card.card--long:active .image-wrapper::after {
      background: var(--image-active);
    }
@container card-long (width > 35rem) {
.card.card--long {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1rem
}
  }
.card.card--long .spacer {
    margin-inline: 0;
    border-top: 1px solid black;
    align-self: stretch;
  }
@container card-long (width > 35rem) {
.card.card--long .spacer {
      border-top: none;
      border-left: 1px solid black;
      margin-inline: 85px
  }
    }
.card.card--long .image-wrapper {
    position: relative;
    overflow: hidden;
  }
.card.card--long .image-wrapper::after {
      content: "";
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      left: 0;
      background: transparent;
      transition: background 300ms ease;
    }
.card.card--long .card--content {
    flex-direction: column;
    gap: 0.875rem;
  }
@container card-long (width > 35rem) {
.card.card--long .card--content {
      gap: 0
  }
    }
.card.card--long .card--body {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
  }
.card.card--long .card--tags span {
    color: var(--charcoal);
  }
.card.card--long .card--date {
    font-weight: 500;
    color: var(--link-color);
  }
@container card-long (width > 35rem) {
.card.card--long .card--date {
      margin-block: 8px 30px;
      font-size: 14px;
      font-weight: 400
  }
    }
.card.card--long .card--title > * {
    margin-block: 0;
  }
@container card-long (width > 35rem) {
.card.card--long .card--title > * {
      font-size: 48px;
      font-weight: 600;
      line-height: 54px
  }
    }
