/* Container layout */
.ajwilds-gallery-widget {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Left side layout */
.ajwilds-left {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.ajwilds-featured {
    width: 100%;
    max-width: 300px;
    border-radius: 6px;
    margin-bottom: 20px;
    object-fit: cover;
}

.ajwilds-title {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.ajwilds-full-gallery-btn,
.ajwilds-see-more-btn {
    display: block;
    width: 100%;
    max-width: 220px;
    padding: 10px 16px;
    margin-bottom: 12px;
    text-align: center;
    background: #333;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
}

/* Right side grid */
.ajwilds-right {
    flex: 1;
    min-width: 300px;
}

.ajwilds-masonry-grid {
    column-count: 3;
    column-gap: 12px;
}

.ajwilds-masonry-grid a {
    break-inside: avoid;
    display: inline-block;
    width: 100%;
}

.ajwilds-masonry-grid img {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    border-radius: 4px;
    object-fit: cover;
}

/* Orientation classes */
.landscape,
.portrait {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Hide all images after the first 9 */
#ajwilds-grid > a:nth-child(n+10) {
    display: none !important;
}