/* Blog Article Styles */

/* Slogan Footer */
.slogan-footer {
    background-color: #0056b3;
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    margin-top: 3rem;
}

.slogan-footer p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .slogan-footer p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}
.article-header {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-bottom: 3rem;
}

.article-header .container {
    max-width: 900px;
    margin: 0 auto;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-blog i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.back-to-blog:hover {
    color: #003366;
}

.back-to-blog:hover i {
    transform: translateX(-3px);
}

.article-category {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.article-meta-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-name {
    display: block;
    font-weight: 600;
    color: var(--black);
}

.publish-date {
    font-size: 0.9rem;
    color: #6c757d;
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.article-featured-image {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.article-featured-image:hover img {
    transform: scale(1.03);
}

.article-content {
    max-width: 800px;
    margin: 0 auto 5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

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

.article-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 0.5rem;
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--cyan);
    border-radius: 3px;
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1.2rem;
    color: #2c3e50;
}

.article-content h4 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 400;
}

.article-image {
    margin: 2.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    padding: 0.8rem;
    background: #f8f9fa;
    font-style: italic;
}

blockquote {
    border-left: 4px solid var(--primary-blue);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    position: relative;
}

blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem !important;
    line-height: 1.6;
}

blockquote cite {
    display: block;
    font-size: 1rem;
    color: #6c757d;
    font-style: normal;
    font-weight: 600;
}

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

.article-content li {
    margin-bottom: 0.8rem;
    position: relative;
}

.article-content ul li::before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.article-conclusion {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--cyan);
}

.article-conclusion h3 {
    margin-top: 0;
    color: var(--primary-blue);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.article-tags span {
    font-weight: 600;
    color: #2c3e50;
}

.tag {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-blue);
    color: white;
}

.article-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2.5rem 0;
}

.article-share span {
    font-weight: 600;
    color: #2c3e50;
}

.social-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f3f5;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-share:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 2rem;
    margin: 4rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.author-bio .author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info h4 {
    margin-top: 0;
    color: var(--primary-blue);
    font-size: 1.3rem;
}

/* Related Articles */
.related-articles {
    margin: 5rem 0 3rem;
}

.related-articles h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-article {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-image {
    display: block;
    height: 200px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-article:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    padding: 1.5rem;
}

.related-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.related-article h4 {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.related-article h4 a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-article h4 a:hover {
    color: var(--primary-blue);
}

.related-date {
    font-size: 0.85rem;
    color: #6c757d;
    display: block;
    margin-top: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .article-header {
        padding: 4rem 0 2rem;
    }
    
    .article-header h1 {
        font-size: 2.2rem;
    }
    
    .article-meta-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .author-bio .author-avatar {
        margin: 0 auto;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .article-content h2 {
        font-size: 1.6rem;
    }
    
    .article-content h3 {
        font-size: 1.3rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .article-tags {
        flex-direction: column;
        align-items: flex-start;
    }
}
