/*
Theme Name: zenifywp
Theme URI: https://github.com/mirageglobe/zenifywp
Description: This site was built using the zenifywp Theme by mirageglobe.com
Author: Jimmy MG Lim
Author URI: https://www.mirageglobe.com
Template: 
Version: 4.0.0
Text Domain: zenifywp
License: Apache License, Version 2.0
License URI: https://www.apache.org/licenses/LICENSE-2.0
Tags: microformats, responsive-layout, accessibility-ready, custom-menu, post-thumbnails, translation-ready

******************************************************************
MODERNIZED ZENIFYWP STYLESHEET
******************************************************************
*/

html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

:root {
	/* Color Palette */
	--zen-primary: #333;
	--zen-secondary: #f0f0f0;
	--zen-accent: #0073aa;
	--zen-text: #333;
	--zen-bg: #fff;
	--zen-border: #eee;

	/* Spacing */
	--zen-spacing-small: 0.5rem;
	--zen-spacing-medium: 1.5rem;
	--zen-spacing-large: 2rem;
}

/* WordPress Default CSS Styles
-------------------------------------------------------------- */
.alignnone {
	margin: var(--zen-spacing-small) var(--zen-spacing-large) var(--zen-spacing-large) 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: var(--zen-spacing-small) auto;
}

.alignright {
	float: right;
	margin: var(--zen-spacing-small) 0 var(--zen-spacing-large) var(--zen-spacing-large);
}

.alignleft {
	float: left;
	margin: var(--zen-spacing-small) var(--zen-spacing-large) var(--zen-spacing-large) 0;
}

.wp-caption {
	background: var(--zen-bg);
	border: 1px solid var(--zen-border);
	max-width: 100%;
	padding: var(--zen-spacing-small);
	text-align: center;
	margin-bottom: var(--zen-spacing-medium);
}

.wp-caption img {
	height: auto;
	max-width: 100%;
	width: auto;
}

.wp-caption-text {
	font-size: 0.8rem;
	line-height: 1.5;
	margin: var(--zen-spacing-small) 0;
}

/* Utility Classes */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: var(--zen-secondary);
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: var(--zen-accent);
	display: block;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Clearfix */
.clearfix::after {
	content: "";
	display: table;
	clear: both;
}

/* Layout Helper */
.mt-3 {
	margin-top: 1rem;
}

.mb-3 {
	margin-bottom: 1rem;
}