/* Breadcrumb */
.breadcrumb-nav {
    background: var(--bg-white);
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb-nav .breadcrumb {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.breadcrumb-nav .breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-nav .breadcrumb-item.active {
    color: var(--primary);
    font-weight: 500;
}

/* Author Hero */
.author-hero {
    background: var(--gradient-hero);
    padding: 3rem 0;
    color: var(--bg-white);
}

.author-profile {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .author-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.author-avatar {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 4px solid var(--accent-light);
    box-shadow: 0 10px 40px rgba(232, 165, 152, 0.3);
    flex-shrink: 0;
}

.author-details h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--bg-white);
}

.author-job-title {
    font-size: 1.25rem;
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.author-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.author-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .author-social-links {
        justify-content: center;
    }
}

.author-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.author-social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-white);
}

.author-social-links a i {
    font-size: 1.1rem;
}

/* Stats Cards */
.author-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .author-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* EEAT Trust Section */
.trust-section {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.trust-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--secondary);
}

.trust-section h2 i {
    color: var(--primary);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .trust-items {
        grid-template-columns: 1fr;
    }
}

.trust-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--success);
    flex-shrink: 0;
}

.trust-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--secondary);
}

.trust-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.review-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.review-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.review-card-inner {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
}

@media (max-width: 576px) {
    .review-card-inner {
        flex-direction: column;
    }
}

.review-card-image {
    width: 140px;
    height: 140px;
    object-fit: contain;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-soft) 100%);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    padding: 1rem;
}

@media (max-width: 576px) {
    .review-card-image {
        width: 100%;
        height: 180px;
    }
}

.review-card-content {
    flex: 1;
}

.review-card-brand {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.review-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.review-card-title a {
    color: inherit;
    text-decoration: none;
}

.review-card-title a:hover {
    color: var(--primary);
}

.review-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.review-card-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.review-card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warning);
    font-weight: 600;
}

.review-card-date {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.review-card-date i {
    color: var(--primary);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--border-color);
}

.empty-state h4 {
    color: var(--secondary);
}

.empty-state p {
    color: var(--text-secondary);
}

/* Sidebar */
.author-sidebar-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.author-sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-sidebar-card h3 i {
    color: var(--accent);
}

.brands-tested {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.brand-tag {
    padding: 0.375rem 0.75rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-info p i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* CTA Card */
.cta-card {
    background: var(--gradient-primary) !important;
    border: none !important;
}

.cta-card h3 {
    color: var(--bg-white) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.cta-card h3 i {
    color: rgba(255, 255, 255, 0.8) !important;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cta-card .btn {
    background: var(--bg-white);
    color: var(--primary);
    border: none;
    font-weight: 600;
}

.cta-card .btn:hover {
    background: var(--bg-light);
}

/* Responsive */
@media (max-width: 767.98px) {
    .author-hero {
        padding: 2rem 0;
    }

    .author-avatar {
        width: 140px;
        height: 140px;
    }

    .stat-value {
        font-size: 1.75rem;
    }
}
