.ag-gallery-b015050e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ag-item-b015050e {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16 / 10;
    background: #f0f0f0;
    display: block; /* Important for <a> tags */
    text-decoration: none;
}

.ag-image-bg-b015050e {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
}

.ag-item-b015050e:hover .ag-image-bg-b015050e {
    transform: scale(1.05);
}

.ag-overlay-b015050e {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
}

.ag-title-b015050e {
    margin: 0;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
}

@media (max-width: 767px) {
    .ag-gallery-b015050e {
        grid-template-columns: 1fr;
    }
}