.body .grid {
	display: grid;
	width: 100%;
	grid-auto-rows: 1fr;
	grid-column-gap: 3%;
	grid-row-gap: 4vh;
	grid-template-columns: repeat(3, 1fr);
	text-align: center;
}

.body .grid .item {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 4vh 3%;
	border-radius: 20px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.body .grid .item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
	transition: left 0.5s ease;
}

.body .grid .item:hover::before {
	left: 100%;
}

.body .grid .item:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
	            0 0 30px rgba(var(--theme-color-rgb, 255, 255, 255), 0.1);
}

.body .grid .item .avatar {
	display: inline-block;
	height: 15vh;
	width: 15vh;
	border-radius: 50%;
	background-color: rgba(15, 15, 15, 0.5);
	margin-bottom: 2vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border: 3px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.body .grid .item:hover .avatar {
	border-color: var(--theme-color, rgba(255, 255, 255, 0.3));
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4),
	            0 0 20px rgba(var(--theme-color-rgb, 255, 255, 255), 0.2);
}

.body .grid .item .information h1 {
	font-size: 2.8vh;
	color: #fff;
	margin: 0;
	margin-bottom: .5vh;
	font-weight: 600;
}

.body .grid .item .information h2 {
	font-size: 1.6vh;
	color: var(--theme-color, #aaa);
	margin: 0;
	font-weight: 500;
	margin-bottom: 1.5vh;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.body .grid .item .information h2 i {
	margin: 0 .25vw;
}

.body .grid .item .information p {
	font-size: 1.6vh;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	line-height: 1.6;
}

@media screen and (max-width: 600px), (orientation : portrait) {
	.body .grid {
		grid-template-columns: repeat(1, 1fr);
	}
}