.article-full {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

/* Article Layout with Sidebar - Override any inherited styles */
main.article-layout {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem;
    /* Ensure this takes precedence */
    position: relative;
    z-index: 1;
}

/* Unified container with white background */
.article-container {
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    overflow: visible;
}

/* Full-width hero section - no separate background */
.article-hero-section {
    width: 100%;
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.article-header {
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 1.5rem;
}

.article-header h1 {
    text-align: left;
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--color-text);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.article-hero-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

.article-hero-image img {
    width: 100% !important;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Content area with sidebar - no separate backgrounds */
.article-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.article-main {
    min-width: 0;
    width: 100%;
    order: 1;
}

/* Related Articles Sidebar */
.related-articles-sidebar {
    order: 2;
    width: 100%;
}

.related-articles-widget {
   
    padding:0 1.5rem 0 ;
 
}

.related-articles-widget h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.5rem;
}

.related-articles-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article-item {
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 1rem;
}

.related-article-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-article-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    flex-direction: column;
}

.related-article-link:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.related-article-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.related-article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.related-article-content {
    flex: 1;
    min-width: 0;
}

.related-article-content h4 {
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-article-link:hover .related-article-content h4 {
    color: var(--color-primary);
}

.related-article-meta {
    display: flex ;
        flex-direction: row;
        gap: 0.25rem;
        font-size: 0.8rem;
        justify-content: space-between;
        align-items: center;
}

.related-category-badge {
    display: inline-block;
    background-color: var(--badge-color, var(--color-neutral));
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.related-article-meta time {
    color: var(--color-neutral);
    font-size: 0.75rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--color-neutral);
}

.article-content,
.static-page-content {
   
    padding: 15px 15px;
}

.article-content p,
.static-page-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.article-content h2,
.static-page-content h2,
.article-content h3,
.static-page-content h3,
.article-content h4,
.static-page-content h4 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--color-text);
}

.article-content h2, .static-page-content h2 { font-size: 1.8rem; }
.article-content h3, .static-page-content h3 { font-size: 1.4rem; }
.article-content h4, .static-page-content h4 { font-size: 1.2rem; }

.article-content a,
.static-page-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-color: var(--color-accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.article-content a:hover,
.static-page-content a:hover {
    background-color: #eef5ff;
    color: #004494;
}

.article-content ul,
.static-page-content ul,
.article-content ol,
.static-page-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.article-content li,
.static-page-content li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.article-content strong,
.static-page-content strong {
    font-weight: 600;
    color: var(--color-text);
}

.article-content blockquote {
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--color-accent);
    background-color: var(--color-bg);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-neutral);
}

.article-content blockquote p {
    margin-bottom: 0;
}

.table-scroll-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    border: 1px solid #e5e7eb;
}

.comparison-table th,
.comparison-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table thead th {
    background-color: #F9FAFB;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    color: var(--color-neutral);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: var(--color-bg);
}

.program-card {
    background-color: #f0f5ff;
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.program-card h3 {
    margin-top: 0;
    color: var(--color-primary);
}

.program-card p {
    margin-bottom: 0.5rem;
}

.program-card p:last-child {
    margin-bottom: 0;
}

.call-to-action {
    background-color: var(--color-white);
    border: 2px dashed var(--color-accent);
    padding: 2rem;
    margin: 2.5rem 0;
    text-align: center;
    border-radius: 8px;
}
.article-subtitle {
    text-align: left;
    margin: 10px 0px -10px 0px;
    font-size: 1.3rem;
    line-height: 130%;
}
.call-to-action p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.split-screen-img {
	/* max-width: 800px; */
}

.cta-container {
	text-align: center;
	margin: 3rem 0;
}

.cta-button {
	background-color: var(--color-primary);
	color: white;
	border: none;
	padding: 16px 32px;
	font-size: 1.2rem;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button:hover {
	background-color: #004494;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.cta-button:active {
	transform: translateY(1px);
}

.guarantee-badge {
	display: inline-block;
	background-color: #f8f9fa;
	border: 1px solid #e5e7eb;
	border-radius: 20px;
	padding: 8px 16px;
	margin-top: 1rem;
	font-size: 0.9rem;
	color: var(--color-neutral);
}
        


@media (max-width: 767px) {
    .article-full {
        padding: 1rem;
        box-shadow: none;
        border-radius: 0;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
        line-height: 130%;
    }

    .article-content {
        max-width: 100%; 
    }

    .article-header {
        margin-bottom: 0rem;
        
    }
    .article-content p {
        font-size: 1.3rem;
        line-height: 135%;
    }

    .article-content h2 { font-size: 1.6rem; }
    .article-content h3 { font-size: 1.3rem; }
	
	.article-img {
		margin: 1.5rem auto;
	}
	.article-content, .static-page-content {
        padding: 15px 0px;
    }
	.cta-button {
		padding: 14px 28px;
		font-size: 1.1rem;
		width: 90%;
		max-width: 300px;
	}
	
	.related-articles-widget {
		position: static;
		max-height: none;
		overflow-y: visible;
	}
	
	.related-articles-widget h3 {
		font-size: 1.3rem;
	}
	
	.related-article-thumbnail {
		width: 100%;
        max-height: 145px;
        height: 100%;
	}
	
	.related-article-content h4 {
		font-size: 0.9rem;
	}
 
    main.article-layout {
 
        padding: 0rem 0px !important;
      
    }
    .article-hero-section {
        width: 100%;
        padding: 15px 0px 0px 0px !important;
    }
    .article-hero-image {
        margin-bottom: 0rem;
      
    }
    .article-content-wrapper {
      
        padding: 0px 0px;
    }
}
/* Tablet and Desktop Layout */
@media (min-width: 769px) {
	.article-content-wrapper {
		grid-template-columns: 1fr 320px;
		gap: 3rem;
	}
	
	.article-main {
		order: 1;
	}
	
	.related-articles-sidebar {
		order: 2;
	}
	
	.related-articles-widget {
		width: 100%;
		position: sticky;
		top: calc(var(--header-height) + 2rem);
		max-height: calc(100vh - var(--header-height) - 4rem);
		overflow-y: auto;
	}
}

/* Large Desktop Layout */
@media (min-width: 1200px) {
	.article-content-wrapper {
		grid-template-columns: 1fr 350px;
		gap: 1rem;
	}
	
	.related-article-thumbnail {
        width: 100%;
        height: 150px;
	}
	
	.related-article-content h4 {
		font-size: 1rem;
	}
	
	.related-articles-widget h3 {
		font-size: 1.6rem;
	}
}

/* Article Listing Page */
.article-listing {
    padding: 2rem 0;
}

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

.article-listing h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

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

.article-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.article-card:hover {
    transform: translateY(-4px);
}

.article-card .article-link {
    text-decoration: none;
    color: inherit;
}

.article-card .article-image {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.article-card .article-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card .article-content {
    padding: 1.5rem;
}

.article-card h2 {
    font-size: 1.25rem;
    margin: 0.5rem 0;
    color: #2d3748;
    line-height: 1.4;
}

.article-card time {
    font-size: 0.875rem;
    color: #718096;
}

@media (max-width: 768px) {
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .article-listing h1 {
        font-size: 2rem;
    }
}