/* Writers Show Page Styles */

/* Hero Section */
.writer-hero {
    background: linear-gradient(135deg, #6a11cb 0%, #d63384 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.writer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.writer-hero .container {
    position: relative;
    z-index: 1;
}

.writer-img-wrapper-large {
    width: 200px;
    height: 200px;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.85);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7);
}

.stat-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-item i {
    color: rgba(255, 255, 255, 0.9);
}

/* Tabs */
.nav-pills {
    background: #ffffff;
}

.nav-pills .nav-link {
    color: #6c757d;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background: rgba(106, 17, 203, 0.1);
    color: #6a11cb;
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, #6a11cb 0%, #d63384 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
    font-weight: 600;
}

/* Biography Content */
.biography-content {
    max-width: 900px;
}

.bio-text-content {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #495057;
}

.bio-text-content h2,
.bio-text-content h3,
.bio-text-content h4 {
    color: #212529;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.bio-text-content h2 {
    font-size: 1.75rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.bio-text-content h3 {
    font-size: 1.5rem;
}

.bio-text-content h4 {
    font-size: 1.25rem;
}

.bio-text-content p {
    margin-bottom: 1.25rem;
}

.bio-text-content ul,
.bio-text-content ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.bio-text-content li {
    margin-bottom: 0.5rem;
}

.bio-text-content strong {
    color: #212529;
    font-weight: 600;
}

.bio-text-content a {
    color: #6a11cb;
    text-decoration: none;
    border-bottom: 1px solid rgba(106, 17, 203, 0.3);
    transition: all 0.2s ease;
}

.bio-text-content a:hover {
    color: #d63384;
    border-bottom-color: #d63384;
}

/* Topic Cards - Using topics.css styles, no override needed */

/* Responsive */
@media (max-width: 991px) {
    .writer-hero h1 {
        font-size: 2.5rem;
    }

    .stat-item {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 767px) {
    .writer-hero h1 {
        font-size: 2rem;
    }

    .writer-img-wrapper-large {
        width: 150px;
        height: 150px;
    }

    .writer-img-wrapper-large img,
    .writer-img-wrapper-large>div {
        width: 150px !important;
        height: 150px !important;
    }

    .bio-text-content {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-pane {
    animation: fadeInUp 0.4s ease;
}