.wg-243d3f57-container {
    width: 100%;
}
.wg-243d3f57-top-label {
    font-family: 'Montserrat', sans-serif;
    font-variant: small-caps;
    color: #888888;
    margin-bottom: 20px;
}
.wg-243d3f57-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .wg-243d3f57-grid {
        grid-template-columns: 1fr;
    }
}
.wg-243d3f57-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.wg-243d3f57-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.wg-243d3f57-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}
.wg-243d3f57-item:hover .wg-243d3f57-overlay {
    opacity: 1;
}
.wg-243d3f57-item:hover .wg-243d3f57-img {
    transform: scale(1.05);
}
.wg-243d3f57-overlay-text {
    font-family: sans-serif;
    font-size: 16px;
    color: #000;
}
.wg-243d3f57-bottom-link-wrapper {
    text-align: center;
}
.wg-243d3f57-bottom-link {
    font-family: 'Montserrat', sans-serif;
    font-variant: small-caps;
    text-decoration: none;
    display: inline-block;
}
.wg-243d3f57-bottom-link:hover {
    text-decoration: underline;
}