/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/

/* JTT-434 #3 — Calendar "Impact Community" filter.
   The shortcode uses exp_so="yes" so the filter bar is shown expanded by default;
   the toggle button (evo-filter-btn) then becomes redundant, so hide it. */
#evcal_head .evo-filter-btn {
    display: none;
}

/* The filter dropdown caps at 300px by default, which truncates the last topic
   (Society). Let it grow to fit all Impact Community terms. */
.eventon_filter_dropdown {
    max-height: none;
}

/* Reserve height below the filter so its dropdown is not clipped by the footer
   when the event list is empty/short (e.g. a topic with no upcoming events). */
#evcal_list {
    min-height: 200px;
}

/* Salient's `.row .col p:last-child { padding-bottom: 0 }` strips the bottom
   padding of the last dropdown item (Society), making its cell too thin and
   clipping it. Restore EventON's own item padding (12px) on the last item. */
.eventon_filter_dropdown p.evo_filter_val:last-child {
    padding-bottom: 12px;
}


