.pl-team-news {
	margin: 0 0 36px;
	padding: 28px 24px 24px;
	background: #fff;
	border: 1px solid rgba(55, 0, 60, 0.08);
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(55, 0, 60, 0.06);
}

.pl-team-news__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.pl-team-news__title {
	margin: 0;
	color: #37003c;
	font-size: 24px;
	line-height: 1.2;
}

.pl-team-news__meta {
	margin: 0;
	color: #666;
	font-size: 13px;
}

.pl-team-news__list {
	display: grid;
	gap: 16px;
}

.pl-team-news.is-loading .pl-team-news__list {
	opacity: 0.55;
	pointer-events: none;
}

.pl-team-news__item {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 16px;
	padding: 16px;
	border: 1px solid rgba(55, 0, 60, 0.08);
	border-radius: 8px;
	background: #faf9fb;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pl-team-news__item:hover {
	border-color: rgba(55, 0, 60, 0.18);
	box-shadow: 0 4px 16px rgba(55, 0, 60, 0.06);
}

.pl-team-news__thumb {
	display: block;
	overflow: hidden;
	border-radius: 6px;
	background: #ece8ee;
	min-height: 84px;
}

.pl-team-news__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 84px;
	object-fit: cover;
}

.pl-team-news__body {
	min-width: 0;
}

.pl-team-news__meta-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-bottom: 8px;
}

.pl-team-news__category {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 999px;
	background: rgba(55, 0, 60, 0.08);
	color: #37003c;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	text-decoration: none;
}

.pl-team-news__category:hover,
.pl-team-news__category:focus {
	background: #37003c;
	color: #fff;
}

.pl-team-news__date {
	color: #777;
	font-size: 12px;
}

.pl-team-news__item-title {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.35;
}

.pl-team-news__item-title a {
	color: #111;
	text-decoration: none;
}

.pl-team-news__item-title a:hover,
.pl-team-news__item-title a:focus {
	color: #37003c;
	text-decoration: underline;
}

.pl-team-news__excerpt {
	margin: 0 0 10px;
	color: #555;
	font-size: 14px;
	line-height: 1.55;
}

.pl-team-news__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.pl-team-news__tag {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 999px;
	background: rgba(0, 255, 135, 0.14);
	color: #006644;
	font-size: 11px;
	font-weight: 600;
	text-decoration: none;
}

.pl-team-news__tag:hover,
.pl-team-news__tag:focus {
	background: #00ff87;
	color: #111;
}

.pl-team-news__empty {
	margin: 0;
	padding: 18px 16px;
	background: #f7f5f8;
	border-radius: 6px;
	color: #555;
}

.pl-team-news__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid rgba(55, 0, 60, 0.08);
}

.pl-team-news__page-btn {
	min-width: 96px;
	padding: 10px 16px;
	border: 1px solid rgba(55, 0, 60, 0.18);
	border-radius: 999px;
	background: #fff;
	color: #37003c;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pl-team-news__page-btn:hover:not(:disabled),
.pl-team-news__page-btn:focus:not(:disabled) {
	background: #37003c;
	border-color: #37003c;
	color: #fff;
}

.pl-team-news__page-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.pl-team-news__page-status {
	min-width: 110px;
	text-align: center;
	color: #555;
	font-size: 13px;
	font-weight: 600;
}

@media (max-width: 767px) {
	.pl-team-news {
		padding: 20px 16px 16px;
	}

	.pl-team-news__item {
		grid-template-columns: 1fr;
	}

	.pl-team-news__thumb {
		max-height: 180px;
	}
}
