/* Editorial Blog Styles - Magazine-Inspired Design */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

/* Main Container */
.blog-container {
    min-height: 100vh;
    background-color: #000000;
}

/* Main Content */
.blog-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem 4rem; /* Account for premium nav */
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #666666;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.back-link:hover {
    color: #ffffff;
}

.back-link svg {
    width: 16px;
    height: 16px;
}

/* Article Header - Editorial Style */
.article-header {
    text-align: left;
    margin-bottom: 4rem;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 3rem;
}

.article-category {
    display: inline-block;
    background: transparent;
    border: 1px solid #333333;
    color: #ffffff;
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

.article-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: 'Inter', serif;
}

.article-subtitle {
    font-size: 1.375rem;
    color: #999999;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 3rem;
    font-style: italic;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #666666;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* Article Content - Editorial Layout */
.article-content {
    max-width: 100%;
    margin: 0;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

/* Hero Section - Magazine Style */
.hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-left: 4px solid #ffffff;
    padding: 3rem 2.5rem;
    margin: 0 -1rem 4rem;
    position: relative;
}

.hero-badge {
    position: absolute;
    top: 0;
    right: 2.5rem;
    background-color: #ffffff;
    color: #000000;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(-50%);
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 100;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #ffffff;
}

.hero-credentials {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #e0e0e0;
    line-height: 1.6;
    font-weight: 300;
}

/* Profile Image Section - Editorial Style */
.profile-image-section {
    margin: 4rem 0;
    text-align: center;
    position: relative;
}

.profile-container {
    display: inline-block;
    position: relative;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #333333;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.profile-photo:hover {
    border-color: #ffffff;
    filter: grayscale(0%);
    transform: scale(1.02);
}

.profile-caption {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.profile-caption strong {
    color: #ffffff;
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

/* Interview Section - Editorial Q&A */
.interview-section {
    margin: 5rem 0;
}

.interview-intro {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    position: relative;
}

.interview-intro::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #ffffff;
    margin: 1.5rem auto 0;
}

.qa-item {
    margin-bottom: 4rem;
    padding: 0;
    border: none;
}

.qa-item:last-child {
    margin-bottom: 0;
}

.question {
    font-size: 1.375rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.3;
    position: relative;
    padding-left: 3rem;
}

.question::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 4rem;
    font-weight: 100;
    color: #333333;
    line-height: 0.8;
}

.answer {
    font-size: 1.125rem;
    color: #cccccc;
    line-height: 1.7;
    padding-left: 3rem;
    font-weight: 300;
    position: relative;
}

.answer::before {
    content: 'A';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: 400;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.answer a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: #666666;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.answer a:hover {
    text-decoration-color: #ffffff;
}

/* Location Section - Editorial Callout */
.location-section {
    background: #0a0a0a;
    border: 1px solid #333333;
    padding: 3rem 2.5rem;
    margin: 5rem 0;
    text-align: center;
    position: relative;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #ffffff;
}

.location-icon {
    margin-bottom: 2rem;
    color: #ffffff;
}

.location-title {
    font-size: 1.75rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.location-description {
    font-size: 1.125rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

/* CTA Section - Editorial Call-to-Action */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid #333333;
    padding: 4rem 3rem;
    margin: 5rem 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, #ffffff, transparent, #ffffff);
    z-index: -1;
    opacity: 0.1;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    min-width: 280px;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn.primary {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
}

.cta-btn.primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #333333;
}

.cta-btn.secondary:hover {
    border-color: #ffffff;
    background-color: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

/* Share Section - Editorial Style */
.share-section {
    margin: 4rem 0 2rem;
    padding: 2rem 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.share-container {
    text-align: center;
}

.share-title {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid #333333;
    color: #999999;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.share-btn:hover {
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.share-btn:hover::before {
    left: 100%;
}

.share-btn svg {
    width: 20px;
    height: 20px;
    z-index: 1;
}

/* Share Button Colors */
.share-twitter:hover {
    background-color: rgba(29, 155, 240, 0.1);
    border-color: #1d9bf0;
    color: #1d9bf0;
}

.share-linkedin:hover {
    background-color: rgba(10, 102, 194, 0.1);
    border-color: #0a66c2;
    color: #0a66c2;
}

.share-facebook:hover {
    background-color: rgba(24, 119, 242, 0.1);
    border-color: #1877f2;
    color: #1877f2;
}

.share-email:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

.share-copy:hover {
    background-color: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    color: #22c55e;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
    color: #cccccc;
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 300;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 600;
    color: #ffffff;
}

em {
    font-style: italic;
    color: #ffffff;
}

/* Footer Styles */
.site-footer {
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #1a1a1a;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.footer-brand p {
    color: #999999;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column li:last-child {
    margin-bottom: 0;
}

.footer-column a {
    color: #999999;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-legal p {
    color: #666666;
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    color: #666666;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Container utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-main {
        padding: 2rem 1rem 3rem !important;
    }

    .back-link {
        margin-bottom: 2rem;
    }

    .article-header {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }

    .article-title {
        font-size: 2.25rem;
    }

    .article-subtitle {
        font-size: 1.125rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-section {
        padding: 2rem 1.5rem;
        margin: 0 0 3rem;
        border-left-width: 2px;
    }

    .hero-badge {
        right: 1.5rem;
        padding: 0.375rem 0.75rem;
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .profile-image-section {
        margin: 3rem 0;
    }

    .profile-photo {
        width: 160px;
        height: 160px;
    }

    .interview-section {
        margin: 4rem 0;
    }

    .interview-intro {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }

    .qa-item {
        margin-bottom: 3rem;
    }

    .question {
        font-size: 1.125rem;
        padding-left: 2.5rem;
        padding-top: 0.5rem;
    }

    .question::before {
        font-size: 2.5rem;
        line-height: 1;
    }

    .answer {
        font-size: 1rem;
        padding-left: 2.5rem;
        margin-top: 1rem;
    }

    .answer::before {
        font-size: 1.25rem;
        line-height: 1;
    }

    .location-section,
    .cta-section {
        padding: 2rem 1.5rem;
        margin: 3rem 0;
    }

    .location-title {
        font-size: 1.5rem;
    }

    .location-description {
        font-size: 1rem;
    }

    .cta-buttons {
        gap: 1rem;
    }

    .cta-btn {
        min-width: unset;
        width: 100%;
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }

    .share-section {
        margin: 3rem 0 1.5rem;
        padding: 1.5rem 0;
    }

    .share-buttons {
        gap: 1rem;
    }

    .share-btn {
        width: 44px;
        height: 44px;
    }

    .site-footer {
        padding: 3rem 0 2rem;
        margin-top: 4rem;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-main {
        padding: 2rem 1rem 2rem !important;
    }

    .article-title {
        font-size: 1.875rem;
    }

    .article-subtitle {
        font-size: 1rem;
    }

    .hero-section {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .profile-photo {
        width: 140px;
        height: 140px;
    }

    .question {
        font-size: 1rem;
        padding-left: 2rem;
        padding-top: 0.75rem;
    }

    .question::before {
        font-size: 2rem;
        line-height: 0.9;
    }

    .answer {
        font-size: 0.9rem;
        padding-left: 2rem;
        margin-top: 1.25rem;
    }

    .answer::before {
        font-size: 1rem;
        line-height: 1;
        top: 0.25rem;
    }

    .location-section,
    .cta-section {
        padding: 1.5rem 1rem;
    }

    .cta-btn {
        padding: 1rem 1.5rem;
        font-size: 0.75rem;
    }

    .share-buttons {
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .share-btn {
        width: 40px;
        height: 40px;
    }

    .share-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Focus States */
.cta-btn:focus,
.back-link:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Smooth transitions */
* {
    transition-property: background-color, border-color, color, opacity, transform;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.margin-bottom-large {
    margin-bottom: 3rem;
}

.margin-bottom-medium {
    margin-bottom: 2rem;
}

.margin-bottom-small {
    margin-bottom: 1rem;
}

.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}