/* Page hero */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--fi-dark-2) 0%, var(--fi-dark) 100%);
    color: #fff;
    padding: 3.25rem 0 3rem;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.12;
    pointer-events: none;
}

.hero::before {
    width: 220px;
    height: 220px;
    background: #9dd6ff;
    top: -100px;
    right: -80px;
}

.hero::after {
    width: 180px;
    height: 180px;
    background: #86efac;
    bottom: -100px;
    left: -80px;
}

.hero-kicker {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #bbf7d0;
}

.hero h1 {
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 48rem;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Content cards */
.article-card,
.sidebar-card,
.cta-card {
    background: #fff;
    border: 1px solid var(--fi-border);
    border-radius: 1.25rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    padding: 1.5rem;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cta-sticky {
    position: sticky;
    top: 5.5rem;
}

/* Article content */
.article-card p,
.article-card li {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
}

.article-card h2,
.article-card h3 {
    font-weight: 800;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-card ol {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
}

.callout {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--fi-border);
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    margin: 1.5rem 0;
}

.callout strong {
    color: var(--fi-text);
}

.info-list li {
    font-size: 0.95rem;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-card {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
    border: 1px solid #d1fae5;
}

.cta-title {
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cta-actions a {
    width: 100%;
}
