/* ===================================
   Base Styles
   Fonts, Reset, Typography
   =================================== */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700&display=swap');

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* WordPress Blocks */
:where(.wp-block-columns) {
    margin-bottom: 1.75em;
}

/* WordPress Blocks with Background */
:where(.wp-block-group.has-background),
:where(.wp-block-columns.has-background) {
    padding: 1.25em 2.375em;
}

/* WordPress List Block */
.wp-block-list {
    padding-left: 20px;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .wp-block-heading br {
        display: none;
    }
}
