/**
 * Post Featured Posts V1 Block Styles
 * Styles for the Post Featured Posts V1 custom block
 *
 * @package made-to-thrive-2026-base
 * @since 1.0.0
 */

/* Main Container */
.post-featured-posts-v1-block {
	width: 100%;
	margin: 0 auto 50px;
	padding: 0 0 0;
}

/* Numbered List */
.post-featured-posts-v1-list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: post-featured-counter;
}

/* List Item */
.post-featured-posts-v1-item {
	counter-increment: post-featured-counter;
	margin-bottom: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	position: relative;
	padding-left: 58px;
}

.post-featured-posts-v1-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

/* Item Content */
.post-featured-posts-v1-item-content {
	display: flex;
	flex-direction: column;
	gap: 17px;
}

/* Number Badge */
.post-featured-posts-v1-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	color: #5b66c6;
	border-radius: 100px;
	border: 4px solid var(--CORNFLOWER, #5b66c6);
	flex-shrink: 0;
	position: absolute;
	top: 2px;
	left: 0;
	font-family: "Google Sans Flex";
	font-size: 32px;
	font-style: normal;
	font-weight: 800;
	line-height: 105%; /* 33.6px */
	text-transform: uppercase;
}

/* Post Title */
.post-featured-posts-v1-title {
	margin: 0;
	font-family: "Perfectly Nineties";
	font-size: 36px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 0.012rem;
	color: #5B66C6;
	margin-bottom: 0;
}

.post-featured-posts-v1-title-link {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.post-featured-posts-v1-title-link:hover,
.post-featured-posts-v1-title-link:focus {
	opacity: 0.8;
	text-decoration: underline;
}

.post-featured-posts-v1-title-link:focus {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

/* Write-up */
.post-featured-posts-v1-write-up {
	font-family: var(--wp--preset--font-family--google-sans-flex, "Google Sans Flex", sans-serif);
	font-size: 16px;
	line-height: 1.6;
	color: inherit;
	margin: 0;
}

.post-featured-posts-v1-write-up p {
	margin: 0 0 1em 0;
}

.post-featured-posts-v1-write-up p:last-child {
	margin-bottom: 0;
}

/* Post Card */
.post-featured-posts-v1-card {
	text-decoration: none;
	color: inherit;
	transition: all 0.2s ease;
	border-radius: 25px;
	border: 2px solid var(--SMOKED, #6D240B);
	background: var(--CORNFLOWER, #5B66C6);
	display: flex;
	width: 692px;
	height: 344px;
	padding: 20px 20px 19.946px 20px;
	justify-content: center;
	align-items: center;
	gap: 20px;
	color: var(--CREAM, #FFF7E4);
	text-align: center;
	font-family: "Perfectly Nineties";
	font-size: 26px;
	font-style: normal;
	font-weight: 300;
	line-height: 120%; /* 31.2px */
	letter-spacing: 0.52px;
	margin-top: 11px;
}


/* Post Card Image */
.post-featured-posts-v1-card-image {
	width: 53%;
	height: 100%;
	overflow: hidden;
	border-radius: 10px;
	background-color: rgba(0, 0, 0, 0.05);
}

.post-featured-posts-v1-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Post Card Title */
.post-featured-posts-v1-card-title {
	flex: 1;
}

.post-featured-posts-v1-card-title h4 {
	margin: 0;
	font-family: var(--wp--preset--font-family--google-sans-flex, "Google Sans Flex", sans-serif);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: inherit;
	color: var(--CREAM, #FFF7E4);
	text-align: center;
/* H4 */
	font-family: "Perfectly Nineties";
	font-size: 26px;
	font-style: normal;
	font-weight: 300;
	line-height: 120%; /* 31.2px */
	letter-spacing: 0.52px;
	padding: 0 30px 0 14px;
}

/* Responsive Design */
@media (max-width: 768px) {

}

@media (max-width: 550px) {
	.post-featured-posts-v1-card {
			width: 100%;
				display: block;
				height: auto;
				padding: 20px;
	}
	.post-featured-posts-v1-title {
	font-size:26px;
	}
	.post-featured-posts-v1-card-image {
	width: 100%;
	height: 200px;
	}
	.post-featured-posts-v1-card-title {
	width: 100%;
	display: block;
	padding: 20px 0 0;
	}
}

/* Accessibility: Ensure proper focus states */
.post-featured-posts-v1-card:focus-visible {
	outline: 3px solid var(--wp--preset--color--cornflower, #5B66C6);
	outline-offset: 2px;
}

.post-featured-posts-v1-title-link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
	border-radius: 2px;
}

/* Screen Reader Text (if needed) */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

/* Support for WP Core color classes */
.post-featured-posts-v1-block.has-background {
	padding: 2rem;
	border-radius: 4px;
}

@media (max-width: 768px) {
	.post-featured-posts-v1-block.has-background {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.post-featured-posts-v1-block.has-background {
		padding: 1rem;
	}
}








