/*
Theme Name: PIB-Theme
Theme URI: https://github.com/parthmaghara
Author: Techhub
Author URI: #
Description: A PIB WordPress theme development using Tailwind CSS
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: PIB-theme
*/

h2 {
    padding-bottom: 10px;
}

body {
    color: var(--color-body);
    font-family: var(--text-font-family) !important;
    font-size: var(--body-font-size);
}

h1, h2, h3, h4, h5 {
    font-family: var(--header-font-family) !important;
}

body h1 {
    font-size: var(--h1-font-size);
}
body h2 {
    font-size: var(--h2-font-size);
}
body h3 {
    font-size: var(--h3-font-size);
}

@media (max-width: 768px) {
    body h1 {
        font-size: var(--responsive-h1-font-size);
        line-height: 1.1;
    }
    body h2 {
        font-size: var(--responsive-h2-font-size);
        line-height: 1.2;
    }
    body h3 {
        font-size: var(--responsive-h3-font-size);
        line-height: 1.2;
    }
}