/*
 Theme Name:     Astra Child Theme
 Description:    Tailgunner Child Theme
 Author:         Dana Edelman
 Template:       astra
 Version:        1.0.0
*/




.tpwpg-big {
    display: flex;
    align-items: center;  /* Vertically center the image */
    justify-content: center; /* Horizontally center the image */
    height: 400px;        /* Set the desired height for all big images */
    overflow: hidden;
    width: 100%;
}

/* Make images scale to fit container height */
.tpwpg-big img {
    max-width: 100%;      /* Keep within container width */
    object-fit: cover;
    display: block;
    vertical-align: top;  
    height: 400px !important;
}

.tpwpg-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    overflow: hidden;
}

.tpwpg-thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; /* ensure it fills container without distortion */
}