/*
 * @package BusinessSaleTheme
 * Extracted from: author.css
 */
.author-hero {
            position: relative;
            background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
            padding: 72px 0 80px;
            overflow: hidden;
            color: #fff;
        }
        .author-hero-bg {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
        }
        .author-hero-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,.12) 0%, transparent 60%);
            pointer-events: none;
        }
        .author-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 720px;
            margin: 0 auto;
        }
        .author-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,.1);
            backdrop-filter: blur(10px);
            padding: 6px 18px;
            border-radius: 100px;
            font-size: .82rem;
            font-weight: 500;
            margin-bottom: 20px;
            border: 1px solid rgba(255,255,255,.12);
            color: #cbd5e1;
        }
        .author-hero-badge .badge-dot {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        .author-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255,255,255,.2);
            margin: 0 auto 16px;
            display: block;
        }
        .author-hero h1 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            line-height: 1.15;
            margin: 0 0 8px;
            letter-spacing: -.02em;
        }
        .author-hero .author-role {
            display: inline-block;
            font-size: .82rem;
            color: #60a5fa;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .author-hero p {
            font-size: 1.05rem;
            color: #64748b;
            line-height: 1.7;
            margin: 0 auto 28px;
            max-width: 560px;
        }
        .author-hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .author-hero-stat {
            text-align: center;
        }
        .author-hero-stat-num {
            display: block;
            font-size: 1.5rem;
            font-weight: 800;
            color: #60a5fa;
            line-height: 1.1;
        }
        .author-hero-stat-label {
            font-size: .78rem;
            color: #64748b;
            margin-top: 4px;
        }
        .author-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            max-width: var(--container, 1200px);
            margin: 0 auto;
            padding: 2.5rem 2rem 4rem;
        }
        .author-posts {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .author-post-card {
            display: flex;
            background: #fff;
            border: 1px solid var(--border, #e5e7eb);
            border-radius: 12px;
            overflow: hidden;
            transition: box-shadow .2s;
        }
        .author-post-card:hover {
            box-shadow: 0 4px 16px rgba(15,23,42,.08);
        }
        .author-post-thumb {
            flex: 0 0 260px;
            overflow: hidden;
            background: var(--light-gray, #f8fafc);
        }
        .author-post-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .author-post-body {
            flex: 1;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
        }
        .author-post-meta {
            display: flex;
            gap: 1rem;
            font-size: .82rem;
            color: var(--secondary-gray, #64748b);
            margin-bottom: .5rem;
            align-items: center;
        }
        .author-post-cat {
            display: inline-block;
            background: #eff6ff;
            color: #2563eb;
            font-size: .75rem;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 20px;
        }
        .author-post-title {
            font-family: var(--font-headline, 'Syne', sans-serif);
            font-size: 1.2rem;
            margin-bottom: .6rem;
            line-height: 1.3;
        }
        .author-post-title a {
            color: var(--primary-dark, #0f172a);
            text-decoration: none;
        }
        .author-post-title a:hover {
            color: var(--primary-blue, #2563eb);
        }
        .author-post-excerpt {
            font-size: .92rem;
            color: var(--secondary-gray, #64748b);
            line-height: 1.6;
            margin-bottom: 1rem;
            flex: 1;
        }
        .author-post-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .author-sidebar {
            position: sticky;
            top: 90px;
            align-self: start;
        }
        .author-sidebar .sidebar-widget {
            background: #fff;
            border: 1px solid var(--border, #e5e7eb);
            border-radius: 10px;
            padding: 1.25rem;
            margin-bottom: 1.25rem;
        }
        .author-sidebar .sidebar-widget h3 {
            font-size: .9rem;
            text-transform: uppercase;
            letter-spacing: .5px;
            color: var(--secondary-gray, #64748b);
            margin-bottom: .75rem;
            padding-bottom: .5rem;
            border-bottom: 1px solid var(--border, #e5e7eb);
        }
        .author-sidebar ul {
            list-style: none;
        }
        .author-sidebar ul li {
            margin-bottom: .4rem;
        }
        .author-sidebar ul li a {
            font-size: .88rem;
            color: var(--secondary-gray, #64748b);
        }
        .author-sidebar ul li a:hover {
            color: var(--primary-blue, #2563eb);
        }
        .author-info-card {
            text-align: center;
        }
        .author-info-card .author-info-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 12px;
            display: block;
        }
        .author-info-card h4 {
            font-size: 1rem;
            margin: 0 0 4px;
        }
        .author-info-card .author-info-role {
            font-size: .78rem;
            color: #64748b;
            margin-bottom: 8px;
            display: block;
        }
        .author-info-card p {
            font-size: .82rem;
            color: #64748b;
            line-height: 1.5;
        }
        .author-social {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 12px;
        }
        .author-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64748b;
            text-decoration: none;
            font-size: .85rem;
            transition: all .2s;
        }
        .author-social a:hover {
            background: #2563eb;
            color: #fff;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: .5; }
        }
        @media (max-width: 768px) {
            .author-layout {
                grid-template-columns: 1fr;
                padding: 1.5rem 1rem 3rem;
            }
            .author-post-card {
                flex-direction: column;
            }
            .author-post-thumb {
                flex: 0 0 200px;
            }
            .author-sidebar {
                position: static;
            }
            .author-hero {
                padding: 48px 0 56px;
            }
        }

