/* Container Grid */
.gwfv-grid {
    display: grid;
    gap: 25px;
    margin-top: 20px;
}

.gwfv-overview {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.gwfv-detail-view {
    grid-template-columns: repeat(4, 1fr);
}

/* Responsive adjustment for Detail View */
@media (max-width: 1024px) {
    .gwfv-detail-view { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .gwfv-detail-view { grid-template-columns: 1fr; }
}

/* Cards & Images */
.gwfv-image-wrapper, .gwfv-item a {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.gwfv-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gwfv-card:hover img, .gwfv-item:hover img {
    transform: scale(1.05);
}

/* Typography */
.gwfv-title, .gwfv-album-title {
    margin-top: 12px;
    color: #fff !important;
    text-decoration: none;	
	font-family: var(--e-global-typography-c369a37-font-family), serif;
    font-size: 24px !important;
    font-weight: 600;
    line-height: 1.3em;
}

.gwfv-card a {
    text-decoration: none;
}

.gwfv-back-link {
    display: inline-block;
    padding: 10px 0;
    margin-bottom: 15px;
    color: var(--e-global-color-accent) !important;
    text-decoration: none;
    font-weight: 500;
}

.gwfv-back-link:hover {
	color: #fff !important;
}