/* Call-to-action block. */
.cta-panel { padding: 88px 0; background: var(--fa-color-background); }
.cta-panel__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr); gap: 36px; padding: 64px; overflow: hidden; color: var(--fa-color-background); background: var(--fa-color-primary); border-radius: 28px; box-shadow: 0 28px 70px rgba(0, 71, 126, .22); }
.cta-panel__inner::after { position: absolute; right: -130px; bottom: -180px; width: 420px; height: 420px; content: ""; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255, 255, 255, .035), 0 0 0 100px rgba(255, 255, 255, .025); }
.cta-panel__content { position: relative; z-index: 1; max-width: 1000px; }
.cta-panel__eyebrow { margin: 0 0 16px; color: rgba(255, 255, 255, .72); font-size: 13px; line-height: 1.4; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.cta-panel__title { max-width: 920px; margin: 0; color: var(--fa-color-background); font-size: 52px; line-height: 1.05; font-weight: 500; letter-spacing: -.035em; }
.cta-panel__title em { color: var(--fa-color-primary-light); font-style: normal; }
.cta-panel__text { max-width: 650px; margin-top: 22px; color: rgba(255, 255, 255, .8); font-size: 16px; line-height: 1.7; }
.cta-panel__text > :first-child { margin-top: 0; }
.cta-panel__text > :last-child { margin-bottom: 0; }
.cta-panel__actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.cta-panel__button { display: inline-flex; gap: 12px; align-items: center; min-height: 48px; padding: 5px 6px 5px 18px; border: 1px solid var(--fa-color-background); border-radius: 999px; font-size: 15px; line-height: 1; font-weight: 600; text-decoration: none; transition: color .25s ease, background-color .25s ease, transform .25s ease; }
.cta-panel__button:hover { text-decoration: none; transform: translateY(-2px); }
.cta-panel__button--primary { color: var(--fa-color-primary); background: var(--fa-color-background); }
.cta-panel__button--primary:hover { color: var(--fa-color-primary); background: var(--fa-color-primary-light); border-color: var(--fa-color-primary-light); }
.cta-panel__button--secondary { color: var(--fa-color-background); background: transparent; }
.cta-panel__button--secondary:hover { color: var(--fa-color-primary); background: var(--fa-color-background); }
.cta-panel__arrow { display: inline-flex; flex: 0 0 36px; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; transition: color .25s ease, background-color .25s ease; }
.cta-panel__button--primary .cta-panel__arrow { color: var(--fa-color-background); background: var(--fa-color-primary); }
.cta-panel__button--secondary .cta-panel__arrow { color: var(--fa-color-primary); background: var(--fa-color-background); }
.cta-panel__arrow-icon { display: block; width: 13px; height: 13px; background: currentColor; -webkit-mask: url("../../images/right-arrow.svg") center / contain no-repeat; mask: url("../../images/right-arrow.svg") center / contain no-repeat; transform: rotate(-45deg); transition: transform .25s ease; }
.cta-panel__button:hover .cta-panel__arrow-icon { transform: rotate(0deg); }
@media (max-width: 900px) {
	.cta-panel { padding: 80px 0; }
	.cta-panel__inner { padding: 48px; }
	.cta-panel__title { font-size: 46px; }
	.cta-panel__actions { justify-content: flex-start; }
}
@media (max-width: 600px) {
	.cta-panel { padding: 64px 0; }
	.cta-panel__inner { padding: 34px 24px; border-radius: 20px; }
	.cta-panel__title { font-size: 38px; }
	.cta-panel__actions { align-items: stretch; flex-direction: column; gap: 10px; }
	.cta-panel__button { justify-content: space-between; width: 100%; min-height: 52px; padding-left: 20px; }
}
@media (prefers-reduced-motion: reduce) {
	.cta-panel__button { transition: none; }
	.cta-panel__arrow { transition: none; }
	.cta-panel__arrow-icon { transition: none; }
}
