.guide-conclusion {
    border-bottom: 0;
}

.guide-conclusion > div {
    display: flex;
    padding: 17px 20px;
    color: #20496c;
    border-radius: 9px;
    background: var(--guide-blue-pale);
    align-items: center;
    gap: 12px;
    font-size: .78rem;
}

.guide-conclusion > div svg {
    width: 22px;
    height: 22px;
    color: var(--blue);
    flex: 0 0 auto;
}

.guide-related {
    padding-top: 34px;
    padding-bottom: 44px;
}

.guide-related .split-heading {
    margin-bottom: 24px;
}

.guide-related .split-heading h2 {
    margin: 0;
    font-size: clamp(1.65rem, 2.5vw, 2.2rem);
}

.guide-related .split-heading .guide-eyebrow {
    margin-bottom: 5px;
}

.guide-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.guide-related-card {
    overflow: hidden;
    border: 1px solid var(--guide-line);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 9px 30px rgba(31, 72, 101, .07);
    transition: transform .23s ease, box-shadow .23s ease, border-color .23s ease;
}

.guide-related-card:hover {
    border-color: #b7d9e2;
    box-shadow: 0 16px 38px rgba(31, 72, 101, .12);
    transform: translateY(-4px);
}

.guide-related-card > img {
    width: 100%;
    aspect-ratio: 16 / 8.5;
    object-fit: cover;
}

.guide-related-body {
    position: relative;
    display: grid;
    min-height: 112px;
    padding: 17px 46px 17px 18px;
    align-content: start;
}

.guide-related-body strong {
    font-size: .76rem;
    line-height: 1.38;
}

.guide-related-body small {
    margin-top: 9px;
    color: #72869a;
    font-size: .61rem;
}

.guide-related-body > svg {
    position: absolute;
    right: 17px;
    bottom: 18px;
    width: 17px;
    height: 17px;
    color: var(--blue);
}

.guide-final-cta {
    padding: 0 0 58px;
}

.guide-final-cta > .container {
    display: flex;
    min-height: 150px;
    padding: 28px clamp(26px, 4vw, 48px);
    border: 1px solid #d9e8ed;
    border-radius: 15px;
    background: #f4fbfb;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.guide-final-cta p {
    margin: 0;
    color: var(--guide-ink);
    font-size: 1.2rem;
    font-weight: 760;
}

.guide-final-cta h2 {
    margin: 0 0 8px;
    color: var(--guide-teal);
    font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}

.guide-final-cta span {
    display: block;
    max-width: 560px;
    color: var(--guide-muted);
    font-size: .72rem;
}

.guide-final-cta small {
    display: block;
    margin-top: 10px;
    color: #4d6f86;
    font-size: .62rem;
    font-weight: 700;
}

.guide-final-cta .button-row {
    flex: 0 0 auto;
}

.guide-page :focus-visible {
    outline: 3px solid rgba(47, 120, 220, .28);
    outline-offset: 3px;
}

