/* Brand Network — cross-site syndication UI (v1.0.19.16) */

.bn-network-section {
    padding: var(--sp-16, 4rem) 0;
    background: linear-gradient(180deg, var(--clr-bg-alt, #0a0a0f) 0%, var(--clr-void, #050508) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bn-network-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--sp-10, 2.5rem);
}

.bn-network-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-accent-cyan, #22d3ee);
    margin-bottom: var(--sp-3, 0.75rem);
}

.bn-network-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--clr-heading, #fff);
    margin-bottom: var(--sp-3, 0.75rem);
}

.bn-network-sub {
    color: var(--clr-text-muted, rgba(255,255,255,0.6));
    font-size: 1rem;
    line-height: 1.6;
}

.bn-teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--sp-6, 1.5rem);
}

.bn-teaser-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-xl, 16px);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.bn-teaser-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.bn-teaser-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.bn-teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bn-teaser-body {
    padding: var(--sp-5, 1.25rem);
    display: flex;
    flex-direction: column;
    gap: var(--sp-2, 0.5rem);
    flex: 1;
}

.bn-teaser-site {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-accent-primary, #3b82f6);
}

.bn-teaser-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-heading, #fff);
    line-height: 1.35;
    margin: 0;
}

.bn-teaser-desc {
    font-size: 0.875rem;
    color: var(--clr-text-muted, rgba(255,255,255,0.55));
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.bn-teaser-cta {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-accent-cyan, #22d3ee);
    margin-top: var(--sp-2, 0.5rem);
}

.bn-cross-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3, 0.75rem);
    justify-content: center;
    margin-top: var(--sp-8, 2rem);
}

.bn-cross-link {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s;
}

.bn-cross-link:hover {
    background: rgba(59, 130, 246, 0.12);
    color: #fff;
}

/* CTA Banner */
.bn-cta-banner {
    padding: var(--sp-12, 3rem) 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(16, 185, 129, 0.06) 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bn-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-8, 2rem);
    padding: var(--sp-8, 2rem);
    border-radius: var(--r-xl, 16px);
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bn-cta-kicker {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-accent-primary, #3b82f6);
    display: block;
    margin-bottom: var(--sp-2, 0.5rem);
}

.bn-cta-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--clr-heading, #fff);
    margin: 0 0 var(--sp-2, 0.5rem);
    max-width: 520px;
}

.bn-cta-desc {
    color: var(--clr-text-muted, rgba(255,255,255,0.65));
    margin: 0;
    max-width: 480px;
    line-height: 1.6;
}

.bn-cta-actions {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3, 0.75rem);
    align-items: flex-start;
}

.bn-cta-btn {
    white-space: nowrap;
}

.bn-cta-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--clr-accent-cyan, #22d3ee);
    text-decoration: none;
}

.bn-cta-link:hover {
    text-decoration: underline;
}

/* Author box */
.bn-author-box {
    display: flex;
    gap: var(--sp-5, 1.25rem);
    padding: var(--sp-6, 1.5rem);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-xl, 16px);
    margin-top: var(--sp-8, 2rem);
}

.bn-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(59, 130, 246, 0.3);
    flex-shrink: 0;
}

.bn-author-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--clr-heading, #fff);
}

.bn-author-role {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--clr-accent-cyan, #22d3ee);
    margin-bottom: var(--sp-2, 0.5rem);
}

.bn-author-bio {
    font-size: 0.9rem;
    color: var(--clr-text-muted, rgba(255,255,255,0.6));
    line-height: 1.6;
    margin: 0 0 var(--sp-3, 0.75rem);
}

.bn-author-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4, 1rem);
}

.bn-author-links a {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-accent-primary, #3b82f6);
    text-decoration: none;
}

.bn-author-links a:hover {
    text-decoration: underline;
}

/* Footer network strip */
.bn-footer-network {
    margin-top: var(--sp-6, 1.5rem);
    padding-top: var(--sp-6, 1.5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bn-footer-network-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--sp-3, 0.75rem);
}

.bn-footer-network-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3, 0.75rem);
}

.bn-footer-network-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.bn-footer-network-links a:hover {
    color: #fff;
}

.bn-footer-network-links a.is-hub {
    color: var(--clr-accent-primary, #60a5fa);
    font-weight: 700;
}

@media (max-width: 640px) {
    .bn-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .bn-author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
