.ngg-albums-wrapper {
	font-family: 'Inter', Sans-serif;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	justify-items: center;
}
@media (max-width: 992px) {
	.ngg-albums-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.ngg-albums-wrapper {
		grid-template-columns: repeat(1, 1fr);
	}
}
.ngg-card {
	border: 1px solid #ddd;
	border-radius: 24px;
	background-color: #fff;
	overflow: hidden;
	text-align: center;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
	display: flex;
	flex-direction: column;
	height: 100%;
	-webkit-box-shadow: 0px 0px 50px 0px rgba(146, 69, 69, 0.15) !important;
}
.ngg-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.ngg-head {
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden;
}
.ngg-head img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 24px;
	object-fit: cover;
	display: block;
}
.ngg-card h3 {
	font-family: 'Inter', Sans-serif;
	font-size: 18px;
	font-weight: 800;
	line-height: 24px;
	color: #222222;
}
.ngg-album-title {
	font-family: 'Inter', Sans-serif;
	font-size: 24px;
	font-weight: 900;
	line-height: 24px;
	color: #26529d;
}
.ngg-card p {
	color: #222222;
	font-family: 'Inter', Sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
	padding-bottom: 15px;
}
.ngg-card a {
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: none;
	transition: 250ms;
	color: #ffffff !important;
	background-color: #26529d;
	border-radius: 100px;
	padding: 8px 20px 8px 20px;
	margin-top: auto;
	align-self: center;
}
.ngg-card a:hover {
	background-color: #1a386c;
}
.ngg-card .ngg-head {
	padding: 0;
	margin: 0;
}
.ngg-card .ngg-body {
	padding: 25px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
