.brr {
  --brr-navy: #18233b;
  --brr-body: #303f59;
  --brr-orange: #ff7001;
  --brr-orange-hover: #ff9002;
  --brr-light-grey: #f7f9fc;
  --brr-white: #ffffff;
  --brr-border: #dfe5ee;
  --brr-transition: 150ms ease;

  color: var(--brr-body);
  font-family: "Open Sans", Arial, sans-serif;
  text-align: left;
}

.brr,
.brr * {
  box-sizing: border-box;
}

.brr__inner {
  width: min(1100px, calc(100% - 48px));
  margin-inline: auto;
  padding-block: 64px;
}

.brr__header {
  width: 100%;
  max-width: none;
  margin: 0 0 32px;
}

.brr__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: var(--brr-navy);
  font-family: inherit;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.brr__eyebrow::before {
  content: "";
  display: block;
  width: 16px;
  height: 3px;
  flex: 0 0 16px;
  border-radius: 999px;
  background: var(--brr-orange-hover);
}

.brr__heading {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--brr-navy);
  font-family: inherit;
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
}

.brr__intro {
  width: 100%;
  max-width: none;
  margin-top: 16px;
  color: var(--brr-body);
  font-family: inherit;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}

.brr__header > .brr__intro:first-child {
  margin-top: 0;
}

.brr__eyebrow + .brr__intro {
  margin-top: 8px;
}

.brr__intro > :first-child,
.brr-resource__description > :first-child {
  margin-top: 0;
}

.brr__intro > :last-child,
.brr-resource__description > :last-child {
  margin-bottom: 0;
}

.brr__intro p,
.brr__intro ul,
.brr__intro ol {
  margin-top: 0;
  margin-bottom: 16px;
}

.brr__intro ul,
.brr__intro ol {
  padding-left: 24px;
}

.brr__resources,
.brr-group__resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
  align-items: stretch;
}

.brr-resource {
  --brr-type-accent: var(--brr-navy);
  --brr-type-badge-bg: var(--brr-light-grey);
  --brr-type-badge-color: var(--brr-navy);
  --brr-type-badge-border: var(--brr-border);

  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  row-gap: 0;
  min-width: 0;
  height: 100%;
  padding: 24px;
  overflow: hidden;
  background: var(--brr-white);
  border: 1px solid var(--brr-border);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(24, 35, 59, 0.08);
}

.brr-resource::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--brr-type-accent);
}

.brr-resource--type-guide {
  --brr-type-accent: var(--brr-navy);
  --brr-type-badge-bg: var(--brr-navy);
  --brr-type-badge-color: var(--brr-white);
  --brr-type-badge-border: var(--brr-navy);
}

.brr-resource--type-blog {
  --brr-type-accent: var(--brr-body);
  --brr-type-badge-bg: var(--brr-light-grey);
  --brr-type-badge-color: var(--brr-navy);
  --brr-type-badge-border: var(--brr-border);
}

.brr-resource--type-template {
  --brr-type-accent: var(--brr-orange);
  --brr-type-badge-bg: var(--brr-white);
  --brr-type-badge-color: var(--brr-navy);
  --brr-type-badge-border: var(--brr-orange);
}

.brr-resource--type-calculator {
  --brr-type-accent: var(--brr-orange-hover);
  --brr-type-badge-bg: var(--brr-orange-hover);
  --brr-type-badge-color: var(--brr-navy);
  --brr-type-badge-border: var(--brr-orange-hover);
}

.brr-resource--type-product_page {
  --brr-type-accent: var(--brr-orange);
  --brr-type-badge-bg: var(--brr-orange);
  --brr-type-badge-color: var(--brr-navy);
  --brr-type-badge-border: var(--brr-orange);
}

.brr-resource--type-role_page {
  --brr-type-accent: var(--brr-body);
  --brr-type-badge-bg: var(--brr-body);
  --brr-type-badge-color: var(--brr-white);
  --brr-type-badge-border: var(--brr-body);
}

.brr-resource--type-pricing_demo {
  --brr-type-accent: var(--brr-orange);
  --brr-type-badge-bg: var(--brr-navy);
  --brr-type-badge-color: var(--brr-white);
  --brr-type-badge-border: var(--brr-orange);
}

.brr-resource__meta {
  grid-row: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
}

.brr-resource__type,
.brr-resource__featured-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.brr-resource__type {
  color: var(--brr-type-badge-color);
  background: var(--brr-type-badge-bg);
  border-color: var(--brr-type-badge-border);
}

.brr-resource__featured-badge {
  color: var(--brr-navy);
  background: var(--brr-light-grey);
  border-color: var(--brr-orange);
}

.brr-resource__title {
  grid-row: 2;
  min-width: 0;
  margin: 0;
  color: var(--brr-navy);
  font-family: inherit;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.brr-resource__title a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--brr-navy);
  font: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: none;
  text-decoration-line: underline;
  text-decoration-color: var(--brr-orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition:
    color var(--brr-transition),
    text-decoration-color var(--brr-transition);
}

.brr-resource__title a:hover,
.brr-resource__title a:focus-visible,
.brr-resource__title a:active {
  color: var(--brr-navy);
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: none;
  text-decoration-color: var(--brr-orange-hover);
}

.brr-resource__description {
  grid-row: 3;
  min-width: 0;
  margin-top: 8px;
  color: var(--brr-body);
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.brr-resource__description p,
.brr-resource__description ul,
.brr-resource__description ol {
  margin-top: 0;
  margin-bottom: 16px;
}

.brr-resource__description ul,
.brr-resource__description ol {
  padding-left: 24px;
}

.brr-resource__description li + li {
  margin-top: 8px;
}

.brr-resource__cta {
  grid-row: 4;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 44px;
  padding-top: 24px;
  color: var(--brr-navy);
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  text-decoration: none;
  transition:
    color var(--brr-transition),
    text-decoration-color var(--brr-transition);
}

.brr-resource__cta:hover,
.brr-resource__cta:focus-visible,
.brr-resource__cta:active {
  color: var(--brr-navy);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  text-decoration: none;
}

.brr-resource__cta-text {
  color: inherit;
  font: inherit;
  font-weight: inherit;
  text-decoration-line: underline;
  text-decoration-color: var(--brr-orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transform: none;
  transition: text-decoration-color var(--brr-transition);
}

.brr-resource__cta:hover .brr-resource__cta-text,
.brr-resource__cta:focus-visible .brr-resource__cta-text,
.brr-resource__cta:active .brr-resource__cta-text {
  color: inherit;
  font: inherit;
  font-weight: inherit;
  text-decoration-color: var(--brr-orange-hover);
  transform: none;
}

.brr-resource__cta-arrow {
  display: inline-block;
  flex: 0 0 auto;
  color: var(--brr-orange);
  font: inherit;
  font-weight: inherit;
  text-decoration: none;
  transform: translateX(0);
  transition: transform var(--brr-transition);
}

.brr-resource__cta:hover .brr-resource__cta-arrow,
.brr-resource__cta:focus-visible .brr-resource__cta-arrow {
  transform: translateX(3px);
}

.brr-resource__title a:focus-visible,
.brr-resource__cta:focus-visible,
.brr__show-more:focus-visible {
  outline: 3px solid rgba(255, 112, 1, 0.25);
  outline-offset: 2px;
  border-radius: 8px;
}

.brr--compact-list .brr__resources {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brr--compact-list .brr-resource {
  grid-row: auto;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto;
  column-gap: 24px;
  row-gap: 0;
  align-items: start;
}

.brr--compact-list .brr-resource::before {
  top: 16px;
  right: auto;
  bottom: 16px;
  left: 0;
  width: 3px;
  height: auto;
  border-radius: 0 999px 999px 0;
}

.brr--compact-list .brr-resource__meta,
.brr--compact-list .brr-resource__title,
.brr--compact-list .brr-resource__description {
  grid-column: 1;
}

.brr--compact-list .brr-resource__meta {
  grid-row: 1;
  margin-bottom: 8px;
}

.brr--compact-list .brr-resource__title {
  grid-row: 2;
}

.brr--compact-list .brr-resource__description {
  grid-row: 3;
}

.brr--compact-list .brr-resource__cta {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  padding-top: 0;
  white-space: nowrap;
}

.brr__groups {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.brr-group[hidden] {
  display: none;
}

.brr-group__heading {
  margin: 0 0 16px;
  color: var(--brr-navy);
  font-family: inherit;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.brr__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.brr__more-wrap[hidden] {
  display: none;
}

.brr__show-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  color: var(--brr-navy);
  background: var(--brr-white);
  border: 1px solid var(--brr-navy);
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    color var(--brr-transition),
    background-color var(--brr-transition),
    border-color var(--brr-transition);
}

.brr__show-more:hover {
  color: var(--brr-navy);
  background: var(--brr-light-grey);
  border-color: var(--brr-navy);
  font-weight: 700;
  text-decoration: none;
}

.brr__show-more[hidden] {
  display: none;
}

@supports not (grid-template-rows: subgrid) {
  .brr:not(.brr--compact-list) .brr-resource {
    display: flex;
    flex-direction: column;
  }

  .brr:not(.brr--compact-list) .brr-resource__title {
    min-height: 56px;
  }

  .brr:not(.brr--compact-list) .brr-resource__cta {
    margin-top: auto;
  }
}

.brr .brr-resource.brr-is-hidden {
  display: none;
}

@media (max-width: 1023px) {
  .brr__inner {
    padding-block: 48px;
  }
}

@media (max-width: 767px) {
  .brr__inner {
    width: calc(100% - 32px);
    padding-block: 40px;
  }

  .brr__heading {
    font-size: 30px;
    line-height: 38px;
  }

  .brr__resources,
  .brr-group__resources {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .brr-resource {
    grid-row: auto;
    grid-template-rows: auto;
  }

  .brr--compact-list .brr-resource {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    column-gap: 0;
  }

  .brr--compact-list .brr-resource::before {
    top: 0;
    right: 16px;
    bottom: auto;
    left: 16px;
    width: auto;
    height: 3px;
    border-radius: 0 0 999px 999px;
  }

  .brr--compact-list .brr-resource__cta {
    grid-column: 1;
    grid-row: 4;
    align-self: start;
    padding-top: 24px;
    white-space: normal;
  }

  @supports not (grid-template-rows: subgrid) {
    .brr:not(.brr--compact-list) .brr-resource__title {
      min-height: 0;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .brr *,
  .brr *::before,
  .brr *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .brr-resource__cta:hover .brr-resource__cta-arrow,
  .brr-resource__cta:focus-visible .brr-resource__cta-arrow {
    transform: none;
  }
}
