/* ==========================================================================
   Apple-inspired Design System
   Clean, minimal, with elegant typography and subtle animations
   ========================================================================== */

:root {
	/* Paleta Terra Semente */
	--color-primary: #A3502E;
	--color-primary-hover: #B26B24;
	--color-secondary: #8a8471;
	--color-text: #2B2B24;
	--color-text-muted: #6b6558;
	--color-heading: #042E00;
	--color-background: #FFFDF8;
	--color-background-secondary: #FBF8F1;
	--color-background-tertiary: #EFECE7;
	--color-border: #DCD5C4;
	--color-border-light: #E8E3D6;
	--color-success: #34c759;
	--color-warning: #ff9f0a;
	--color-error: #ff3b30;

	/* Tipografia */
	--font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
	--font-family-heading: "Fraunces", Georgia, serif;
	--font-weight-regular: 400;
	--font-weight-medium: 500;
	--font-weight-semibold: 600;
	--font-weight-bold: 700;

	/* Font sizes - fluid and responsive */
	--font-size-base: 1.0625rem;        /* 17px - improved readability */
	--font-size-sm: 0.9375rem;          /* 15px */
	--font-size-xs: 0.875rem;           /* 14px */
	--font-size-lg: 1.1875rem;          /* 19px */
	--font-size-xl: 1.375rem;           /* 22px */
	--font-size-h1: clamp(2.25rem, 5vw, 3.5rem);   /* 36px-56px - responsive */
	--font-size-h2: clamp(1.875rem, 4vw, 2.5rem);  /* 30px-40px */
	--font-size-h3: clamp(1.5rem, 3vw, 2rem);      /* 24px-32px */
	--font-size-h4: clamp(1.25rem, 2.5vw, 1.5rem); /* 20px-24px */
	--font-size-h5: 1.125rem;           /* 18px */
	--font-size-h6: 1rem;               /* 16px */

	/* Line heights for better readability */
	--line-height-base: 1.6;
	--line-height-tight: 1.3;
	--line-height-loose: 1.8;

	/* Spacing */
	--spacing-xs: 0.25rem;
	--spacing-sm: 0.5rem;
	--spacing-md: 1rem;
	--spacing-lg: 1.5rem;
	--spacing-xl: 2rem;
	--spacing-2xl: 3rem;
	--spacing-3xl: 4rem;

	/* Border radius */
	--radius-full: 999px;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 18px;
	--radius-xl: 22px;

	/* Shadows */
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

	/* Transitions */
	--transition-fast: 0.15s ease;
	--transition-normal: 0.25s ease;
	--transition-slow: 0.4s ease;
}

html {
	position: relative;
	min-height: 100%;
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--font-family);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-regular);
	color: var(--color-text);
	background-color: var(--color-background);
	padding-top: 56px;
	margin-bottom: 100px;
	line-height: var(--line-height-base);
	letter-spacing: -0.022em;
}

/* Skip link for accessibility */
.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--color-primary);
	color: #fff;
	padding: 8px 16px;
	z-index: 9999;
	transition: top var(--transition-normal);
	border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
	top: 0;
}

section {
	padding: 80px 0;
}

img {
	max-width: 100%;
	height: auto;
}

/* Links */
a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
	color: var(--color-primary-hover);
}

a:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
	border-radius: 4px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-semibold);
	letter-spacing: -0.01em;
	color: var(--color-heading);
}

h1.title {
	font-size: var(--font-size-h1);
	line-height: var(--line-height-tight);
	font-weight: var(--font-weight-bold);
	margin-bottom: 1.5rem;
}

h2.title {
	font-size: var(--font-size-h2);
	line-height: var(--line-height-tight);
	font-weight: var(--font-weight-semibold);
	margin-bottom: 1rem;
}

h2.title a,
h2.title a.text-dark {
	color: var(--color-heading) !important;
	text-decoration: none;
	transition: color var(--transition-fast);
}

h2.title a:hover {
	color: var(--color-primary);
}

/* Code blocks */
pre,
code {
	background: var(--color-background-tertiary);
	color: var(--color-text);
	font-family: "SF Mono", SFMono-Regular, ui-monospace, Menlo, Monaco, monospace;
	font-size: var(--font-size-sm);
	border-radius: var(--radius-sm);
}

pre {
	padding: var(--spacing-md);
	overflow-x: auto;
	border: 1px solid var(--color-border-light);
}

code {
	display: inline-block;
	padding: 0.125em 0.5em;
	line-height: 1.5;
}

/* Tables */
table {
	empty-cells: show;
	border: 1px solid var(--color-border-light);
	width: 100%;
	font-size: var(--font-size-base);
	margin-bottom: var(--spacing-md);
	border-collapse: collapse;
	border-radius: var(--radius-md);
	overflow: hidden;
}

thead {
	background-color: var(--color-background-tertiary);
	color: var(--color-text);
	text-align: left;
	vertical-align: bottom;
	font-weight: var(--font-weight-medium);
}

tr {
	display: table-row;
	vertical-align: inherit;
	border-color: inherit;
}

tbody tr:nth-child(even) {
	background-color: var(--color-background-secondary);
}

tbody tr:hover {
	background-color: var(--color-background-tertiary);
}

th,
td {
	padding: 0.75em 1em;
	border-bottom: 1px solid var(--color-border-light);
}

/* Blockquote */
blockquote {
	padding: var(--spacing-md) var(--spacing-lg);
	margin: var(--spacing-lg) 0;
	border-left: 4px solid var(--color-primary);
	font-style: italic;
	background-color: var(--color-background-secondary);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	color: var(--color-text-muted);
}

.bi {
	margin-right: 0.5rem !important;
}

/* Buttons */
.btn {
	font-weight: var(--font-weight-medium);
	border-radius: var(--radius-xl);
	padding: 0.5rem 1.25rem;
	transition: all var(--transition-fast);
	border: none;
}

.btn-primary {
	background: var(--color-primary);
	color: #fff;
}

.btn-primary:hover {
	background: var(--color-primary-hover);
	transform: scale(1.02);
}

.btn-outline-primary {
	background: transparent;
	color: var(--color-primary);
	border: 1.5px solid var(--color-primary);
}

.btn-outline-primary:hover {
	background: var(--color-primary);
	color: #fff;
}

.btn:focus {
	box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.3);
}

/* Paginator */
.paginator {
	margin-top: var(--spacing-2xl);
	margin-bottom: var(--spacing-3xl);
}

.paginator .pagination {
	gap: var(--spacing-sm);
}

.paginator .page-item .page-link {
	border: none;
	background: var(--color-background-tertiary);
	color: var(--color-text);
	border-radius: var(--radius-xl);
	padding: 0.5rem 1rem;
	font-weight: var(--font-weight-medium);
	transition: all var(--transition-fast);
}

.paginator .page-item .page-link:hover {
	background: var(--color-primary);
	color: #fff;
}

.paginator .page-item.disabled .page-link {
	background: var(--color-background-secondary);
	color: var(--color-text-muted);
}

.paginator .page-link:focus {
	box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.3);
}

/* ==========================================================================
   Navbar - Apple style frosted glass effect
   ========================================================================== */

.navbar {
	transition: background-color var(--transition-normal);
	backdrop-filter: saturate(180%) blur(20px);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	background-color: rgba(29, 29, 31, 0.8) !important;
}

.navbar-brand {
	font-weight: var(--font-weight-semibold);
	font-size: var(--font-size-h4);
	letter-spacing: -0.01em;
}

img.nav-svg-icon {
	width: 1rem;
	height: 1rem;
	padding-bottom: 2px;
	transition: opacity var(--transition-fast);
	filter: brightness(0) invert(1);
}

img.nav-svg-icon:hover {
	opacity: 0.7;
}

.nav-link {
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.02em;
	transition: color var(--transition-fast);
	padding: 0.5rem 0.75rem !important;
}

.nav-item.active .nav-link {
	font-weight: var(--font-weight-semibold);
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	min-height: 60px;
	padding: var(--spacing-lg) 0;
	font-size: 0.75rem;
	background-color: var(--color-background-tertiary) !important;
	color: var(--color-text-muted);
}

footer.footer.bg-dark {
	background-color: var(--color-background-tertiary) !important;
}

footer.footer .text-white {
	color: var(--color-text-muted) !important;
}

footer.footer a {
	color: var(--color-primary) !important;
}

footer.footer a:hover {
	color: var(--color-primary-hover) !important;
}

.mini-logo {
	height: 18px;
	padding-bottom: 3px;
	opacity: 0.8;
}

/* ==========================================================================
   Hero Section - Clean Modern Header
   ========================================================================== */

.hero {
	padding: 100px 0 60px;
	background: var(--color-background-secondary);
}

.hero-content {
	max-width: 680px;
	margin: 0 auto;
	text-align: center;
}

.hero-title {
	font-size: var(--font-size-h1);
	font-weight: var(--font-weight-bold);
	color: var(--color-text);
	margin-bottom: var(--spacing-sm);
	letter-spacing: -0.02em;
	line-height: var(--line-height-tight);
}

.hero-subtitle {
	color: var(--color-text-secondary);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-regular);
	line-height: var(--line-height-base);
	margin: 0 auto;
	max-width: 500px;
}

.hero-search {
	margin-top: var(--spacing-xl);
}

.search-input-wrapper {
	position: relative;
	max-width: 320px;
	margin: 0 auto;
}

.search-icon {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--color-text-muted);
	pointer-events: none;
}

.hero-search .form-control {
	border-radius: var(--radius-full);
	border: 1px solid var(--color-border);
	padding: 0.75rem 1rem 0.75rem 42px;
	font-size: var(--font-size-base);
	transition: all var(--transition-fast);
	background-color: var(--color-background-secondary);
	width: 100%;
}

.hero-search .form-control:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
	background-color: var(--color-background);
}

.hero-search .form-control::placeholder {
	color: var(--color-text-muted);
}

@media (min-width: 768px) {
	.hero {
		padding: 120px 0 80px;
	}

	.hero-subtitle {
		font-size: var(--font-size-xl);
	}
}

/* ==========================================================================
   Search form (for non-hero contexts)
   ========================================================================== */

.search-form .form-control {
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	padding: 0.625rem 1rem;
	font-size: var(--font-size-base);
	transition: all var(--transition-fast);
	background-color: var(--color-background);
}

.search-form .form-control:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15);
}

.search-form .btn {
	border-radius: var(--radius-lg);
}

/* ==========================================================================
   Home - Articles List
   ========================================================================== */

article.home-page {
	padding: var(--spacing-2xl) 0;
	border-bottom: 1px solid var(--color-border-light);
	position: relative;
	background: var(--color-background);
}

article.home-page:nth-child(even) {
	background: var(--color-background);
}

article.home-page:last-child {
	border-bottom: none;
}

article.home-page header {
	margin-bottom: var(--spacing-sm);
}

article.home-page h2.title {
	margin-bottom: var(--spacing-xs);
}

/* Fix: Article footer should not be positioned absolutely */
article.home-page footer.mt-3 {
	position: static;
	background: transparent !important;
	padding: 0;
	min-height: auto;
	width: auto;
	margin-top: var(--spacing-md) !important;
}

article.home-page footer.mt-3 small {
	font-size: var(--font-size-sm);
	color: var(--color-text-muted);
}

/* ==========================================================================
   Page article styles
   ========================================================================== */

article.page {
	padding: var(--spacing-2xl) 0;
}

.page-header {
	margin-bottom: var(--spacing-xl);
}

.page-meta {
	font-size: var(--font-size-base);
	color: var(--color-text-muted);
	display: flex;
	flex-wrap: wrap;
	gap: var(--spacing-md);
}

.page-meta span {
	display: inline-flex;
	align-items: center;
}

.page-cover-image-wrapper {
	margin-bottom: var(--spacing-xl);
}

.page-cover-image {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

.page-description {
	color: var(--color-text-muted);
	font-size: var(--font-size-lg);
	line-height: var(--line-height-loose);
	margin-bottom: var(--spacing-lg);
}

.page-content {
	font-size: var(--font-size-base);
	line-height: var(--line-height-loose);
}

.page-content img {
	border-radius: var(--radius-md);
	margin: var(--spacing-lg) 0;
	box-shadow: var(--shadow-sm);
}

.page-content p {
	margin-bottom: var(--spacing-lg);
}

.page-content h2,
.page-content h3,
.page-content h4 {
	margin-top: var(--spacing-2xl);
	margin-bottom: var(--spacing-md);
}

.page-excerpt {
	color: var(--color-text);
	line-height: var(--line-height-base);
}

/* ==========================================================================
   VIDEO EMBED RESPONSIVE
   ========================================================================== */

.video-embed {
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
	height: 0;
	margin: var(--spacing-lg) 0;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
}

.video-embed iframe {
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	border: none;
}

/* ==========================================================================
   Screen reader only - for accessibility
   ========================================================================== */

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	padding: inherit;
	margin: inherit;
	overflow: visible;
	clip: auto;
	white-space: normal;
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
	.navbar,
	footer.footer,
	.paginator,
	.btn,
	.search-form {
		display: none !important;
	}

	body {
		padding-top: 0;
		margin-bottom: 0;
		color: #000;
		background: #fff;
	}

	article.page,
	article.home-page {
		padding: 0;
	}

	a {
		color: #000;
		text-decoration: underline;
	}
}

/* ==========================================================================
   Reduce motion for users who prefer it
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* ==========================================================================
   Utility classes
   ========================================================================== */

.text-muted {
	color: var(--color-text-muted) !important;
}

.text-primary {
	color: var(--color-primary) !important;
}

/* ==========================================================================
   Breadcrumb Navigation (SEO)
   ========================================================================== */

.breadcrumb-nav {
	padding: var(--spacing-md) 0;
	background-color: var(--color-background-secondary);
	border-bottom: 1px solid var(--color-border-light);
}

.breadcrumb {
	font-size: var(--font-size-sm);
	margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
	content: "›";
	color: var(--color-text-muted);
}

.breadcrumb-item a {
	color: var(--color-primary);
	text-decoration: none;
}

.breadcrumb-item a:hover {
	text-decoration: underline;
}

.breadcrumb-item.active {
	color: var(--color-text-muted);
}

/* ==========================================================================
   Article Footer Fix (not the main footer)
   ========================================================================== */

.article-footer,
article.home-page footer.article-footer {
	position: static !important;
	background: transparent !important;
	padding: 0 !important;
	min-height: auto !important;
	width: auto !important;
	font-size: inherit !important;
}


/* ===== Cabeçalho padrão do site Terra Semente (adicionado) ===== */
.ts-header {
	position: sticky;
	top: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 48px;
	background: rgba(255, 253, 248, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(167, 156, 137, 0.35);
}

.ts-header-inner {
	width: 100%;
	max-width: 1280px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.ts-header-logo {
	display: flex;
	align-items: center;
}

.ts-header-logo img {
	height: 38px;
	width: auto;
	display: block;
}

.ts-header-nav {
	display: flex;
	align-items: center;
	gap: 30px;
	font-family: 'Quicksand', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.ts-header-nav a {
	color: #042E00;
	text-decoration: none;
	transition: color .2s ease;
}

.ts-header-nav a:hover {
	color: #A3502E;
}

.ts-header-cta {
	font-weight: 600 !important;
	font-size: 13px !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #FFFDF8 !important;
	background: linear-gradient(135deg, #B26B24 0%, #A3502E 100%);
	padding: 12px 22px;
	border-radius: 999px;
	transition: transform .3s, box-shadow .3s, background .3s;
	box-shadow: 0 4px 18px rgba(178, 107, 36, .35);
}

.ts-header-cta:hover {
	background: linear-gradient(135deg, #C77A2E 0%, #B26B24 100%) !important;
	color: #FFFDF8 !important;
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 8px 26px rgba(178, 107, 36, .6);
}

@media (max-width: 860px) {
	.ts-header {
		padding: 14px 20px;
	}
	.ts-header-inner {
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
	}
	.ts-header-nav {
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px 18px;
	}
}


/* ===== Estilos de conteudo do blog (Destaque com titulo / Citacoes) ===== */
.ts-callout-title {
	border-left: 4px solid #A3502E;
	padding: 0.25rem 0 0.25rem 1rem;
	margin: 1rem 0;
	font-family: "Fraunces", serif;
	font-weight: 700;
	font-size: 1.4rem;
	color: #042E00;
}

.ts-quote-light {
	background: #EFECE7;
	border-left: 4px solid #A3502E;
	border-radius: 4px;
	padding: 1.25rem 1.5rem;
	margin: 1rem 0;
	font-style: italic;
	color: #2B2B24;
	font-family: "Work Sans", sans-serif;
}

.ts-quote-dark {
	background: #042E00;
	border-left: 4px solid #B26B24;
	border-radius: 4px;
	padding: 1.25rem 1.5rem;
	margin: 1rem 0;
	font-style: italic;
	color: #FFFDF8;
	font-family: "Work Sans", sans-serif;
}


/* ==========================================================================
   Category filter bar (blog listing / category archive)
   ========================================================================== */

.category-filter {
	padding: var(--spacing-md) 0;
	margin-bottom: var(--spacing-lg);
	border-bottom: 1px solid var(--color-border-light);
}

.category-filter-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--spacing-sm);
	list-style: none;
	margin: 0;
	padding: 0;
}

.category-chip {
	display: inline-block;
	font-family: 'Quicksand', sans-serif;
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-medium);
	color: var(--color-text);
	background-color: var(--color-background-tertiary);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-full);
	padding: 0.35rem 0.9rem;
	text-decoration: none;
	transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.category-chip:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
	text-decoration: none;
}

.category-chip.active {
	background-color: var(--color-heading);
	border-color: var(--color-heading);
	color: #fff;
	font-weight: var(--font-weight-semibold);
}

/* ==========================================================================
   Category badge (per post, on listing and single post pages)
   ========================================================================== */

.post-category-badge {
	margin-bottom: var(--spacing-xs);
}

.post-category-badge a {
	display: inline-block;
	font-family: 'Quicksand', sans-serif;
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--color-primary);
	background-color: var(--color-background-secondary);
	border-radius: var(--radius-sm);
	padding: 0.2rem 0.6rem;
	text-decoration: none;
	transition: background-color var(--transition-fast), color var(--transition-fast);
}

.post-category-badge a:hover {
	background-color: var(--color-primary);
	color: #fff;
}


/* ===== Terra Semente: template do Workshop ===== */
.ws-page{padding:56px 24px 100px;}
.ws-card{max-width:1040px;margin:0 auto;display:grid;grid-template-columns:340px 1fr;gap:44px;background:var(--color-background-tertiary);border-radius:24px;padding:clamp(24px,4vw,44px);}
@media (max-width:760px){.ws-card{grid-template-columns:1fr;}}
.ws-photo-wrap{width:100%;aspect-ratio:3/4;border-radius:200px 200px 24px 24px;overflow:hidden;background:var(--color-border-light);}
.ws-photo-wrap img{width:100%;height:100%;object-fit:cover;display:block;}
.ws-titulo{margin:0 0 16px;font-family:var(--font-family-heading);font-weight:400;font-size:clamp(26px,3vw,34px);color:var(--color-heading);}
.ws-texto{
	margin:0 0 22px;font-size:16px;line-height:1.6;color:var(--color-text);font-family:var(--font-family);
	display:-webkit-box;-webkit-line-clamp:6;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;
	max-height:calc(1.6em * 6);
}
.ws-texto p{margin:0;}
.ws-fields{display:flex;flex-direction:column;gap:12px;}
.ws-field{display:flex;align-items:center;gap:12px;background:#E9E5DD;border-radius:12px;padding:13px 16px;font-family:'Quicksand',sans-serif;font-weight:600;font-size:15px;color:var(--color-heading);}
.ws-field[hidden]{display:none;}
.ws-field svg{flex:0 0 auto;}
.ws-whatsapp{background:#25D366;color:#fff;transition:filter .2s;cursor:pointer;}
.ws-whatsapp:hover{filter:brightness(1.06);}
.ws-whatsapp.disabled{opacity:.5;pointer-events:none;}

/* ==========================================================
   Workshop listing (grid) - /blog/category/workshop
   ========================================================== */
.ws-listing-grid{max-width:1040px;margin:0 auto;padding:0 24px 48px;display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:var(--spacing-xl);}
.ws-listing-card{display:flex;flex-direction:column;background:var(--color-background-secondary);border:1px solid var(--color-border-light);border-radius:var(--radius-xl);overflow:hidden;box-shadow:var(--shadow-sm);transition:transform .2s ease,box-shadow .2s ease;}
.ws-listing-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);}
.ws-listing-thumb{display:block;width:100%;aspect-ratio:4/3;background:var(--color-background-tertiary);overflow:hidden;}
.ws-listing-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s ease;}
.ws-listing-card:hover .ws-listing-thumb img{transform:scale(1.04);}
.ws-listing-body{display:flex;flex-direction:column;gap:var(--spacing-sm);flex:1;padding:var(--spacing-lg);}
.ws-listing-badge{align-self:flex-start;font-family:'Quicksand',sans-serif;font-size:var(--font-size-xs);font-weight:var(--font-weight-semibold);letter-spacing:.03em;text-transform:uppercase;color:var(--color-primary);background-color:var(--color-background-tertiary);border-radius:var(--radius-sm);padding:4px 10px;}
.ws-listing-title{margin:0;font-family:var(--font-family-heading);font-weight:400;font-size:1.35rem;line-height:1.25;color:var(--color-heading);}
.ws-listing-title a{color:inherit;text-decoration:none;}
.ws-listing-title a:hover{color:var(--color-primary);}
.ws-listing-excerpt{margin:0;font-family:var(--font-family);font-size:var(--font-size-sm);line-height:1.55;color:var(--color-text-muted);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;}
.ws-listing-meta{display:flex;gap:var(--spacing-sm);margin-top:2px;}
.ws-listing-chip{display:inline-flex;align-items:center;gap:6px;font-family:'Quicksand',sans-serif;font-weight:600;font-size:13px;color:var(--color-heading);background:var(--color-background-tertiary);border-radius:var(--radius-full);padding:5px 12px;}
.ws-listing-chip svg{width:14px;height:14px;flex:0 0 auto;color:var(--color-primary);}
.ws-listing-cta{margin-top:auto;padding-top:var(--spacing-sm);display:inline-flex;align-items:center;gap:6px;font-family:'Quicksand',sans-serif;font-weight:700;font-size:14px;color:var(--color-primary);text-decoration:none;}
.ws-listing-cta svg{width:15px;height:15px;transition:transform .2s ease;}
.ws-listing-cta:hover{color:var(--color-primary-hover);}
.ws-listing-cta:hover svg{transform:translateX(3px);}
@media (max-width:600px){.ws-listing-grid{grid-template-columns:1fr;padding:0 16px 32px;}}

/* ===== Terra Semente: cards de listagem do blog (titulo + foto, sem o post inteiro) ===== */
.home-page-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.home-page-link:hover,
.home-page-link:focus {
	text-decoration: none;
	color: inherit;
}

.home-page-cover-wrapper {
	margin-bottom: var(--spacing-md);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.home-page-cover {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s ease;
}

.home-page-link:hover .home-page-cover,
.home-page-link:focus .home-page-cover {
	transform: scale(1.02);
}

.home-page-link .title {
	transition: color 0.2s ease;
}

.home-page-link:hover .title,
.home-page-link:focus .title {
	color: var(--color-primary);
}
