.container-full-width .content {
    grid-column: 1 / -1;
}

.courses-filters {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

/* Article Page Styles - Better Space Utilization */
.article-page {
    max-width: 1200px !important; /* Increased from default */
    margin: 0 auto;
    padding: 3rem 5% !important; /* More generous padding */
}

.article-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.article-header h1 {
    font-size: 2.5rem !important;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.article-meta {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.article-excerpt {
    font-size: 1.1rem !important;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
    margin-top: 1.5rem;
}

.featured-image-container {
    margin: 2rem 0 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    font-size: 1rem !important;
    line-height: 1.8 !important;
    color: #333;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 1.8rem !important;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: #003366;
}

.article-content h3 {
    font-size: 1.4rem !important;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #003366;
}

.article-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.article-content ul, .article-content ol {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
}

.article-content blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: #f8f9fa;
    border-left: 5px solid #0066cc;
    font-style: italic;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.article-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e9ecef;
}

.article-sharing h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.social-share {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-share a {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.share-facebook {
    background: #1877f2;
    color: white;
}

.share-twitter {
    background: #1da1f2;
    color: white;
}

.share-linkedin {
    background: #0077b5;
    color: white;
}

.share-email {
    background: #6c757d;
    color: white;
}

.social-share a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.related-articles {
    margin-top: 3rem;
}

.related-articles h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.related-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-card h4 {
    font-size: 1.2rem;
    margin: 1rem 1rem 0.5rem 1rem;
}

.related-card h4 a {
    color: #003366;
    text-decoration: none;
}

.related-card h4 a:hover {
    color: #0066cc;
}

.related-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0 1rem 1rem 1rem;
    line-height: 1.6;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: #999;
}

.breadcrumb a {
    color: #0066cc;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .article-page {
        padding: 2rem 4% !important;
    }

    .article-header h1 {
        font-size: 2rem !important;
    }

    .article-content {
        font-size: 1.05rem !important;
    }

    .article-content h2 {
        font-size: 1.7rem !important;
    }

    .article-content h3 {
        font-size: 1.4rem !important;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .social-share {
        flex-direction: column;
    }

    .social-share a {
        text-align: center;
    }
}
