/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/* ============================================================
   Homepage design refinements — 2026-07-21
   ============================================================ */

/* Hero: soften pure-red highlights to a warmer brand orange-red
   (easier on the eyes against the dark hero, matches the Shop button) */
.stk-922ac88 .stk-block-heading__text mark {
	color: #ff5a36 !important;
}

/* Post cards (Recent Reads): gentle lift on hover for affordance */
.stk-block-posts article {
	transition: transform .25s ease, box-shadow .25s ease;
	border-radius: 8px;
}
.stk-block-posts article:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	.stk-block-posts article,
	.stk-block-posts article:hover {
		transition: none;
		transform: none;
	}
}

/* Accessibility: visible keyboard focus site-wide */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[role="button"]:focus-visible {
	outline: 2px solid #ff6b35 !important;
	outline-offset: 2px;
}

/* ============================================================
   Hero call-to-action buttons
   ============================================================ */
.tcs-hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}
.tcs-btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.2;
	text-decoration: none;
	transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.tcs-btn-primary {
	background-color: #ff5a36;
	color: #fff !important;
	border: 2px solid #ff5a36;
}
.tcs-btn-primary:hover {
	background-color: #e64a28;
	border-color: #e64a28;
	transform: translateY(-2px);
}
.tcs-btn-outline {
	border: 2px solid rgba(255, 255, 255, .7);
	color: #fff !important;
}
.tcs-btn-outline:hover {
	background-color: rgba(255, 255, 255, .12);
	border-color: #fff;
	transform: translateY(-2px);
}
@media (max-width: 767px) {
	.tcs-hero-cta { justify-content: center; }
	.tcs-btn { padding: 13px 22px; font-size: 15px; }
}

/* ============================================================
   Explore Popular Topics section (internal links)
   ============================================================ */
.tcs-explore {
	max-width: 1140px;
	margin: 20px auto 60px;
	padding: 44px 40px;
	background: #161616;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 16px;
}
.tcs-explore h2 {
	color: #fff;
	font-size: 32px;
	font-weight: 800;
	margin: 0 0 10px;
}
.tcs-explore > p {
	color: rgba(255, 255, 255, .75);
	font-size: 16px;
	margin: 0 0 26px;
	max-width: 640px;
}
.tcs-topic-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.tcs-topic-chips a {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .25);
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.tcs-topic-chips a:hover {
	background-color: #ff5a36;
	border-color: #ff5a36;
	transform: translateY(-2px);
}
@media (max-width: 767px) {
	.tcs-explore { padding: 32px 22px; margin: 10px 16px 40px; }
	.tcs-explore h2 { font-size: 24px; }
}

/* ============================================================
   Top Categories cards: readable sizes for the new H3 titles
   ============================================================ */
.stk-592ef48 .stk-block-heading__text,
.stk-4c586e3 .stk-block-heading__text,
.stk-9ae91ee .stk-block-heading__text {
	font-size: 20px !important;
	line-height: 1.35 !important;
}
.stk-a2f8734 .stk-block-text__text,
.stk-e224ee3 .stk-block-text__text,
.stk-9dc6d4b .stk-block-text__text {
	font-size: 15px !important;
	line-height: 1.7 !important;
}
