/****************************************************************************
    * SG Assets. PHAR v133
    * Copyright © 2025 | Salon Guru LTD | https://www.salonguru.net/
    *
    * Use of this file without a license is prohibited. 
    *
****************************************************************************/

jQuery(document).ready(function($){resizeCatlist()});function resizeCatlist(){var element=jQuery('article .catlist');var wrapper='article';if(jQuery('.entry-content').length){element=jQuery('.entry-content .catlist');wrapper='.entry-content'}element.each(function(){var catListWidth=jQuery(wrapper).width();if(catListWidth>=1000){jQuery(this).find('.catlist-item').css('flex','0 1 24%')}if(catListWidth<1000){jQuery(this).find('.catlist-item').css('flex','0 1 32%')}if(catListWidth<900){jQuery(this).find('.catlist-item').css('flex','0 1 49%')}if(catListWidth<530){jQuery(this).find('.catlist-item').css('flex','0 1 99%')}if(catListWidth>=530){var highest=0;jQuery(this).find('h2').each(function(){var h2Height=jQuery(this).height();if(highest<h2Height){highest=h2Height}});jQuery('.catlist-title').css('height','calc(2rem + '+highest+'px)');jQuery(this).find('.catlist-image img').each(function(){var $this=jQuery(this);var imgWrapperWidth=$this.parents('.catlist-image').width();if($this.width()<$this.height()){$this.height(imgWrapperWidth).css('width','auto')}else{$this.width(imgWrapperWidth).width(imgWrapperWidth).height('auto');$this.parents('.catlist-image').height(imgWrapperWidth)}})}else{jQuery(this).find('.catlist-title, .catlist-image img').css('height','unset');jQuery(this).css('width','100%')}})}window.onresize=resizeCatlist;