.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;
}

.cta-block {
    background-color: #1a1a1a;
    color: #fff;
}

.cta-block__title {
    color: #fff;
}

.cta-block__subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.blog-sidebar {
    max-width: 720px;
}

@media (min-width: 992px) {
    .blog-sidebar {
        position: sticky;
        top: 6rem;
    }
}

.blog-sidebar__section h3 {
    letter-spacing: .05em;
}

.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;
}

.process-flow {
    margin: 2rem 0;
}

.process-flow__title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
}

.process-flow__note {
    margin-top: 1.25rem;
    color: var(--bs-secondary-color);
    font-size: 0.9rem;
}

.process-flow__steps {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
}

.process-flow__step {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 160px;
    min-width: 160px;
    margin: 0 2.5rem 1.75rem 0;
    padding: 0.85rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(26, 26, 26, 0.15);
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
}

.process-flow__step:last-child {
    margin-right: 0;
}

.process-flow__step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 1.5rem;
    height: 2px;
    background-color: #fecc00;
    transform: translateY(-50%);
}

.process-flow__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 0.55rem;
    height: 0.55rem;
    border-bottom: 2px solid #fecc00;
    border-right: 2px solid #fecc00;
    transform: translateY(-50%) translateX(0.9rem) rotate(-45deg);
}

@media (max-width: 575.98px) {
    .process-flow__steps {
        flex-direction: column;
    }

    .process-flow__step {
        flex-basis: 100%;
        margin: 0 0 2.5rem 0;
    }

    .process-flow__step:last-child {
        margin-bottom: 0;
    }

    .process-flow__step:not(:last-child)::before {
        top: 100%;
        left: 50%;
        width: 2px;
        height: 1.5rem;
        transform: translateX(-50%);
    }

    .process-flow__step:not(:last-child)::after {
        top: 100%;
        left: 50%;
        width: 0.55rem;
        height: 0.55rem;
        transform: translateX(-50%) translateY(0.9rem) rotate(45deg);
    }
}

/* 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);
}