.gvhp-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 10px;
	margin: 1rem 0;
}

.gvhp-thumb {
	position: relative;
	border: none;
	padding: 0;
	margin: 0;
	background: none;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 4 / 3;
}

.gvhp-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.2s ease;
}

.gvhp-thumb:hover img {
	transform: scale(1.04);
}

.gvhp-thumb-label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 6px 8px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
	color: #fff;
	font-size: 12px;
	text-align: left;
}

.gvhp-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(20, 16, 10, 0.92);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gvhp-lightbox-content {
	max-width: 90vw;
	max-height: 85vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.gvhp-lightbox-content img {
	max-width: 90vw;
	max-height: 78vh;
	border-radius: 6px;
	display: block;
}

.gvhp-lightbox-caption {
	color: #f2ece0;
	font-size: 14px;
	margin-top: 10px;
	text-align: center;
}

.gvhp-lightbox-counter {
	color: #b8b0a2;
	font-size: 12px;
	margin-top: 2px;
	text-align: center;
}

.gvhp-full-grid {
	grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
}

.gvhp-lightbox-close,
.gvhp-lightbox-prev,
.gvhp-lightbox-next {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: #fff;
	cursor: pointer;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	font-size: 26px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gvhp-lightbox-close {
	top: 20px;
	right: 20px;
}

.gvhp-lightbox-prev {
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.gvhp-lightbox-next {
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

@media (max-width: 600px) {
	.gvhp-lightbox-prev,
	.gvhp-lightbox-next {
		width: 36px;
		height: 36px;
		font-size: 20px;
	}
}

.gvhp-cover-grid {
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.gvhp-cover-thumb .gvhp-thumb-label {
	font-size: 14px;
	font-weight: 600;
	padding: 10px 12px;
}

.gvhp-cover-thumb .gvhp-thumb-label small {
	display: block;
	font-size: 11px;
	font-weight: 400;
	color: #e6e6e6;
	margin-top: 2px;
}

.gvhp-bento {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 1.5rem 0;
}

.gvhp-bento .gvhp-cover-thumb {
	aspect-ratio: auto;
	height: 180px;
}

.gvhp-bento-wide {
	flex: 2 1 320px;
}

.gvhp-bento-narrow {
	flex: 1 1 180px;
}

@media (max-width: 640px) {
	.gvhp-bento-wide,
	.gvhp-bento-narrow {
		flex: 1 1 140px;
		height: 140px;
	}
}
