/* ==========================================================================
   FEATURED PAGE (UITGELICHT) STYLES
   Used on: /featured page
   Components: Pages/Featured/Index.razor
   ========================================================================== */

.featured-page {
    min-height: 100vh;
    background: #f9fafb;
}

.featured-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 0;
}

.featured-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.featured-hero .lead {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 0;
    color: white;
}

.featured-intro {
    margin-top: 2rem;
}

.featured-intro .lead {
    color: #6b7280;
    line-height: 1.8;
}

/* Person Section */
.person-section {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.person-card {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid #e5e7eb;
}

.person-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid #667eea;
}

.person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-image-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.person-image-placeholder i {
    font-size: 5rem;
    color: white;
    opacity: 0.8;
}

.person-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.person-role {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.person-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.verified-badge i {
    font-size: 1rem;
}

/* Recommendations */
.recommendations-header {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.recommendations-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.recommendations-header i {
    color: #667eea;
}

.list-description {
    color: #6b7280;
    font-size: 0.9375rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.books-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.book-rank-badge {
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.book-cover-small {
    position: relative;
    width: 100px;
    aspect-ratio: 2/3;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

.book-cover-small:hover {
    transform: scale(1.05);
}

.book-cover-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-cover-placeholder-small {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-cover-placeholder-small i {
    font-size: 2rem;
    color: white;
    opacity: 0.6;
}

.book-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.book-title:hover {
    color: #667eea;
}

.book-author {
    color: #6b7280;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.recommendation-quote {
    background: white;
    border-left: 4px solid #667eea;
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    position: relative;
}

.recommendation-quote i {
    position: absolute;
    top: -0.5rem;
    left: 0.5rem;
    font-size: 2rem;
    color: #667eea;
    opacity: 0.3;
}

.recommendation-quote p {
    font-style: italic;
    color: #374151;
    margin: 0 0 0.5rem 0;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.recommendation-quote .recommender {
    display: block;
    color: #667eea;
    font-weight: 600;
    font-size: 0.875rem;
    padding-left: 1.5rem;
}

.book-rating-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.book-rating-small i {
    color: #fbbf24;
}

.book-rating-small span {
    font-weight: 600;
    color: #1f2937;
}

.book-rating-small .review-count {
    color: #9ca3af;
    font-weight: 400;
}

/* Empty State */
.empty-state {
    background: white;
    border-radius: 1rem;
    padding: 4rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.empty-state h3 {
    color: #1f2937;
    font-weight: 600;
}

.empty-state p {
    color: #6b7280;
    font-size: 1.125rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .person-card {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .featured-hero h1 {
        font-size: 2rem;
    }

    .person-section {
        padding: 1.5rem;
    }

    .person-image,
    .person-image-placeholder {
        width: 120px;
        height: 120px;
    }

    .person-image-placeholder i {
        font-size: 4rem;
    }

    .book-cover-small {
        width: 80px;
    }

    .recommendation-card {
        padding: 1rem;
    }

    .book-title {
        font-size: 1.125rem;
    }

    .recommendation-quote {
        padding: 0.75rem;
    }

    .recommendation-quote i {
        font-size: 1.5rem;
    }
}
