/*
* FooGallery Custom CSS
* This file is created by adding custom CSS on FooGallery Settings page in wp-admin
* Created : 27 Oct 2025, 2:20 pm
*/

/*----------------------------------------------------------*
    FONTS For FooGallery Captions on Rollover (trog 04-29-25)
*-----------------------------------------------------------*/

.fg-item .fg-caption-title {
  font-size: 10px;    
  text-transform: none;
  letter-spacing: 2px;
  font-family: Tinos;
}

/*----------------------------------------------------------*
    Fixes for overflowing captions
*-----------------------------------------------------------*/

.foogallery .fg-item-inner:not(:hover) .fg-caption-title {
 visibility: hidden
}

.foogallery .fg-item-inner:hover .fg-caption-title {
  font-size: 20px;
}

@media all and (max-width: 650px) {
  
  .foogallery .fg-item-inner .fg-caption-title, .foogallery .fg-item-inner:hover .fg-caption-title {
    font-size: 16px !important;
    line-height: 1.2
  }
  
}