.mobile-collapsible[role=button]{
	appearance: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #000;
	transition: margin .3s ease;

	&::after{
		content: url(../../images/dropdown.svg);
		font-size: 0;
		transition: transform .3s ease;
	}

	&.opened{
		margin-bottom: 15px;
		&::after{
			transform: rotate(180deg);
		}
	}

	& + *{
		overflow: hidden;
		height: 0;
		transition: height .3s ease;
	}

	& + ul{
		flex-wrap: nowrap;
		gap: 15px;

		li:last-child{
			padding-bottom: 15px;
		}
	}
}