/*
Theme Name: GeneratePress OA
Theme URI: https://oscararroliga.com
Description: Child theme of GeneratePress for Oscar Arróliga's WordPress services site.
Author: Oscar Arróliga
Template: generatepress
Version: 1.0.0
Requires PHP: 7.4
Text Domain: generatepress-oa
*/
/* =========================================
   Related Services callout (category archives)
   ========================================= */
.related-services-callout {
	background-color: #F6F3EC;
	border: 1px solid #0F4C4C;
	padding: 24px 28px;
	margin: 0 0 40px;
	position: relative;
}

/* corner bracket accent, top-left and bottom-right */
.related-services-callout::before,
.related-services-callout::after {
	content: "";
	position: absolute;
	width: 14px;
	height: 14px;
	border: 2px solid #0F4C4C;
}
.related-services-callout::before {
	top: -1px;
	left: -1px;
	border-right: none;
	border-bottom: none;
}
.related-services-callout::after {
	bottom: -1px;
	right: -1px;
	border-left: none;
	border-top: none;
}

.related-services-callout p {
	font-family: "DM Serif Display", Georgia, serif;
	font-size: 1.1em;
	color: #1C1C1C;
	margin: 0 0 12px;
}

.related-services-callout ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.related-services-callout li a {
	display: inline-block;
	font-family: "DM Sans", sans-serif;
	font-size: 0.9em;
	font-weight: 600;
	color: #0F4C4C;
	background: #fff;
	border: 1px solid #0F4C4C;
	padding: 8px 16px;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.related-services-callout li a:hover {
	background-color: #0F4C4C;
	color: #fff;
}

/* =========================================
   "We fix this" CTA block (single posts)
   ========================================= */
.cta-block {
	background-color: #1C1C1C;
	color: #F6F3EC;
	padding: 28px 32px;
	margin: 40px 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	position: relative;
}

.cta-block::before,
.cta-block::after {
	content: "";
	position: absolute;
	width: 14px;
	height: 14px;
	border: 2px solid #F6F3EC;
}
.cta-block::before {
	top: -1px;
	left: -1px;
	border-right: none;
	border-bottom: none;
}
.cta-block::after {
	bottom: -1px;
	right: -1px;
	border-left: none;
	border-top: none;
}

.cta-block p {
	font-family: "DM Sans", sans-serif;
	font-size: 1em;
	margin: 0;
}

.cta-block strong {
	font-family: "DM Serif Display", Georgia, serif;
	font-weight: normal;
	font-size: 1.15em;
}

.cta-block .btn-cta {
	font-family: "DM Sans", sans-serif;
	font-weight: 600;
	font-size: 0.95em;
	color: #1C1C1C;
	background-color: #F6F3EC;
	padding: 10px 22px;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease;
}

.cta-block .btn-cta:hover {
	background-color: #fff;
}

/* Mobile: stack CTA vertically at 375px baseline */
@media (max-width: 480px) {
	.cta-block {
		flex-direction: column;
		align-items: flex-start;
	}
	.related-services-callout ul {
		flex-direction: column;
	}
	.related-services-callout li a {
		display: block;
		text-align: center;
	}
}