.two-by-two-grid-1923 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.grid-item-1923 {
	display: flex;
	flex-direction: column;
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	background-color: #fff;
}

.grid-item-image-1923 {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.grid-item-image-1923 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.grid-item-content-1923 {
	padding: 20px;
}

.grid-item-title-1923 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 1.25rem;
}

.grid-item-desc-1923 {
	margin: 0;
	font-size: 1rem;
	color: #666;
}

/* Responsive adjustments */
@media (max-width: 767px) {
	.two-by-two-grid-1923 {
		grid-template-columns: 1fr;
	}
}
