/**
 * MyDodoLife — minimal placeholder layout styles.
 */

:root {
	--mdl-content-max-width: 1100px;
	--mdl-content-gutter: 2.5rem;
}

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

body {
	margin: 0;
	font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: #1a1a1a;
	background: #fff;
}

.site-container {
	width: min(100% - var(--mdl-content-gutter), var(--mdl-content-max-width));
	margin-inline: auto;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu a {
	text-decoration: none;
	color: inherit;
}

.footer-menu a:hover {
	text-decoration: underline;
}

#content.site-main {
	padding-block: 0;
	min-height: 50vh;
}

.site-article {
	margin-bottom: 2rem;
}

.entry-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.2;
}

.entry-meta {
	margin-bottom: 1rem;
	font-size: 0.875rem;
	color: #666;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.archive-header {
	margin-bottom: 2rem;
}

.archive-title {
	margin: 0 0 0.25rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.archive-description {
	margin: 0;
	color: #666;
}

/* Reusable check mark — use class "check-icon" in Elementor HTML / Icon List */
.check-icon {
	width: 26px;
	height: 26px;
	border: 2px solid currentColor;
	border-radius: 50%;
	position: relative;
	flex-shrink: 0;
  }
  
  .check-icon::after {
	content: "";
	position: absolute;
	width: 7px;
	height: 12px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	left: 8px;
	top: 4px;
  }

