.czytajwiecej {
	position: relative;
}

.czytajwiecej__content {
	position: relative;
	overflow: hidden;
	max-height: var(--czytajwiecej-collapsed-height, 40px);
	transition: max-height .45s ease;
}

.czytajwiecej__inner > *:first-child {
	margin-top: 0;
}

.czytajwiecej__inner > *:last-child {
	margin-bottom: 0;
}

.czytajwiecej__gradient {
	position: absolute;
	left: 0;
	right: 0;
	height: 120px;
	background:linear-gradient(
to bottom,
rgba(255,255,255,0) 0%,
rgba(255,255,255,.5) 20%,
#fff 100%
);
	pointer-events: none;
	opacity: 1;
	transition: opacity .2s ease;
	z-index: 2;
}

.contrast .czytajwiecej__gradient {
	background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
}

.czytajwiecej__actions {
	margin-top: 15px;
	margin-bottom:15px;
}

.czytajwiecej__button {
	color: #ad163c;
	position: relative;
	padding-left: 40px;
	background: none !important;
	border: 0 !important;
	font-weight: bold;
	font-family: inherit !important;
	font-size: 100% !important;
	cursor: pointer;
	line-height: 1.4;
}

.czytajwiecej__button[aria-expanded="false"]:before {
	border-radius: 50px;
	transition: all .5s ease;
	content: '';
	width: 25px;
	height: 25px;
	position: absolute;
	left: 0;
	top: 0;
	background: #f59f36;
	box-shadow: 0 0 0 5px rgba(245, 159, 54, .25);
}

.czytajwiecej__button[aria-expanded="false"]:after {
	border-radius: 50px;
	transition: all .5s ease;
	content: '\2b';
	font-family: 'Font Awesome 6 Solid';
	width: 25px;
	height: 25px;
	position: absolute;
	left: 0;
	top: 0;
	line-height: 25px;
	text-align: center;
	font-size: 12px
	font-weight: bold;
	color: #fff;
}

.czytajwiecej__button[aria-expanded="true"]:before {
	border-radius: 50px;
	transition: all .5s ease;
	content: '';
	width: 25px;
	height: 25px;
	position: absolute;
	left: 0;
	top: 0;
	background: #727272;
	box-shadow: 0 0 0 5px rgba(114, 114, 114, .25);
}

.czytajwiecej__button[aria-expanded="true"]:after {
	border-radius: 50px;
	transition: all .5s ease;
	content: '\f068';
	font-family: 'Font Awesome 6 Solid';
	width: 25px;
	height: 25px;
	position: absolute;
	left: 0;
	top: 0;
	line-height: 25px;
	text-align: center;
	font-size: 12px
	font-weight: bold;
	color: #fff;
}
.czytajwiecej:not(.is-open) .czytajwiecej__content {
	user-select: none;
}

@media (prefers-reduced-motion: reduce) {
	.czytajwiecej__content,
	.czytajwiecej__gradient {
		transition: none;
	}
}