.mnb-news {
	display: grid;
	gap: 1.25rem;
	margin: 1.5rem 0;
}

.mnb-events {
	display: grid;
	gap: 1.25rem;
	margin: 1.5rem 0;
}

.mnb-events--list {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.mnb-news--grid {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.mnb-news--stack {
	grid-template-columns: 1fr;
}

.mnb-card {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	padding: 1.2rem;
	border: 1px solid #d7dfe6;
	border-radius: 16px;
	background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
	box-shadow: 0 12px 30px rgba(18, 38, 63, 0.06);
	color: #17324d;
	overflow: hidden;
}

.mnb-card--with-image {
	padding: 0 0 1.2rem;
}

.mnb-card__media {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #dfe9f2;
}

.mnb-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mnb-card--with-image .mnb-card__meta,
.mnb-card--with-image .mnb-card__title,
.mnb-card--with-image .mnb-card__summary,
.mnb-card--with-image .mnb-card__footer {
	padding-left: 1.2rem;
	padding-right: 1.2rem;
}

.mnb-card__meta,
.mnb-card__footer {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 1rem;
	align-items: center;
	justify-content: space-between;
}

.mnb-card__source,
.mnb-card__date,
.mnb-card__note {
	font-size: 0.86rem;
	color: #5a6f82;
}

.mnb-card__title {
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.35;
	color: #13283c;
}

.mnb-card__summary {
	margin: 0;
	line-height: 1.6;
	color: #2f475c;
}

.mnb-card__link {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 0.9rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	color: #0d4b78;
	background: #e6f1f8;
}

.mnb-card__link:hover,
.mnb-card__link:focus {
	color: #08314f;
	background: #d4e7f5;
}

.mnb-empty {
	padding: 1rem 1.2rem;
	border-radius: 14px;
	background: #f5f8fb;
	border: 1px solid #d7dfe6;
}

.mnb-event__details {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	font-size: 0.9rem;
	color: #5a6f82;
}

.mnb-calendar {
	margin: 1.5rem 0;
	border: 1px solid #d7dfe6;
	border-radius: 16px;
	background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
	box-shadow: 0 12px 30px rgba(18, 38, 63, 0.06);
	overflow: hidden;
}

.mnb-calendar__header {
	padding: 1rem 1.2rem;
	font-weight: 700;
	color: #13283c;
	border-bottom: 1px solid #d7dfe6;
}

.mnb-calendar__grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.mnb-calendar__label,
.mnb-calendar__day {
	border-right: 1px solid #e3e9ef;
	border-bottom: 1px solid #e3e9ef;
}

.mnb-calendar__label {
	padding: 0.75rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: #5a6f82;
	background: #f4f8fb;
}

.mnb-calendar__day {
	min-height: 110px;
	padding: 0.6rem;
}

.mnb-calendar__date {
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #17324d;
}

.mnb-calendar__event {
	display: block;
	margin-bottom: 0.4rem;
	padding: 0.4rem 0.5rem;
	border-radius: 10px;
	background: #e6f1f8;
	color: #0d4b78;
	text-decoration: none;
	font-size: 0.84rem;
	line-height: 1.35;
}

.mnb-calendar__day--empty {
	background: #fafcfd;
}

@media (max-width: 640px) {
	.mnb-card {
		padding: 1rem;
	}

	.mnb-card__meta,
	.mnb-card__footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.mnb-calendar__grid {
		grid-template-columns: 1fr;
	}

	.mnb-calendar__label {
		display: none;
	}
}
