.content-card {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	padding: 24px;
	margin-bottom: 30px;
	transition: all 0.3s ease;
	border: 1px solid #eaeaea;
    hyphens: auto;
    overflow-wrap: break-word;
}

.context-text a {
    font-weight: bold;
}

@media (max-width: 350px) {
  .content-title {
    font-size: 22px;
  }
}

.content-meta {
	display: flex;
	justify-content: space-between;
	color: #7f8c8d;
	font-size: 0.85rem;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #f0f0f0;
}

.content-description {
	color: #34495e;
	line-height: 1.6;
	margin-bottom: 20px;
	font-size: 1rem;
}

.content-description img {
    max-width: 100%;
    object-fit: contain;
    object-position: left top;
    height: auto !important;
    display: block;
}

.content-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 15px;
	border-top: 1px solid #f0f0f0;
	font-size: 0.9rem;
}

.content-category {
	color: #7f8c8d;
}

.read-more {
	text-decoration: none;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	transition: color 0.2s;
}

.read-more i {
	padding-top: 3px;
	margin-left: 5px;
	transition: transform 0.2s;
}

.read-more:hover i {
	transform: translateX(3px);
}