/* Read Also Block - Frontend Styles */
.wp-block-read-also-block,
.read-also-block {
	background-color: #fff;
	border-radius: 12px;
	padding: 0;
	margin: 30px 0;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.read-also-content {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 0;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s;
}

.read-also-content:hover {
	opacity: 0.9;
}

.read-also-image {
	overflow: hidden;
	box-sizing: border-box;
}

.read-also-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.read-also-text {
	flex: 1;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.read-also-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: #005DF5;
}

.read-also-article-title,
.read-also-article-link {
	font-size: 1rem;
	line-height: 1.5;
	color: #000000;
	text-decoration: none;
}

.read-also-article-link:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.read-also-content {
		flex-direction: column;
	}
	
	.read-also-image {
		flex: none;
		width: 100%;
		height: 200px;
	}
}

