/* Make all post and page titles dark black */
.entry-title, .page-title, .site-title a {
	color: #000000 !important;
}

/* Uniform body text for all posts */
.entry-content p,
.entry-content li,
.entry-content td,
.entry-content blockquote {
	font-family: "Georgia", serif;
/* Change if needed */
	font-size: 18px;
/* Match your newest post */
	line-height: 1.7;
	color: #000000;
}

/* Uniform heading styles (H1, H2, H3…) */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	font-family: "Georgia", serif;
/* Match your most recent post */
	font-weight: 700;
	color: #000000;
}

/* Make titles identical across all posts */
.entry-title {
	font-family: "Georgia", serif;
	font-size: 36px;
	font-weight: 700;
	color: #000000 !important;
}

/* Make the site tagline dark black */
.site-description {
	color: #000000 !important;
}

/* Make the site tagline match the site's red accent color */
.site-description {
	color: #cc2e2e !important;
}

/* Center the site title and tagline */
.site-title,
.site-description {
	text-align: center;
}

/* Make the site title larger */
.site-title a {
	font-size: 42px;
/* Increase/decrease as needed */
	font-weight: 700;
}

/* Make the tagline larger */
.site-description {
	font-size: 20px;
/* Increase/decrease as needed */
	font-weight: 500;
}

/* Overall page: narrower, like a paper column */
.site {
	max-width: 1100px;
	margin: 0 auto;
	background: #ffffff;
	padding: 20px 40px;
}

/* Subtle page background, like paper around content */
body {
	background: #f1f1f1;
}

/* Newspaper-style site title */
.site-title a {
	font-family: "Georgia", "Times New Roman", serif;
	font-size: 46px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

/* Tagline below title */
.site-description {
	font-family: "Georgia", "Times New Roman", serif;
	font-size: 18px;
	font-style: italic;
}

/* Post & page titles: bold, black, newspaper-ish */
.entry-title {
	font-family: "Georgia", "Times New Roman", serif;
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #000000;
	border-bottom: 1px solid #999999;
	padding-bottom: 8px;
	margin-bottom: 12px;
}

/* Meta info under titles: small, all caps, gray */
.entry-meta {
	font-family: "Georgia", "Times New Roman", serif;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #777777;
	margin-bottom: 20px;
}

/* Center all post and page titles */
.entry-title {
	text-align: center;
	width: 100%;
}

.power-fist {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 2px solid #000000;
/* black circle outline */
	margin-right: 10px;
}

.power-fist::before {
	content: "✊";
	font-size: 30px;
	color: #000000;
}

/* Slightly smaller site title */
.site-title {
	text-align: center;
	font-size: 34px;
/* adjust this number to your liking */
	font-weight: 700;
}

/* Slightly bigger tagline */
.site-description {
	font-size: 20px;
/* adjust this number as needed */
	font-weight: 500;
	text-align: center;
}

/* Default desktop size (adjust if needed) */
.site-title {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
}

/* MOBILE: shrink site title for screens under 600px */
@media only screen and (max-width: 600px) {
	.site-title {
		font-size: 24px;
	/* smaller mobile size */
		letter-spacing: .05em;
	}
	
	/* If your fist icon is attached to the title, shrink it too */
	.site-title::before {
		font-size: 32px;
		margin-bottom: 6px;
	}
	
	/* Tagline also slightly smaller for mobile */
	.site-description {
		font-size: 16px;
	}
}

/* Desktop */
.site-title {
	font-size: 30px;
/* you can adjust if you want */
	font-weight: 700;
	text-align: center;
}

/* MOBILE — even smaller title */
@media only screen and (max-width: 600px) {
	.site-title {
		font-size: 18px;
	/* reduced from 24px → very clean and compact */
		letter-spacing: .04em;
	}
	
	.site-title::before {
		font-size: 24px;
	/* smaller fist icon */
		margin-bottom: 4px;
	}
	
	/* tagline also scaled down */
	.site-description {
		font-size: 14px;
	}
}

.entry-title {
	text-align: center;
}

.single-post .entry-title {
	max-width: 700px;
/* adjust width as needed */
	margin: 0 auto;
/* centers the title block */
	text-align: left;
/* left-align wrapped lines */
}

/* Block themes (FSE) */
.wp-block-post-title {
	max-width: 700px;
/* controls line length so wrapping looks intentional */
	margin: 0 auto;
/* centers the title block */
	text-align: center;
/* centers every line */
	text-wrap: balance;
/* balances line breaks (best for headlines) */
}

/* Classic themes */
.single-post .entry-title {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	text-wrap: balance;
}