/*****
Theme Name: MH Magazine Child Theme
Theme URI: https://www.mhthemes.com/themes/mh/magazine/
Description: This is a child theme for MH Magazine WordPress theme to make customizations much easier for you. By using this child theme you make sure, that you keep your changes after an update of the parent theme.
Author: MH Themes
Author URI: https://www.mhthemes.com/
Template: mh-magazine
Version: 1.0.0
License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*****/

/* Child Theme fix */
body {
    background-color: #515559;
}
.mh-site-logo .mh-header-text {
    display: none;
}

/* Post Banner */
.post-banner {
    padding-bottom: 30px;
}

/* Native Ad */
.mh-ad-native > div.g {
    display: flex;
    gap: 20px 2.5%;
    width: 100%;
    max-width: 100%;
}
.native-ad-text {
    padding-top: 10px;
}
.native-ad-text h3 {
    font-size: 18px;
    font-weight: 700;
}
.native-ad-text a {
    background-color: #149c6f;
    padding: 10px 15px;
    margin-top: 15px;
    display: inline-block;
    color: #fff;
}
.native-ad-text a:hover {
    color: #fff;
}
@media (max-width: 700px) {
    .mh-ad-native > div.g {
        flex-direction: column;
    }
}
/* TK: native <details> collapsibles (migrated from show-hide/collapse-expand plugin) */
.tk-collapse{border:1px solid #e2e2e2;border-radius:4px;margin:0 0 10px;padding:12px 16px;background:#fff}
.tk-collapse>summary{color:#149c6f;font-weight:700;cursor:pointer;list-style:none;display:block}
.tk-collapse>summary::-webkit-details-marker{display:none}
.tk-collapse>summary::before{content:"\25B8";display:inline-block;margin-right:.5em;color:#149c6f;transition:transform .15s ease}
.tk-collapse[open]>summary::before{transform:rotate(90deg)}
.tk-collapse>summary+*{margin-top:12px}
