/*
 Theme Name:   Gallery Child
 Description:  A child theme for the Gallery theme
 Author:       Your Name
 Template:     gallery
 Version:      1.0.0
*/
/* 1. The Wrapper: Must be inline-block to shrink-wrap the image */
.custom-label-wrapper {
    position: relative !important;
    display: inline-block !important;
    vertical-align: bottom !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important; /* Removes the bottom ghost gap */
}

/* 2. The Image inside the wrapper */
.custom-label-wrapper img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

/* 3. The Text: Locked to the bottom of the wrapper */
.custom-image-text {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    
    /* Styling */
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,1) !important;
    background: none !important;
    
    /* Layout */
    padding: 10px !important;
    margin: 0 !important;
    z-index: 99 !important;
    pointer-events: none !important;
    
    /* Typography */
    font-size: 14px !important;
    font-weight: bold !important;
    text-align: center !important;
    line-height: 1.2 !important;
}