.assets-wrapper .assets-items-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(245px, 1fr) );
	grid-auto-flow: dense;
	grid-gap: 20px;
}

.assets-wrapper .assets-item-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #F8F8F8;
	border-radius: 9px;
	box-shadow: 0 0 15px rgb(0 0 0 / 15%);
	padding: 1em;
}


.assets-wrapper .assets-icon-title-container::after {
	position: absolute;
	right: 0;
	content: "";
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--e-global-color-secondary);
	border-bottom: 2px solid var(--e-global-color-secondary);
	transform: rotate(45deg);
	transition: transform 0.3s ease;
}

.assets-wrapper .assets-icon-title-container.open::after {
	transform: rotate(-135deg);
}

.assets-wrapper .assets-icon-title-container {
	position: relative;
	display: flex;
	align-items: center;
	column-gap: 10px;
	cursor: pointer;
	margin-left: 0.5em;
}

.assets-wrapper .assets-icon-title-container svg {
	width: calc(25px + (30 - 25) * ((100vw - 320px) / (1920 - 320)));
	height: 50px;
}

.assets-wrapper .assets-item-title {
	font-size: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
	font-weight: 500;
	color: var(--e-global-color-secondary);
}

.assets-wrapper .assets-item-description-container {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	max-height: 0;
	transition: opacity 0.15s ease-out, visibility 0s linear 0.15s, max-height 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
	overflow: hidden;
}

.assets-wrapper .assets-item-description-container--is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	max-height: 350px;
}

.assets-wrapper .assets-item-description-container p {
	padding-top: 1em;
}
