.RRMEWMEW{
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(120px, 160px));
		gap: 1.5rem;
		margin: 0;
		margin-top: 0.5rem !important;
		padding: 0;
		list-style: none;

		font-family: "Iosevka Custom Web", "Iosevka Custom", Iosevka, "Bricolage Grotesque", "Space Grotesk", sans-serif, monospace;
		letter-spacing: -0.025em;
	}.RRMEWMEW li > a{
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 0.75rem;
		max-width: 160px;

		transform: translateY(0px);
		transition:
			transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
			filter 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

		&:hover {			
			opacity: 1;

			transform: translateY(-4px);
			filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.45)) 
							drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
		}

	}.RRMEWMEW .cover{
		width: 160px;
		height: 160px;
		border-radius: 15%;
		background: #38393d;
		object-fit: cover;
	}.RRMEWMEW .meta{
		display: flex;
		flex-direction: column;
		font-size: 0.875rem;
		color: #c3c7d1;
	}.RRMEWMEW .meta strong{
		font-weight: 600;
		font-size: 1rem;
		color: #e7e0e7;
	}.RRMEWMEW .loved{
		color: #a6b5f7;
	}.RRMEWMEW .meta strong,.RRMEWMEW .meta span{
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		word-break: break-word;
		text-overflow: ellipsis;
		max-width: 100%;
	}.RRMEWMEW .fm-more{
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		overflow: hidden;
		width: 100%;
		height: 100%;
		opacity: 0.75;

		background: #0d0e12;
		border: 1px solid #1f1e24;
		border-radius: 15%;
		font-size: 0.75rem;
		color: #e7e0e7;
		padding: 0.75rem;
		z-index: 0;

		@media (max-width: 930px) {
			display: none;
		}
	}.RRMEWMEW .fm-more::before{
		content: "→";
		position: absolute;
		color: transparent;
		font-size: 15rem;
		-webkit-text-stroke: 2px #29292e;
		z-index: -1;
	}