/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #374151;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.avatar {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.header-info {
    flex: 1;
    min-width: 300px;
}

.header-info h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.meta-item i {
    width: 1rem;
    height: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    padding: 0.5rem;
    color: #6b7280;
    background: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.social-btn:hover {
    color: #2563eb;
    background: #eff6ff;
}

.social-btn i {
    width: 1.25rem;
    height: 1.25rem;
}

/* Navigation Styles */
.navigation {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-tabs {
    display: flex;
    gap: 2rem;
}

.nav-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    border: none;
    background: none;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.nav-tab:hover {
    color: #111827;
    border-bottom-color: #d1d5db;
}

.nav-tab.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.nav-tab i {
    width: 1rem;
    height: 1rem;
}

/* Main Content Styles */
.main-content {
    padding: 2rem 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Bio Section */
.bio-section {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.bio-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.bio-content p {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.highlight-icon {
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.highlight-icon.green {
    background: #dcfce7;
    color: #16a34a;
}

.highlight-icon.purple {
    background: #f3e8ff;
    color: #7c3aed;
}

.highlight-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.highlight-card h3 {
    font-weight: 600;
    color: #111827;
}

.highlight-card p {
    color: #6b7280;
}

/* Content Sections */
.main-content section {
    margin-bottom: 2rem;
}

.main-content h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.main-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

/* Featured Content Grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.content-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}

.content-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1rem;
}

.content-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-type i {
    width: 1rem;
    height: 1rem;
}

.type-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.type-badge.interview {
    background: #dbeafe;
    color: #1d4ed8;
}

.type-badge.podcast {
    background: #f3e8ff;
    color: #7c3aed;
}

.type-badge.video {
    background: #fee2e2;
    color: #dc2626;
}

.type-badge.article {
    background: #dcfce7;
    color: #16a34a;
}

.content-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.content-date i {
    width: 1rem;
    height: 1rem;
}

.content-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.content-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.content-footer {
    display: flex;
    justify-content: between;
    align-items: center;
}

.source {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
}

.view-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.view-link:hover {
    color: #1d4ed8;
}

.view-link i {
    width: 1rem;
    height: 1rem;
}

/* Content List */
.content-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content-item {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: flex;
    justify-content: between;
    align-items: center;
    transition: box-shadow 0.2s;
}

.content-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-item-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.content-item-info i {
    width: 1rem;
    height: 1rem;
    color: #6b7280;
}

.content-item h4 {
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.25rem;
}

.content-item p {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Insights Section */
.insights-section {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.insights-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.insight-item {
    border-left: 4px solid;
    padding-left: 1.5rem;
}

.insight-item.blue {
    border-left-color: #3b82f6;
}

.insight-item.green {
    border-left-color: #10b981;
}

.insight-item.purple {
    border-left-color: #8b5cf6;
}

.insight-item.orange {
    border-left-color: #f59e0b;
}

.insight-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.insight-item p {
    color: #374151;
}

/* Quotes Section */
.quotes-section {
    background: linear-gradient(135deg, #eff6ff 0%, #f3e8ff 100%);
    border-radius: 0.75rem;
    padding: 2rem;
}

.quotes-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.quote p {
    color: #374151;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.quote cite {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid #e5e7eb;
    margin-top: 4rem;
}

.footer-content {
    text-align: center;
    padding: 2rem 0;
    color: #6b7280;
}

.footer-small {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-info h1 {
        font-size: 2rem;
    }

    .nav-tabs {
        flex-direction: column;
        gap: 0;
    }

    .nav-tab {
        padding: 0.75rem 0;
        justify-content: center;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .content-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .content-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
