@charset "UTF-8";

@media all {
	#content {
		scroll-margin-top: 50px;
	}

	.sidebar-filter .submit-container {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.sidebar-filter a.reset {
		text-decoration: none;
	}

	.sidebar-filter a.reset:hover {
		text-decoration: underline;
	}

	#search-form details.multi-select summary.multi-select-title {
		display: flex;
		align-items: center;
		justify-content: space-between;
		list-style-type: none;
	}

	details.multi-select:not([open]) > summary > svg {
		transform: rotate(0deg);
	}

	details.multi-select[open] > summary > svg {
		transform: rotate(90deg);
	}

	#search-form details.multi-select summary.multi-select-title svg {
		height: 25px;
		width: 25px;
		display: inline-block;
	}

	.order-filter {
		margin-bottom: 30px;
	}

	.news-list h2 {
		margin-bottom: 10px;
		font-size: 26px;
		font-weight: var(--font-weight-bold);
	}

	.news-list .medium-news > p:not(:first-child),
	.news-list .medium-news.show > p:first-child,
	.news-list .medium-news button span:not(:first-of-type),
	.news-list .medium-news button span:not(:first-of-type) svg,
	.news-list .medium-news.show button span:first-of-type,
	.news-list .medium-news.show button span:first-of-type svg {
		display: none;
	}

	.news-list .medium-news.show button span:not(:first-of-type),
	.news-list .medium-news.show button span:not(:first-of-type) svg {
		display: initial;
	}

	.news-list .medium-news.show > p:not(:first-child) {
		display: block;
	}

	.news-list .medium-news button {
		height: unset;
		background-color: transparent;
		padding: 0;
		color: var(--highlight-text-color);
		font-size: 20px;
		font-weight: var(--font-weight-bold);
	}

	.news-list .medium-news button svg {
		margin-left: 5px;
		fill: var(--highlight-text-color);
	}

	.news-list a,
	.news-footer a {
		font-size: 20px;
	}

	.news-footer {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: column;
		row-gap: 60px;
		margin-top: 70px;
	}

	.news-footer .spinner-container + label span {
		margin-left: 10px;
		color: var(--highlight-text-color);
		font-size: 20px;
	}
}

@media (min-width: 1200px) {
	#content {
		scroll-margin-top: 120px;
	}

	.news-footer {
		flex-direction: row;
	}
}