.bg-secondary {
    background-color: rgba(254, 204, 0, .1) !important;
}

.card-hover-primary:hover i {
    transition: all 0.25s ease-in-out;
    color: white !important;
}

.rich-text a:not(.btn):not(.nav-link),
.blog-article__content a:not(.btn):not(.nav-link) {
    color: inherit;
    text-decoration: none;
    border-bottom: 3px solid #fecc00;
}

.rich-text a:not(.btn):not(.nav-link):hover,
.blog-article__content a:not(.btn):not(.nav-link):hover {
    background-color: rgba(254, 204, 0, .11);
}

.blog-article__content h3 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
}

.blog-article__content h2 {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
}

.dc-h1 {
  font-family: var(--dc-serif);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--dc-text);
  margin-bottom: 1.5rem;
}

em {
  font-style: italic;
  /* Uses the brand accent colour; if the site has --color-primary, use it */
  color: #fecc00;
}

.page-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bs-secondary-color);
    margin-bottom: 0.5rem;
}

/* Footer copyright — #576071 has 6.1:1 contrast on white, meeting WCAG AA */
.footer-copyright {
    color: #576071;
}

/* Cookie preferences FAB */
.cc-fab {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 1040;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background-color: #121519;
    color: #fecc00;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(18, 21, 25, 0.25);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    padding: 0;
}

.cc-fab:hover {
    background-color: #434a57;
    box-shadow: 0 6px 20px rgba(18, 21, 25, 0.35);
    transform: translateY(-2px);
}

.cc-fab:active {
    transform: translateY(0);
}