/*
Theme Name: Table Games Hub
Template: generatepress
Author: Table Games Hub
Description: GeneratePress child theme for Table Games Hub. Warm brown brand palette, custom homepage and single-post designs.
Version: 1.0.0
Text Domain: tgh
*/

/* ============================================================
   Table Games Hub — Brand Design System
   Palette sampled from the logo:
     board brown   #7F5025
     accent brown  #8B6339
     charcoal      #4D4E4E
   ============================================================ */

:root {
	--tgh-brown: #7f5025;
	--tgh-brown-dark: #5e3a1a;
	--tgh-brown-light: #8b6339;
	--tgh-tan: #b08a5e;
	--tgh-charcoal: #3f3f3f;
	--tgh-text: #4d4e4e;
	--tgh-muted: #8c8375;
	--tgh-cream: #faf6f0;
	--tgh-cream-2: #f3ebe1;
	--tgh-card: #ffffff;
	--tgh-border: #e8dfd3;
	--tgh-shadow: 0 4px 18px rgba(94, 58, 26, 0.08);
	--tgh-shadow-hover: 0 10px 30px rgba(94, 58, 26, 0.16);
	--tgh-radius: 12px;
}

/* ---------- Base ---------- */
body {
	color: var(--tgh-text);
	background-color: var(--tgh-cream);
}

/* ---------- Header logo sizing ---------- */
.site-header .site-logo img,
.custom-logo,
img.custom-logo {
	max-height: 56px;
	width: auto !important;
	height: auto;
}

/* Hide the text site title + tagline in the header (logo already brands it) */
.site-header .site-title,
.site-header .site-description,
.site-branding-container .main-title,
.site-branding-container .site-description {
	display: none !important;
}

@media (max-width: 768px) {
	.site-header .site-logo img,
	.custom-logo,
	img.custom-logo {
		max-height: 44px;
	}
}

a {
	color: var(--tgh-brown);
}

a:hover,
a:focus {
	color: var(--tgh-brown-dark);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--tgh-charcoal);
}

/* Constrain content width nicely */
.site-content {
	padding: 0;
}

/* ---------- Buttons ---------- */
.tgh-btn {
	display: inline-block;
	background: var(--tgh-brown);
	color: #fff !important;
	padding: 12px 26px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: .3px;
	transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
	border: 2px solid var(--tgh-brown);
}

.tgh-btn:hover {
	background: var(--tgh-brown-dark);
	border-color: var(--tgh-brown-dark);
	transform: translateY(-2px);
	box-shadow: var(--tgh-shadow-hover);
	color: #fff !important;
}

.tgh-btn--ghost {
	background: transparent;
	color: var(--tgh-brown) !important;
}

.tgh-btn--ghost:hover {
	background: var(--tgh-brown);
	color: #fff !important;
}

/* ---------- Section shell ---------- */
.tgh-section {
	padding: 64px 20px;
}

.tgh-wrap {
	max-width: 1140px;
	margin: 0 auto;
}

.tgh-section-head {
	text-align: center;
	margin-bottom: 40px;
}

.tgh-section-head h2 {
	font-size: 2rem;
	margin: 0 0 10px;
	position: relative;
	display: inline-block;
}

.tgh-section-head h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	background: var(--tgh-brown);
	border-radius: 4px;
	margin: 14px auto 0;
}

.tgh-section-head p {
	color: var(--tgh-muted);
	margin: 0;
	font-size: 1.05rem;
}

/* ============================================================
   HERO
   ============================================================ */
.tgh-hero {
	background: linear-gradient(135deg, #4a2f14 0%, #7f5025 55%, #8b6339 100%);
	color: #fff;
	text-align: center;
	padding: 84px 20px 92px;
	position: relative;
	overflow: hidden;
}

.tgh-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.08) 0, transparent 40%),
		radial-gradient(circle at 80% 70%, rgba(255,255,255,.06) 0, transparent 45%);
	pointer-events: none;
}

.tgh-hero-inner {
	position: relative;
	max-width: 760px;
	margin: 0 auto;
}

.tgh-hero img.tgh-hero-logo {
	max-width: 320px;
	width: 70%;
	height: auto;
	margin: 0 auto 26px;
	display: block;
	filter: drop-shadow(0 6px 16px rgba(0,0,0,.25));
	background: #fff;
	padding: 18px 24px;
	border-radius: var(--tgh-radius);
}

.tgh-hero h1 {
	color: #fff;
	font-size: 2.7rem;
	line-height: 1.15;
	margin: 0 0 16px;
}

.tgh-hero p {
	font-size: 1.2rem;
	color: rgba(255,255,255,.9);
	margin: 0 0 30px;
}

.tgh-hero .tgh-btn {
	background: #fff;
	color: var(--tgh-brown) !important;
	border-color: #fff;
}

.tgh-hero .tgh-btn:hover {
	background: var(--tgh-cream);
	border-color: var(--tgh-cream);
}

.tgh-hero .tgh-btn--ghost {
	background: transparent;
	color: #fff !important;
	border-color: rgba(255,255,255,.7);
	margin-left: 12px;
}

.tgh-hero .tgh-btn--ghost:hover {
	background: rgba(255,255,255,.15);
	border-color: #fff;
}

/* ============================================================
   AJAX SEARCH
   ============================================================ */
.tgh-search {
	position: relative;
	max-width: 560px;
	margin: 0 auto 26px;
	text-align: left;
}

.tgh-search-form {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 50px;
	box-shadow: 0 8px 24px rgba(0,0,0,.18);
	padding: 6px 6px 6px 18px;
	gap: 8px;
}

.tgh-search-ico {
	font-size: 1rem;
	opacity: .6;
	flex: 0 0 auto;
}

.tgh-search-input {
	flex: 1 1 auto;
	border: 0;
	outline: 0;
	background: transparent;
	font-size: 1rem;
	color: var(--tgh-charcoal);
	padding: 10px 4px;
	min-width: 0;
}

.tgh-search-input::placeholder { color: #a99f8f; }

.tgh-search-btn {
	flex: 0 0 auto;
	border: 0;
	cursor: pointer;
	background: var(--tgh-brown);
	color: #fff;
	font-weight: 600;
	padding: 11px 24px;
	border-radius: 50px;
	transition: background .2s ease;
}

.tgh-search-btn:hover { background: var(--tgh-brown-dark); }

/* Results dropdown */
.tgh-search-results {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	right: 0;
	background: #fff;
	border-radius: var(--tgh-radius);
	box-shadow: 0 16px 40px rgba(0,0,0,.22);
	overflow: hidden;
	z-index: 50;
	text-align: left;
	max-height: 62vh;
	overflow-y: auto;
}

.tgh-search-results-list {
	list-style: none;
	margin: 0;
	padding: 6px;
}

.tgh-search-results-list li { margin: 0; }

.tgh-search-results-list a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 12px;
	border-radius: 8px;
	text-decoration: none;
	color: var(--tgh-charcoal);
	transition: background .15s ease;
}

.tgh-search-results-list a:hover { background: var(--tgh-cream); }

.tgh-search-results-list img {
	width: 52px;
	height: 40px;
	object-fit: cover;
	border-radius: 6px;
	flex: 0 0 auto;
	background: var(--tgh-cream-2);
}

.tgh-sr-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.tgh-sr-title {
	font-weight: 600;
	font-size: .95rem;
	line-height: 1.3;
	color: var(--tgh-charcoal);
}

.tgh-sr-cat {
	font-size: .74rem;
	text-transform: uppercase;
	letter-spacing: .4px;
	color: var(--tgh-brown);
	font-weight: 700;
}

.tgh-search-all {
	display: block;
	text-align: center;
	padding: 13px;
	font-weight: 600;
	font-size: .9rem;
	color: var(--tgh-brown);
	text-decoration: none;
	border-top: 1px solid var(--tgh-border);
	background: var(--tgh-cream);
}

.tgh-search-all:hover { background: var(--tgh-cream-2); color: var(--tgh-brown-dark); }

.tgh-search-loading,
.tgh-search-empty {
	padding: 22px;
	text-align: center;
	color: var(--tgh-muted);
	font-size: .92rem;
}

@media (max-width: 768px) {
	.tgh-search-form { padding: 5px 5px 5px 14px; }
	.tgh-search-btn { padding: 10px 16px; }
	.tgh-search-input { font-size: 16px; } /* prevents iOS zoom */
}

/* ============================================================
   CATEGORY SHORTCUTS
   ============================================================ */
.tgh-cats {
	background: var(--tgh-card);
}

.tgh-cat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 18px;
}

.tgh-cat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 10px;
	padding: 26px 16px;
	background: var(--tgh-cream);
	border: 1px solid var(--tgh-border);
	border-radius: var(--tgh-radius);
	text-decoration: none;
	color: var(--tgh-charcoal);
	font-weight: 600;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.tgh-cat-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--tgh-shadow-hover);
	background: var(--tgh-brown);
	color: #fff;
}

.tgh-cat-card .tgh-cat-ico {
	font-size: 1.9rem;
	line-height: 1;
}

.tgh-cat-card .tgh-cat-count {
	font-size: .8rem;
	font-weight: 500;
	color: var(--tgh-muted);
}

.tgh-cat-card:hover .tgh-cat-count {
	color: rgba(255,255,255,.85);
}

/* ============================================================
   POST CARD GRID
   ============================================================ */
.tgh-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 26px;
}

.tgh-post-card {
	background: var(--tgh-card);
	border: 1px solid var(--tgh-border);
	border-radius: var(--tgh-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--tgh-shadow);
	transition: transform .2s ease, box-shadow .2s ease;
}

.tgh-post-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--tgh-shadow-hover);
}

.tgh-post-card .tgh-thumb {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--tgh-cream-2);
}

.tgh-post-card .tgh-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.tgh-post-card:hover .tgh-thumb img {
	transform: scale(1.06);
}

.tgh-post-card .tgh-card-body {
	padding: 20px 22px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.tgh-post-card .tgh-cat-tag {
	align-self: flex-start;
	background: var(--tgh-cream-2);
	color: var(--tgh-brown);
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	padding: 4px 12px;
	border-radius: 50px;
	text-decoration: none;
	margin-bottom: 12px;
}

.tgh-post-card h3 {
	font-size: 1.18rem;
	line-height: 1.35;
	margin: 0 0 10px;
}

.tgh-post-card h3 a {
	color: var(--tgh-charcoal);
	text-decoration: none;
}

.tgh-post-card h3 a:hover {
	color: var(--tgh-brown);
}

.tgh-post-card .tgh-excerpt {
	color: var(--tgh-muted);
	font-size: .92rem;
	line-height: 1.55;
	margin: 0 0 16px;
}

.tgh-post-card .tgh-read {
	margin-top: auto;
	color: var(--tgh-brown);
	font-weight: 600;
	font-size: .9rem;
	text-decoration: none;
}

.tgh-post-card .tgh-read:hover {
	color: var(--tgh-brown-dark);
}

/* Text-only card variant (no featured image) */
.tgh-post-card--text {
	border-left: 4px solid var(--tgh-brown);
}

.tgh-post-card--text .tgh-card-body {
	padding: 24px 24px 26px;
}

.tgh-post-card--text h3 {
	font-size: 1.24rem;
	margin-bottom: 14px;
}

/* Latest cards: title + read more only */
.tgh-post-card--text .tgh-cat-tag,
.tgh-post-card--text .tgh-excerpt {
	display: none;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.tgh-cta {
	background: var(--tgh-brown);
	color: #fff;
	text-align: center;
}

.tgh-cta h2 {
	color: #fff;
	font-size: 1.9rem;
	margin: 0 0 12px;
}

.tgh-cta p {
	color: rgba(255,255,255,.9);
	margin: 0 0 26px;
	font-size: 1.1rem;
}

.tgh-cta .tgh-btn {
	background: #fff;
	color: var(--tgh-brown) !important;
	border-color: #fff;
}

.tgh-cta .tgh-btn:hover {
	background: var(--tgh-cream);
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.tgh-single-hero {
	background: linear-gradient(135deg, #3c2610 0%, #7f5025 62%, #96703f 100%);
	color: #fff;
	padding: 60px 20px 78px;
	text-align: left;
	position: relative;
	overflow: hidden;
}

.tgh-single-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 88% 12%, rgba(255,255,255,.10) 0, transparent 42%);
	pointer-events: none;
}

.tgh-single-hero .tgh-wrap {
	max-width: 1140px;
	position: relative;
}

.tgh-single-hero .tgh-cat-tag {
	display: inline-block;
	background: rgba(255,255,255,.14);
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 6px 16px;
	border-radius: 50px;
	text-decoration: none;
	margin-bottom: 20px;
	border: 1px solid rgba(255,255,255,.25);
	transition: background .2s ease;
}

.tgh-single-hero .tgh-cat-tag:hover { background: rgba(255,255,255,.28); }

.tgh-single-hero h1 {
	color: #fff;
	font-size: 2.9rem;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -.5px;
	margin: 0;
	max-width: 820px;
	text-shadow: 0 2px 12px rgba(0,0,0,.18);
}

.tgh-single-hero h1::after {
	content: "";
	display: block;
	width: 72px;
	height: 5px;
	border-radius: 5px;
	background: #fff;
	opacity: .9;
	margin-top: 24px;
}

.tgh-single-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	color: rgba(255,255,255,.85);
	font-size: .92rem;
}

.tgh-single-meta .tgh-avatar {
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 8px;
	border: 2px solid rgba(255,255,255,.5);
}

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

/* Two-column single layout */
.tgh-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 272px;
	gap: 34px;
	align-items: start;
	margin-top: -40px;
	padding: 0 20px;
	position: relative;
	z-index: 2;
}

.tgh-single-main { min-width: 0; }

/* Article body */
.tgh-article {
	background: var(--tgh-card);
	margin: 0;
	padding: 46px 48px 50px;
	border-radius: var(--tgh-radius);
	box-shadow: var(--tgh-shadow);
}

.tgh-article .tgh-featured {
	margin: -46px -48px 34px;
	border-radius: var(--tgh-radius) var(--tgh-radius) 0 0;
	overflow: hidden;
	max-height: 440px;
}

.tgh-article .tgh-featured img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.tgh-article .entry-content {
	font-size: 1.06rem;
	line-height: 1.75;
	color: var(--tgh-text);
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.tgh-article .entry-content > *:first-child { margin-top: 0; }

.tgh-article .entry-content h2,
.tgh-article .entry-content h3 {
	margin-top: 1.8em;
	margin-bottom: .6em;
}

.tgh-article .entry-content h2 {
	padding-bottom: .35em;
	border-bottom: 2px solid var(--tgh-cream-2);
}

.tgh-article .entry-content a {
	color: var(--tgh-brown);
	text-decoration: underline;
	text-decoration-color: var(--tgh-border);
	text-underline-offset: 3px;
}

.tgh-article .entry-content a:hover {
	color: var(--tgh-brown-dark);
	text-decoration-color: var(--tgh-brown);
}

.tgh-article .entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.tgh-article .entry-content blockquote {
	border-left: 4px solid var(--tgh-brown);
	background: var(--tgh-cream);
	margin: 1.5em 0;
	padding: 16px 22px;
	border-radius: 0 8px 8px 0;
	color: var(--tgh-charcoal);
}

.tgh-article .entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5em 0;
	font-size: .95rem;
}

.tgh-article .entry-content th {
	background: var(--tgh-brown);
	color: #fff;
	padding: 12px 14px;
	text-align: left;
}

.tgh-article .entry-content td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--tgh-border);
}

.tgh-article .entry-content tr:nth-child(even) td {
	background: var(--tgh-cream);
}

/* Tags / footer of article */
.tgh-article-footer {
	margin-top: 36px;
	padding-top: 24px;
	border-top: 1px solid var(--tgh-border);
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.tgh-article-footer .tgh-tag {
	background: var(--tgh-cream);
	border: 1px solid var(--tgh-border);
	color: var(--tgh-brown);
	font-size: .82rem;
	padding: 5px 14px;
	border-radius: 50px;
	text-decoration: none;
}

.tgh-article-footer .tgh-tag:hover {
	background: var(--tgh-brown);
	color: #fff;
	border-color: var(--tgh-brown);
}

/* Related posts (now inside main column) */
.tgh-related {
	margin: 44px 0 0;
	padding: 0;
}

.tgh-comments {
	margin: 44px 0 0;
	background: var(--tgh-card);
	padding: 30px 34px;
	border-radius: var(--tgh-radius);
	box-shadow: var(--tgh-shadow);
}

/* ---------- Right sidebar widgets ---------- */
.tgh-single-sidebar {
	display: flex;
	flex-direction: column;
	gap: 22px;
	/* Offset the layout's -40px pull-up so the sidebar sits below the hero
	   title with breathing room, instead of floating up next to it. */
	margin-top: 40px;
}

.tgh-widget {
	background: var(--tgh-card);
	border: 1px solid var(--tgh-border);
	border-radius: var(--tgh-radius);
	padding: 22px 22px 24px;
	box-shadow: var(--tgh-shadow);
}

.tgh-widget-title {
	font-size: 1.05rem;
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--tgh-cream-2);
	color: var(--tgh-charcoal);
}

/* Sidebar search: clean, fitted to the column */
.tgh-widget-search .tgh-search { max-width: none; margin: 0; }

.tgh-widget-search .tgh-search-form {
	box-shadow: none;
	background: #fff;
	border: 2px solid var(--tgh-border);
	border-radius: 12px;
	padding: 4px 4px 4px 16px;
	gap: 6px;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.tgh-widget-search .tgh-search-form:focus-within {
	border-color: var(--tgh-brown);
	box-shadow: 0 0 0 4px rgba(127, 80, 37, .10);
}

.tgh-widget-search .tgh-search-ico { display: none; }

.tgh-widget-search .tgh-search-input {
	font-size: .94rem;
	padding: 10px 2px;
	color: var(--tgh-charcoal);
}

/* Icon-only rounded button with crisp SVG magnifier */
.tgh-widget-search .tgh-search-btn {
	width: 40px;
	height: 40px;
	padding: 0;
	border-radius: 9px;
	font-size: 0;
	background: var(--tgh-brown);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	flex: 0 0 auto;
	transition: background-color .2s ease;
}

.tgh-widget-search .tgh-search-btn:hover { background-color: var(--tgh-brown-dark); }
.tgh-widget-search .tgh-search-btn::after { content: none; }

.tgh-widget-cats,
.tgh-widget-posts {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tgh-widget-cats li { margin: 0; }

.tgh-widget-cats a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 9px 2px;
	border-bottom: 1px solid var(--tgh-cream-2);
	text-decoration: none;
	color: var(--tgh-text);
	font-size: .94rem;
	transition: color .15s ease;
}

.tgh-widget-cats li:last-child a { border-bottom: 0; }
.tgh-widget-cats a:hover { color: var(--tgh-brown); }

.tgh-widget-count {
	background: var(--tgh-cream);
	color: var(--tgh-muted);
	font-size: .74rem;
	font-weight: 700;
	padding: 2px 9px;
	border-radius: 50px;
	flex: 0 0 auto;
}

.tgh-widget-posts li {
	margin: 0;
	padding: 10px 0;
	border-bottom: 1px solid var(--tgh-cream-2);
}

.tgh-widget-posts li:last-child { border-bottom: 0; padding-bottom: 0; }

.tgh-widget-posts a {
	color: var(--tgh-charcoal);
	text-decoration: none;
	font-size: .92rem;
	line-height: 1.4;
	font-weight: 500;
	display: block;
}

.tgh-widget-posts a:hover { color: var(--tgh-brown); }

/* Single: related grid should be 2-up inside the narrower main column */
.tgh-single-main .tgh-card-grid {
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
}

@media (max-width: 960px) {
	.tgh-single-layout {
		grid-template-columns: 1fr;
	}
	.tgh-single-sidebar {
		position: static;
		margin-top: 8px;
	}
}

/* ============================================================
   Force full-width for our custom templates (no sidebar gap)
   ============================================================ */
.tgh-fullwidth .site-content .content-area {
	width: 100%;
}

.tgh-fullwidth #right-sidebar,
.tgh-fullwidth #left-sidebar {
	display: none;
}

.tgh-fullwidth .site-main {
	margin: 0;
	padding: 0;
}

/* Kill default GP entry padding on our templates */
.tgh-fullwidth .site-content {
	padding: 0 !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
	.tgh-section { padding: 44px 16px; }
	.tgh-hero { padding: 60px 16px 66px; }
	.tgh-hero h1 { font-size: 2rem; }
	.tgh-hero p { font-size: 1.05rem; }
	.tgh-hero .tgh-btn--ghost { margin-left: 0; margin-top: 12px; }
	.tgh-single-hero h1 { font-size: 1.7rem; }
	.tgh-single-layout {
		padding: 0;
		gap: 24px;
	}
	/* Full-bleed article on mobile: no layout gutter, square edges */
	.tgh-article {
		padding: 24px 10px 28px;
		border-radius: 0;
	}
	.tgh-comments {
		padding: 20px 10px;
		border-radius: 0;
	}
	/* Keep rounded blocks (related cards, sidebar) off the screen edges */
	.tgh-related { padding: 0 12px; }
	.tgh-single-sidebar { padding: 0 12px; }
	.tgh-section-head h2 { font-size: 1.6rem; }
}
