#news {
	box-sizing: border-box;
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.25rem, 4.74vw + 0.19rem, 4.25rem);
	padding: var(--heading-topP) var(--sec-inlineP) clamp(1.25rem, 4.74vw + 0.19rem, 4.25rem);
	margin: 0;
}
.news-head { grid-column: 1; }
.news-head > h2 {
	color: var(--color-h2);
	font-size: clamp(2rem, 2.37vw + 1.47rem, 3.5rem);
	padding: 0 0 var(--heading-bottomP);
}
.news-head > p {
	font-size: clamp(1.25rem, 0.87vw + 1.06rem, 1.8rem);
	margin: 0;
}
.news-body {
	padding: 0;
	margin: 0;
}
.news:not(:first-child) { margin-top: var(--heading-topP); }
.news > h3 {
	text-align: center;
	font-size: 1.3rem;
	padding: 0.85em;
	margin: 0;
}
.picture {
	display: block;
	aspect-ratio: 1.6;
	width: 100%;
	object-fit: cover;
}
.news-content {
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 0 0.2rem rgba(0,0,0,0.25);
}
.text {
	--textM: 1.5rem;
	--text-maxH: 10rem;
	--read-moreF: 1rem;
	max-height: var(--text-maxH);
	position: relative;
	overflow: hidden;
	background-color: white;
  transition: all 0.3s ease-in;
}
.text > p { margin: var(--textM); }
.text > p:last-of-type { margin-bottom: calc(2 * var(--textM) + var(--read-moreF)); }
.read-more {
	position: absolute;
	bottom: 0;
	width: 100%;
	font-size: var(--read-moreF);
	line-height: 1;
	padding: calc(var(--text-maxH) - var(--textM) - var(--read-moreF)) 0 var(--textM);
	border: none;
	cursor: pointer;
	color: var(--color-h2);
	background: linear-gradient(to bottom, transparent, white 80%);
	transition: all 0.3s ease-in;
}
@media (min-width: 38em) {
	.text {
		--textM: 2rem;
	}
}
@media (min-width: 64em) {
	#news { grid-template-columns: 1fr 2fr; }
	.news-body {
		grid-column: 2;
	}
}