.news-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 695px));
	justify-content: center;
	gap: 24px;
}

.news-card {
	display: flex;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	flex-direction: row;
}


.news-card__image {
	width: auto;
	height: auto;
	object-fit: cover;
}


.news-card__content {
	padding: 22px 7px 11px 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
}


.news-card__title {
	font-size: 18px;
	font-weight: bold;
	color: #1d1d1d;
	margin-bottom: 10px;
	text-decoration: underline;
}


.news-card__text {
	flex-grow: 1;
	font-size: 14px;
	color: #444;
	margin-bottom: 20px;
}


.flex-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}


.news-card__date {
	font-size: 12px;
	color: #CCCCCC;
	display: flex;
	align-items: center;
}


.news-card__button {
	background: #EB0C3B;
	color: white;
	text-align: center;
	padding: 10px 90px;
	text-decoration: none;
	font-weight: bold;
	transition: background 0.3s;
	display: inline-block;
}

.news-card__button:hover {
	background: #c60b3b;
}

.title{
	font-size: 32px;
}

div.news-detail
{
	word-wrap: break-word;
}
div.news-detail img.detail_picture
{
	float:left;
	margin:0 8px 6px 1px;
}
.news-date-time
{
	color:#486DAA;
}

.news-back-link {
    color: #EB0C3B;; 
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-back-link:hover {
    text-decoration: underline;
    color: #c10b30; 
}

@media (max-width: 768px) {
	.news-card {
		flex-direction: column;
	}

	.news-card__image {
		width: 100%;
		height: 200px;
	}

	.news-card__content {
		padding: 16px;
	}

	.news-card__button {
		width: 100%;
		text-align: center;
		padding: 10px;
	}
}
