/*
Theme Name: Botiga
Theme URI: https://wordpress.org/themes/botiga/
Description: A WordPress theme.
Version: 1.0
Author: WordPress.org
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Template: pressbook
Text Domain: botiga
*/
/* ============================================================
   CSS Custom Properties — set per-subdomain via inline <style>
   The tsd- prefix is rewritten to the per-site token by the
   theme publisher (e.g. .tsd- → .t205351-).
   ============================================================ */
:root {
	--t8caff0-color-primary: #2563eb;
	--t8caff0-color-secondary: #1e40af;
	--t8caff0-color-text: #1e293b;
	--t8caff0-color-text-muted: #64748b;
	--t8caff0-color-bg: #ffffff;
	--t8caff0-color-surface: #f8fafc;
	--t8caff0-color-border: #e2e8f0;
	--t8caff0-color-link: var(--t8caff0-color-primary);
	--t8caff0-color-link-hover: var(--t8caff0-color-secondary);
	--t8caff0-color-accent: #f59e0b;
	--t8caff0-font-size-base: 16px;
	--t8caff0-line-height: 1.7;
	--t8caff0-font-headings: inherit;
	--t8caff0-font-body: inherit;
	--t8caff0-content-width: 1200px;
	--t8caff0-sidebar-width: 300px;
}

/* Subdomain-specific layout classes */
.t8caff0-layout-sidebar-right .t8caff0-content-area {
	display: grid;
	grid-template-columns: 1fr var(--t8caff0-sidebar-width);
	gap: 2rem;
	max-width: var(--t8caff0-content-width);
	margin: 0 auto;
	padding: 1rem;
}

.t8caff0-layout-sidebar-left .t8caff0-content-area {
	display: grid;
	grid-template-columns: var(--t8caff0-sidebar-width) 1fr;
	gap: 2rem;
	max-width: var(--t8caff0-content-width);
	margin: 0 auto;
	padding: 1rem;
}

.t8caff0-layout-full-width .t8caff0-content-area {
	max-width: var(--t8caff0-content-width);
	margin: 0 auto;
	padding: 1rem;
}

.t8caff0-header-branding {
	text-align: var(--t8caff0-header-align, center);
	padding: 1rem 0;
}

.t8caff0-header-branding .t8caff0-site-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--t8caff0-color-primary);
	margin: 0;
	line-height: 1.2;
}

.t8caff0-header-branding .t8caff0-site-tagline {
	color: var(--t8caff0-color-text-muted);
	font-size: 0.9rem;
	margin: 0.25rem 0 0;
}

.t8caff0-post-card {
	border-bottom: 1px solid var(--t8caff0-color-border);
	padding: 1.5rem 0;
}

.t8caff0-post-card:last-child {
	border-bottom: none;
}

.t8caff0-post-card .t8caff0-post-title {
	font-size: 1.25rem;
	margin: 0 0 0.5rem;
}

.t8caff0-post-card .t8caff0-post-title a {
	color: var(--t8caff0-color-text);
	text-decoration: none;
}

.t8caff0-post-card .t8caff0-post-title a:hover {
	color: var(--t8caff0-color-link);
}

.t8caff0-post-meta {
	font-size: 0.85rem;
	color: var(--t8caff0-color-text-muted);
	margin-bottom: 0.75rem;
}

.t8caff0-post-excerpt {
	line-height: var(--t8caff0-line-height);
	color: var(--t8caff0-color-text);
}

.t8caff0-btn {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 0.375rem;
	transition: all 0.2s ease;
	cursor: pointer;
	border: none;
}

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

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

.t8caff0-site-footer {
	text-align: center;
	padding: 2rem 1rem;
	color: var(--t8caff0-color-text-muted);
	font-size: 0.85rem;
	border-top: 1px solid var(--t8caff0-color-border);
	margin-top: 2rem;
}

@media (max-width: 768px) {
	.t8caff0-layout-sidebar-right .t8caff0-content-area,
	.t8caff0-layout-sidebar-left .t8caff0-content-area {
		grid-template-columns: 1fr;
	}

	.t8caff0-header-branding .t8caff0-site-title {
		font-size: 1.4rem;
	}
}
