/* =========================================================================
   BillTheme - main.css
   GeneratePress-inspired, clean & fast. All colors via CSS variables.
   ========================================================================= */

:root {
	--bt-primary: #2c5364;
	--bt-primary-2: #0f2027;
	--bt-accent: #d59022;
	--bt-body-bg: #f4f7f6;
	--bt-text: #2b2b2b;
	--bt-footer-bg: #171717;
	--bt-container: 1240px;

	--bt-card-bg: #ffffff;
	--bt-muted: #62717a;
	--bt-border: #e4ebef;
	--bt-radius: 14px;
	--bt-shadow: 0 5px 18px rgba(0, 0, 0, 0.045);
	--bt-shadow-lg: 0 12px 35px rgba(0, 0, 0, 0.11);

	--bt-font-head: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, sans-serif;
	--bt-font-body: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body {
	margin: 0 !important;
	padding: 0 !important;
	background: var(--bt-body-bg);
	color: var(--bt-text);
	font-family: var(--bt-font-body);
	line-height: 1.65;
	font-size: 17px;
	overflow-x: hidden;
}

/* Kill any phantom block-layout top spacing WP / plugins may inject */
body > .skip-link + #masthead,
body > #masthead { margin-top: 0 !important; }

/* Hide empty plugin-injected wrappers that sit between <body> and <header> */
body > div:empty,
body > p:empty,
body > span:empty { display: none !important; }

/* Pull masthead to the top no matter what comes before it */
#masthead { margin-top: 0 !important; }
.site-header { margin-top: 0 !important; }

/* Logged-in admin bar: WP wants 32px (or 46px on mobile). Keep that. */
body.admin-bar #masthead { margin-top: 0; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--bt-font-head);
	line-height: 1.25;
	color: #1f2c33;
}

a { color: var(--bt-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.bt-container {
	max-width: var(--bt-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px;
	overflow: hidden;
}
.skip-link {
	position: absolute; left: -9999px; top: 0;
	background: #fff; padding: 10px 16px; z-index: 9999;
}
.skip-link:focus { left: 10px; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
	background: #fff;
	border-bottom: 1px solid var(--bt-border);
	box-shadow: 0 1px 8px rgba(0,0,0,0.03);
}
body.sticky-header .site-header {
	position: sticky; top: 0; z-index: 999;
}
.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 16px;
	padding-bottom: 16px;
}
.site-title { margin: 0; font-size: 1.5rem; font-weight: 800; }
.site-title a { color: var(--bt-primary); text-decoration: none; }
.site-description { margin: 2px 0 0; font-size: 0.82rem; color: var(--bt-muted); }
.custom-logo { max-height: 56px; width: auto; }

/* Navigation */
.main-navigation ul {
	list-style: none; margin: 0; padding: 0;
	display: flex; gap: 6px; align-items: center;
}
.main-navigation li { position: relative; }
.main-navigation a {
	display: block; padding: 10px 14px;
	color: #2b3a42; font-weight: 600; font-size: 0.95rem;
	border-radius: 8px; text-decoration: none;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
	background: #eef4f6; color: var(--bt-primary);
}
/* Sub menus */
.main-navigation ul ul {
	display: none;
	position: absolute; top: 100%; left: 0;
	background: #fff; min-width: 200px;
	box-shadow: var(--bt-shadow-lg);
	border-radius: 10px; padding: 8px; flex-direction: column;
	z-index: 50;
}
.main-navigation li:hover > ul { display: flex; }
.main-navigation ul ul a { padding: 8px 12px; }

.menu-toggle {
	display: none;
	background: var(--bt-primary); border: 0; cursor: pointer;
	width: 44px; height: 44px; border-radius: 10px;
	flex-direction: column; gap: 4px; align-items: center; justify-content: center;
	transition: background .2s ease;
	padding: 0;
}
.menu-toggle:hover { background: var(--bt-primary-2); }
.menu-toggle-bar {
	width: 20px; height: 2px; background: #fff; display: block;
	border-radius: 2px;
	transition: transform .25s ease, opacity .2s ease;
	transform-origin: center;
}
/* Hamburger -> X when open */
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================================
   LAYOUT - content + sidebar
   ========================================================================= */
.site-content {
	display: grid;
	gap: 38px;
	padding-top: 40px;
	padding-bottom: 56px;
	align-items: start;
}
.site-content.has-sidebar {
	grid-template-columns: minmax(0, 1fr) 320px;
}
.site-content.no-sidebar {
	grid-template-columns: minmax(0, 1fr);
}
@media (max-width: 900px) {
	.site-content.has-sidebar { grid-template-columns: 1fr; }
}

.page-header { margin-bottom: 26px; }
.page-title { font-size: 2rem; font-weight: 800; color: var(--bt-primary); }
.archive-description { color: var(--bt-muted); margin-top: 8px; }

/* =========================================================================
   POSTS GRID + CARDS (blog)
   ========================================================================= */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}
.no-sidebar .posts-grid {
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.post-card {
	background: var(--bt-card-bg);
	border-radius: var(--bt-radius);
	box-shadow: var(--bt-shadow);
	overflow: hidden;
	display: flex; flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease;
	border: 1px solid #eef1f3;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--bt-shadow-lg); }
.post-card .post-thumbnail img { width: 100%; height: 190px; object-fit: cover; }
.post-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card .entry-title { font-size: 1.2rem; margin: 0 0 8px; }
.post-card .entry-title a { color: #1f2c33; text-decoration: none; }
.post-card .entry-title a:hover { color: var(--bt-primary); }
.entry-meta { font-size: 0.82rem; color: var(--bt-muted); margin-bottom: 10px; }
.entry-meta a { color: var(--bt-muted); }
.entry-summary { color: #54636b; font-size: 0.95rem; flex: 1; }
.read-more, .btn-text {
	margin-top: 14px; font-weight: 700; color: var(--bt-primary);
	font-size: 0.92rem; align-self: flex-start;
}

/* =========================================================================
   SINGLE POST / PAGE
   ========================================================================= */
.single-post, .single-page {
	background: #fff;
	border-radius: 16px;
	box-shadow: var(--bt-shadow);
	padding: 40px;
	border: 1px solid #eef1f3;
}
.single-post .entry-category {
	margin: 0 0 12px;
}
.single-post .entry-category a {
	display: inline-block;
	background: var(--bt-primary); color: #fff;
	padding: 4px 12px; border-radius: 20px;
	font-size: 0.78rem; font-weight: 700; letter-spacing: 0.3px;
	text-transform: uppercase; text-decoration: none;
	margin-right: 6px;
}
.single-post .entry-category a:hover { background: var(--bt-primary-2); }
.single-post .entry-title, .single-page .entry-title {
	font-size: 2.1rem; font-weight: 800; margin: 0 0 12px;
}
.single-post .entry-meta {
	display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
	color: var(--bt-muted); font-size: 0.88rem; margin: 0 0 8px;
}
.single-post .entry-meta .updated-on {
	display: inline-flex; align-items: center; gap: 6px;
	background: #f1f6f8; color: #2c5364;
	padding: 5px 11px; border-radius: 18px; font-weight: 600;
}
.single-post .entry-meta .meta-ico { color: var(--bt-primary); }
.single-post .entry-meta .byline a { color: var(--bt-primary); font-weight: 600; }
.single-post .post-thumbnail, .single-page .post-thumbnail { margin: 18px 0 26px; }
.single-post .post-thumbnail img, .single-page .post-thumbnail img {
	border-radius: 12px; width: 100%; object-fit: cover;
}
.entry-content { font-size: 1.02rem; color: #3f4d54; }
.entry-content h2 { font-size: 1.6rem; color: var(--bt-primary); margin: 30px 0 14px; }
.entry-content h3 { font-size: 1.25rem; color: #263f4b; margin: 24px 0 10px; }
.entry-content p { margin: 0 0 18px; }
.entry-content ul, .entry-content ol { padding-left: 22px; margin: 8px 0 22px; }
.entry-content li { margin-bottom: 10px; }
.entry-content a { text-decoration: underline; }
.entry-content img { border-radius: 10px; margin: 14px 0; }
.entry-content blockquote {
	border-left: 5px solid var(--bt-primary);
	background: #f4fafb; padding: 16px 20px; margin: 22px 0; border-radius: 10px;
}
.entry-content table { width: 100%; border-collapse: collapse; margin: 18px 0 26px; }
.entry-content th, .entry-content td { border: 1px solid #e0e7eb; padding: 12px 14px; text-align: left; }
.entry-content th { background: #f1f6f8; color: #24424d; }
.entry-footer { margin-top: 26px; }
.tags-links a {
	display: inline-block; background: #eef4f6; color: var(--bt-primary);
	padding: 4px 12px; border-radius: 20px; font-size: 0.82rem; margin: 0 6px 6px 0;
}

/* =========================================================================
   SIDEBAR + WIDGETS
   ========================================================================= */
.widget-area .widget {
	background: #fff; border-radius: 14px; box-shadow: var(--bt-shadow);
	padding: 22px; margin-bottom: 24px; border: 1px solid #eef1f3;
}
.widget-title {
	font-size: 1.05rem; margin: 0 0 14px; color: var(--bt-primary);
	border-bottom: 2px solid #eef4f6; padding-bottom: 10px;
}
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li { padding: 7px 0; border-bottom: 1px dashed #eef1f3; }
.widget ul li:last-child { border-bottom: 0; }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
	display: inline-block; background: var(--bt-primary); color: #fff !important;
	text-decoration: none !important; padding: 11px 20px; border-radius: 26px;
	font-weight: 700; font-size: 0.92rem; text-align: center;
	transition: background .2s ease, transform .2s ease; border: 0; cursor: pointer;
}
.btn:hover { background: var(--bt-primary-2); transform: translateY(-1px); }
.btn-disabled {
	background: #e2e8ed !important; color: #8a979d !important;
	cursor: default; pointer-events: none;
}
.btn-disabled:hover { transform: none; }
.card-soon { opacity: 0.85; }

/* =========================================================================
   HOMEPAGE
   ========================================================================= */
.hero {
	background: linear-gradient(135deg, var(--bt-primary-2), #203a43, var(--bt-primary));
	color: #fff; text-align: center; padding: 60px 0 78px;
}
.hero-badge {
	display: inline-block; background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.22); color: #eef7fa;
	padding: 7px 16px; border-radius: 30px; font-size: 0.85rem; margin-bottom: 16px;
}
.hero-title { font-size: 2.7rem; color: #fff; margin: 0 0 14px; font-weight: 800; }
.hero-text { max-width: 760px; margin: 0 auto; font-size: 1.08rem; opacity: .93; }

.homepage-body { padding-bottom: 56px; }

.provider-search-box {
	margin: -70px auto 32px; background: #fff; padding: 16px; border-radius: 18px;
	box-shadow: var(--bt-shadow-lg); display: flex; gap: 12px; align-items: center;
	border: 1px solid var(--bt-border); position: relative; z-index: 5;
}
.provider-search-box input {
	flex: 1; border: 1px solid #d9e2e7; padding: 14px 15px; border-radius: 12px;
	font-size: 1rem; outline: none; color: #333; font-family: inherit;
}
.provider-search-box input:focus { border-color: var(--bt-primary); }
.provider-search-box button {
	border: 0; background: var(--bt-primary); color: #fff; padding: 14px 24px;
	border-radius: 12px; font-weight: 700; cursor: pointer; white-space: nowrap; font-family: inherit;
}

.notice {
	background: #fff7e8; border: 1px solid #f1d19a; border-left: 5px solid var(--bt-accent);
	padding: 16px 18px; border-radius: 12px; margin-bottom: 28px;
	color: #5a421c; font-size: 0.95rem;
}
.ad-space-top {
	background: #eef2f5; border: 2px dashed #cbd5e1; text-align: center;
	padding: 22px; margin: 0 0 34px; border-radius: 13px; color: #64748b; font-weight: 700;
}

.section-title { text-align: center; margin: 10px 0 8px; font-size: 1.9rem; color: var(--bt-primary); font-weight: 800; }
.section-subtitle { text-align: center; max-width: 700px; margin: 0 auto 30px; color: var(--bt-muted); font-size: 0.98rem; }

.category-title {
	margin: 38px 0 18px; color: #243f4a; font-size: 1.35rem; font-weight: 800;
	display: flex; align-items: center; gap: 10px;
}
.category-title span {
	width: 9px; height: 26px; display: inline-block;
	background: var(--bt-primary); border-radius: 20px;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 22px; margin-bottom: 10px;
}
.card {
	background: #fff; border-radius: 15px; box-shadow: var(--bt-shadow);
	padding: 24px; border-top: 5px solid var(--bt-primary);
	display: flex; flex-direction: column; min-height: 238px;
	transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.09); }
.card-tag {
	align-self: flex-start; background: #f1f6f8; color: #52646d;
	padding: 5px 12px; border-radius: 20px; font-size: 0.78rem;
	margin-bottom: 14px; font-weight: 700;
}
.card h3 { font-size: 1.18rem; margin: 0 0 9px; color: #202124; }
.card p { font-size: 0.92rem; color: #657077; margin: 0 0 18px; flex: 1; }
.card.is-hidden { display: none; }

.home-content {
	background: #fff; padding: 42px; border-radius: 16px;
	box-shadow: var(--bt-shadow); margin-top: 42px; border: 1px solid #eef1f3;
}
.home-content h2 { color: var(--bt-primary); font-size: 1.6rem; margin: 32px 0 14px; }
.home-content h2:first-child { margin-top: 0; }
.home-content h3 { font-size: 1.15rem; color: #263f4b; margin: 22px 0 8px; }
.home-content p { margin: 0 0 16px; color: #3f4d54; line-height: 1.7; }
.home-content ul, .home-content ol { padding-left: 22px; margin: 6px 0 18px; color: #3f4d54; }
.home-content li { margin-bottom: 8px; line-height: 1.65; }
.home-content .home-tip {
	background: #fff7e8; border-left: 4px solid var(--bt-accent);
	padding: 12px 16px; border-radius: 8px; font-size: 0.95rem; margin: 14px 0 22px;
}
.home-content .table-wrap { overflow-x: auto; margin: 12px 0 22px; }
.home-content .home-table {
	width: 100%; border-collapse: collapse; font-size: 0.95rem;
	border: 1px solid #e0e7eb; border-radius: 10px; overflow: hidden;
}
.home-content .home-table th, .home-content .home-table td {
	padding: 12px 14px; border-bottom: 1px solid #e0e7eb; text-align: left; vertical-align: top;
}
.home-content .home-table th { background: var(--bt-primary); color: #fff; font-weight: 700; }
.home-content .home-table tr:nth-child(even) td { background: #f7fafb; }
.home-content .home-table tr:last-child td { border-bottom: 0; }

/* =========================================================================
   404 + SEARCH FORM
   ========================================================================= */
.error-404 { background:#fff; padding:50px; border-radius:16px; box-shadow:var(--bt-shadow); text-align:center; }
.error-404 .page-title { font-size: 4rem; }
.error-subtitle { font-size: 1.3rem; color: var(--bt-muted); }
.search-form { display:flex; gap:10px; max-width:460px; margin:18px auto; }
.search-form .search-field { flex:1; padding:12px 14px; border:1px solid #d9e2e7; border-radius:10px; }
.search-form .search-submit { background:var(--bt-primary); color:#fff; border:0; padding:12px 20px; border-radius:10px; cursor:pointer; font-weight:700; }

/* =========================================================================
   PAGINATION
   ========================================================================= */
.pagination { margin-top: 40px; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers {
	display: inline-block; padding: 9px 15px; background: #fff;
	border: 1px solid var(--bt-border); border-radius: 10px; color: var(--bt-primary);
	text-decoration: none; font-weight: 600;
}
.pagination .page-numbers.current { background: var(--bt-primary); color: #fff; border-color: var(--bt-primary); }

/* =========================================================================
   COMMENTS
   ========================================================================= */
.comments-area { background:#fff; padding:32px; border-radius:16px; box-shadow:var(--bt-shadow); margin-top:30px; border:1px solid #eef1f3; }
.comments-title { font-size:1.4rem; color:var(--bt-primary); margin-bottom:20px; }
.comment-list { list-style:none; padding:0; }
.comment-list .comment { padding:16px 0; border-bottom:1px dashed #eef1f3; }
.comment-form input[type=text], .comment-form input[type=email], .comment-form input[type=url], .comment-form textarea {
	width:100%; padding:12px; border:1px solid #d9e2e7; border-radius:10px; margin-bottom:12px; font-family:inherit;
}
.comment-form .submit { background:var(--bt-primary); color:#fff; border:0; padding:12px 24px; border-radius:26px; font-weight:700; cursor:pointer; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
	background: var(--bt-footer-bg); color: #a9a9a9; margin-top: 40px;
	border-top: 3px solid var(--bt-primary); font-size: 0.85rem;
}
.footer-widgets {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
	padding-top: 34px; padding-bottom: 10px;
}
@media (max-width: 768px) { .footer-widgets { grid-template-columns: 1fr; gap: 20px; } }
.footer-widgets .widget { background: transparent; box-shadow: none; border: 0; padding: 0; margin-bottom: 0; }
.footer-widgets .widget-title { color: #fff; border-bottom-color: rgba(255,255,255,0.12); font-size: 0.98rem; margin-bottom: 10px; }
.footer-widgets a { color: #d4d4d4; }
.footer-widgets ul li { border-bottom: 1px solid rgba(255,255,255,0.07); padding: 5px 0; }

.footer-bottom { text-align: center; padding: 14px 20px 15px; }
.footer-disclaimer { max-width: 900px; margin: 0 auto 8px; line-height: 1.6; font-size: 0.8rem; opacity: 0.92; }
.footer-links { list-style: none; display: flex; gap: 16px; justify-content: center; padding: 0; margin: 8px 0; flex-wrap: wrap; }
.footer-links a { color: #d4d4d4; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.copyright { color: #707070; margin: 0; font-size: 0.78rem; }

/* =========================================================================
   BACK TO TOP BUTTON
   ========================================================================= */
.bt-back-to-top {
	position: fixed;
	right: 22px; bottom: 22px;
	width: 46px; height: 46px;
	background: var(--bt-primary);
	color: #fff;
	border: 0; border-radius: 50%;
	cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 6px 18px rgba(0,0,0,0.18);
	opacity: 0; transform: translateY(20px) scale(0.85);
	pointer-events: none;
	transition: opacity .25s ease, transform .25s ease, background .2s ease;
	z-index: 990;
}
.bt-back-to-top:hover { background: var(--bt-primary-2); }
.bt-back-to-top.is-visible {
	opacity: 1; transform: translateY(0) scale(1);
	pointer-events: auto;
}
.bt-back-to-top svg { display: block; }
@media (max-width: 480px) {
	.bt-back-to-top { right: 14px; bottom: 14px; width: 42px; height: 42px; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 880px) {
	.site-header-inner { position: relative; padding-top: 12px; padding-bottom: 12px; }
	.menu-toggle { display: flex; }

	.main-navigation {
		display: none;
		position: absolute; top: 100%; left: 0; right: 0;
		background: #fff;
		box-shadow: 0 8px 24px rgba(0,0,0,0.10);
		border-top: 1px solid var(--bt-border);
		padding: 10px;
		z-index: 998;
		max-height: calc(100vh - 80px);
		overflow-y: auto;
	}
	.main-navigation.toggled { display: block; }

	.main-navigation ul {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
		width: 100%;
	}
	.main-navigation li { width: 100%; }
	.main-navigation a {
		padding: 14px 16px;
		font-size: 1rem;
		border-radius: 8px;
		border-bottom: 1px solid #f1f4f6;
	}
	.main-navigation li:last-child > a { border-bottom: 0; }

	/* Sub-menus inline (no absolute positioning on mobile) */
	.main-navigation ul ul {
		display: block !important;
		position: static;
		box-shadow: none;
		padding: 0 0 0 16px;
		background: #f7fafb;
		border-radius: 0;
		margin: 4px 0;
	}
	.main-navigation ul ul a {
		padding: 10px 14px;
		font-size: 0.92rem;
		color: #4a5b63;
	}
}

@media (max-width: 768px) {
	.bt-container { padding-left: 16px; padding-right: 16px; }
	.hero { padding: 42px 0 56px; }
	.hero-title { font-size: 1.85rem; line-height: 1.2; }
	.hero-text { font-size: 0.98rem; }
	.hero-badge { font-size: 0.8rem; }

	.provider-search-box {
		flex-direction: column; align-items: stretch;
		margin: -40px auto 24px;
		padding: 12px;
	}
	.provider-search-box input { padding: 12px; font-size: 0.95rem; }
	.provider-search-box button { width: 100%; padding: 12px; }

	.home-content { padding: 22px; }
	.home-content h2 { font-size: 1.35rem; }
	.home-content h3 { font-size: 1.08rem; }

	.single-post, .single-page { padding: 22px; }
	.single-post .entry-title, .single-page .entry-title { font-size: 1.6rem; line-height: 1.25; }

	.entry-content { font-size: 0.98rem; }
	.entry-content h2 { font-size: 1.3rem; }
	.entry-content h3 { font-size: 1.1rem; }
	.entry-content img { width: 100%; height: auto; }
	.entry-content,
	.entry-content p,
	.entry-content li,
	.entry-content h2,
	.entry-content h3,
	.entry-content h4 {
		overflow-wrap: anywhere;
		word-wrap: break-word;
	}

	/* tables scrollable, not breaking layout */
	.entry-content .table-wrap,
	.home-content .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
	.entry-content table {
		display: block; width: 100%; max-width: 100%;
		overflow-x: auto; -webkit-overflow-scrolling: touch;
		white-space: normal;
	}

	.site-content { padding-top: 24px; padding-bottom: 32px; gap: 24px; }

	body { font-size: 16px; }
}

@media (max-width: 480px) {
	.hero { padding: 36px 0 52px; }
	.hero-title { font-size: 1.55rem; }
	.grid { grid-template-columns: 1fr; }
	.section-title { font-size: 1.4rem; }
	.category-title { font-size: 1.15rem; }

	.single-post, .single-page, .home-content { padding: 18px; border-radius: 12px; }
	.single-post .entry-title, .single-page .entry-title { font-size: 1.4rem; }

	.site-title, .custom-logo { max-width: 160px; }
	.custom-logo { max-height: 44px; }
}
