@media (max-width: 768px) {
	.pro-description-data-custom {
		max-height: 500px;
		overflow: hidden;
		position: relative;
		transition: max-height .4s ease;
	}
	
	.pro-description-data-custom::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 2.5em;
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
	}
	
	.read-more-btn {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		margin-top: 10px;
		background: #f3f3f3;
		color: #000;
		padding: 6px 14px;
		font-size: 14px;
		border-radius: 4px;
		text-decoration: none;
		transition: background .3s ease;
	}
	
	.read-more-btn:hover {
		background: #e0e0e0;
		color: #000;
	}
	
	.arrow-icon svg {
		transition: transform .3s ease;
	}
	
	.read-more-btn.active .arrow-icon svg {
		transform: rotate(180deg);
	}
}

@media (min-width: 769px) {
	.read-more-btn {
		display: none !important;
	}
}