/* ==========================
News & Insights Page Styles
========================== */

.news-header,
.news-table-section,
.thought-leadership {
	background: #ffffff;
	padding: 3rem 2rem;
	border-radius: 0.75rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	margin-bottom: 4rem;
	text-align: center;
}

.news-header h1 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: #111827;
}

.news-header p {
	max-width: 900px;
	margin: 0 auto;
	font-size: 1.1rem;
	color: #374151;
}

/* Featured Cards */
.news-featured {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
	margin: 4rem 0;
}

.news-card {
	background: #ffffff;
	padding: 2rem;
	border-radius: 0.75rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.news-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.news-card p {
	color: #4b5563;
	margin-bottom: 1rem;
}

.news-card span {
	font-size: 0.9rem;
	color: #6b7280;
}

/* Table */
.news-table-section h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.table-wrapper {
	overflow-x: auto;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th, td {
	padding: 1rem;
	border: 1px solid #e5e7eb;
	text-align: left;
}

thead {
	background: #f3f4f6;
}

tbody tr:nth-child(even) {
	background: #f9fafb;
}

/* Thought Leadership */
.thought-leadership h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.thought-leadership p {
	max-width: 800px;
	margin: 0 auto 1.5rem;
	color: #374151;
}

.thought-leadership ul {
	max-width: 600px;
	margin: 0 auto;
	text-align: left;
	list-style: disc;
	padding-left: 1.5rem;
	color: #374151;
}

.thought-leadership li {
	margin-bottom: 0.5rem;
}

/* CTA */
.news-cta {
	background: #1d4ed8;
	color: #ffffff;
	padding: 3.5rem 2rem;
	border-radius: 0.75rem;
	text-align: center;
	margin-top: 5rem;
}

.news-cta h2 {
	font-size: 2.2rem;
	font-weight: 800;
	margin-bottom: 1rem;
}

.news-cta p {
	max-width: 800px;
	margin: 0 auto 1.5rem;
	font-size: 1.1rem;
}

.cta-button {
	background: #ffffff;
	color: #1d4ed8;
	padding: 0.75rem 2.5rem;
	border-radius: 0.5rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s ease;
}

.cta-button:hover {
	background: #e5e7eb;
}

/* Responsive */
/* =======================
   NEWS & INSIGHTS RESPONSIVE
======================= */

/* Large screens / smaller desktops */
@media (max-width: 1024px) {
    .news-header,
    .news-table-section,
    .thought-leadership,
    .news-cta {
        padding: 2.5rem 1.5rem;
    }

    .news-header h1 {
        font-size: 2.2rem;
    }

    .news-header p,
    .thought-leadership p,
    .news-cta p {
        font-size: 1rem;
    }

    .news-table-section h2,
    .thought-leadership h2,
    .news-cta h2 {
        font-size: 1.8rem;
    }

    .news-card h3 {
        font-size: 1.15rem;
    }

    .news-card p {
        font-size: 0.95rem;
    }

    .news-card span {
        font-size: 0.85rem;
    }

    table th, table td {
        padding: 0.85rem;
    }

    .thought-leadership ul {
        max-width: 100%;
    }
}

/* Tablets / medium screens */
@media (max-width: 768px) {
    .news-header,
    .news-table-section,
    .thought-leadership,
    .news-cta {
        padding: 2rem 1.25rem;
    }

    .news-header h1 {
        font-size: 2rem;
    }

    .news-header p,
    .thought-leadership p,
    .news-cta p {
        font-size: 0.95rem;
    }

    .news-table-section h2,
    .thought-leadership h2,
    .news-cta h2 {
        font-size: 1.6rem;
    }

    .news-featured {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-card h3 {
        font-size: 1.05rem;
    }

    .news-card p {
        font-size: 0.9rem;
    }

    .news-card span {
        font-size: 0.8rem;
    }

    table th, table td {
        padding: 0.65rem;
    }
}

/* Small phones / very small screens */
@media (max-width: 480px) {
    .news-header,
    .news-table-section,
    .thought-leadership,
    .news-cta {
        padding: 1.5rem 1rem;
    }

    .news-header h1 {
        font-size: 1.6rem;
    }

    .news-header p,
    .thought-leadership p,
    .news-cta p {
        font-size: 0.9rem;
    }

    .news-table-section h2,
    .thought-leadership h2,
    .news-cta h2 {
        font-size: 1.4rem;
    }

    .news-featured {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .news-card h3 {
        font-size: 1rem;
    }

    .news-card p {
        font-size: 0.85rem;
    }

    .news-card span {
        font-size: 0.75rem;
    }

    table th, table td {
        padding: 0.5rem;
    }

    .thought-leadership ul {
        padding-left: 1rem;
    }
}
