/* Blog List Shortcode */
.blog-list-wrap {
	position: relative;
	z-index: 2;
}

.blog-list-wrap *,
.blog-list-wrap *::before,
.blog-list-wrap *::after {
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 341px);
	gap: 50px;
	margin-bottom: 40px;
	justify-content: center;
}

@media (max-width: 900px) {
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 580px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}
}

.blog-card {
	display: flex;
	flex-direction: column;
}

.card-img-link {
	display: block;
	overflow: hidden;
	border-radius: 10px;
}

.card-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.card-img-link:hover .card-img {
	transform: scale(1.04);
}

.card-img--placeholder {
	background: #e5e7eb;
}

.card-body {
	padding: 12px 0 0 0;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.card-title {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 10px;
	line-height: 1.4;
}

.card-title a {
	color: #003362;
	text-decoration: none;
}

.card-title a:hover {
	text-decoration: underline;
}

.card-excerpt {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
	margin: 0 0 14px;
	flex: 1;
}

.read-more-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 500;
	color: #ED1C24;
	text-decoration: none;
	transition: opacity 0.2s;
}

.read-more-link:hover {
	opacity: 0.8;
}

.read-more-arrow {
	font-size: 16px;
	line-height: 1;
}

/* Load More */
.loadmore-wrap {
	text-align: center;
	margin-top: 10px;
}

.load-more-btn {
	display: block;
	width: 408px;
	margin: 0 auto;
	background: #ED1C24;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 500;
	padding: 18px 30px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s, opacity 0.2s;
}

.load-more-btn:hover {
	background: #c5151b;
}

.load-more-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.load-more-btn.is-hidden {
	display: none;
}
