/**
 * Latest Articles Block - Frontend Styles
 */

.posts-column {display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 2rem;}

.latest-articles-block {
	margin-bottom: 2rem;
}

.latest-articles-heading {
	font-size: 2rem;
	margin: 0 0 2rem 0;
	font-weight: 700;
	color: #1a1a1a;
}

/* Category Filter Dropdown */
.knowledge-center-filter {
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.filter-label {
	font-size: 1rem;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0;
	width: inherit;
}

.kb-category-dropdown {
	padding: 0.75rem 2.5rem 0.75rem 1rem;
	font-size: 1rem;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	background-color: #fff;
	color: #1a1a1a;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 200px;
	width: auto;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a1a1a' d='M1.41 0L6 4.59L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 12px;
}

.kb-category-dropdown:hover {
	border-color: #007cba;
}

.kb-category-dropdown:focus {
	outline: none;
	border-color: #007cba;
	box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

/* Knowledge Center Grid - Spotlight Card Layout */
.knowledge-center-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.latest-articles-block .spotlight-card-content, .filter-label {padding-bottom: 0;}


@media (min-width: 768px) {
	.knowledge-center-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Newsletter Signup Section */
.la-newsletter {
	position: sticky;
	top: 2rem;
	align-self: start;
}

.la-newsletter-grid {
	display: block;
	box-shadow: 5px 18px 0px 0px #66C60560;
	border-radius: 5px 100px 5px 100px;
	background-color: #f0f0f3;
	overflow: hidden;
}

.la-newsletter-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem;
}

.la-newsletter-left.has-bg-image {
	background-color: #122645;
	color: #fff;
	background-size: cover;
	background-blend-mode: difference;
}

.la-newsletter-left p {
	font-size: 48px;
    line-height: 1.4;
    margin: 0px;
}

.la-newsletter-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem;
}

.la-newsletter-btn {
	display: inline-block;
	margin-top: 1rem;
	padding: 15px 30px;
	background: #122645;
	color: #fff;
	border-radius: 4px 20px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 400;
	transition: all 0.25s ease-out;
	border: 2px solid #122645;
	box-shadow: -5px -10px 20px #e3ff66ba, 10px 15px 10px #b8e3d9b5;
}

/* Responsive adjustments */
@media (max-width: 767px) {
	.posts-column {
		display: block;
	}

	.latest-articles-heading {
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.knowledge-center-filter {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.kb-category-dropdown {
		width: 100%;
		min-width: auto;
	}
}
