/* Single article styles for single.php */

/* Article Content */
.single-article {
    min-height: 70vh;
    padding: 4rem 0 0 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

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

.article-navigation-top {
    margin-bottom: 3rem;
    text-align: left;
}

/* Article Header */
.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.article-title-single {
    font-size: 2.5rem;
    color: #0c4a6e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-meta {
    font-size: 1rem;
    color: #6b7280;
    font-style: italic;
}

.article-meta time {
    color: #0c4a6e;
    font-weight: 500;
}

/* Featured Image */
.article-featured-image {
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.article-featured-image .featured-img {
    max-width: 60%;
    height: auto;
    border-radius: 12px;
    border: none;
}

/* Article Content */
.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    color: #0c4a6e;
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem 0;
    font-weight: 600;
    border-bottom: 2px solid #0ea5e9;
    padding-bottom: 0.5rem;
}

.article-content h3 {
    color: #0c4a6e;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.article-content h4 {
    color: #374151;
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul, 
.article-content ol {
    margin: 1.5rem 0 2rem 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
}

.article-content blockquote {
    border-left: 4px solid #0ea5e9;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    position: relative;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.1);
}

.article-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #0ea5e9;
    opacity: 0.3;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-family: serif;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.article-content a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.article-content a:hover {
    color: #0c4a6e;
    border-bottom-color: #0c4a6e;
}

/* Back to articles button */
.article-navigation-top .btn-secondary {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    min-width: auto;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.article-navigation-top .btn-secondary:hover {
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}
