:root {
	--ig-ink: #102d3f;
	--ig-ink-soft: #31505f;
	--ig-teal: #0c6e73;
	--ig-teal-dark: #08565a;
	--ig-teal-soft: #e7f4f2;
	--ig-saffron: #ed9b28;
	--ig-saffron-soft: #fff3de;
	--ig-paper: #f6f8f7;
	--ig-white: #ffffff;
	--ig-line: #dce6e4;
	--ig-muted: #687b84;
	--ig-danger-soft: #fff5ed;
	--ig-radius-sm: 10px;
	--ig-radius: 16px;
	--ig-radius-lg: 24px;
	--ig-shadow: 0 14px 40px rgba(16, 45, 63, 0.08);
	--ig-shadow-hover: 0 18px 46px rgba(16, 45, 63, 0.14);
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--ig-paper);
	color: var(--ig-ink);
	font-family: "Noto Sans Gujarati", "Nirmala UI", "Shruti", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
	font-family: "Noto Sans Gujarati", "Nirmala UI", "Shruti", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
	color: var(--ig-teal);
}

a:hover {
	color: var(--ig-teal-dark);
}

::selection {
	background: #c9e9e5;
	color: var(--ig-ink);
}

.container {
	width: min(calc(100% - 40px), 1180px);
	max-width: 1180px;
	margin-inline: auto;
}

.screen-reader-text:focus,
.skip-link:focus {
	z-index: 100000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--ig-white);
	color: var(--ig-ink);
	border-radius: 8px;
	box-shadow: var(--ig-shadow);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 3px solid rgba(237, 155, 40, 0.55);
	outline-offset: 3px;
}

/* Header */
.ig-trust-bar {
	background: var(--ig-ink);
	color: #dcebec;
	font-size: 12px;
	letter-spacing: 0.02em;
}

.ig-trust-bar-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-height: 34px;
}

.ig-trust-separator {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--ig-saffron);
}

.site-header.ig-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	min-height: auto;
	padding: 0;
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid rgba(220, 230, 228, 0.9);
	box-shadow: none;
	backdrop-filter: blur(12px);
}

.site-header.ig-site-header.scrolled {
	box-shadow: 0 9px 30px rgba(16, 45, 63, 0.08);
}

.ig-header-inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 32px;
	min-height: 76px;
}

.ig-brand-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: max-content;
}

.ig-brand-wrap .site-branding {
	margin: 0;
}

.ig-brand-wrap .site-logo,
.ig-brand-wrap .custom-logo-link {
	display: inline-flex;
	align-items: center;
	font-size: 25px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.035em;
	color: var(--ig-ink);
	text-decoration: none;
}

.ig-brand-wrap .site-logo span,
.ig-footer-logo span {
	color: var(--ig-saffron);
}

.ig-brand-wrap .custom-logo {
	width: auto;
	max-height: 46px;
}

.ig-brand-wrap .site-tagline {
	display: none;
}

.ig-brand-label {
	padding-left: 14px;
	border-left: 1px solid var(--ig-line);
	color: var(--ig-muted);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
}

.ig-site-header .main-nav {
	display: flex;
	justify-content: flex-end;
	position: static;
	width: auto;
	background: transparent;
	box-shadow: none;
}

.ig-site-header .main-nav .nav-list {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ig-site-header .main-nav .nav-list > li > a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 8px 11px;
	color: var(--ig-ink-soft);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 9px;
}

.ig-site-header .main-nav .nav-list > li > a:hover,
.ig-site-header .main-nav .current-menu-item > a,
.ig-site-header .main-nav .current_page_item > a {
	background: var(--ig-teal-soft);
	color: var(--ig-teal-dark);
}

.ig-site-header .main-nav .sub-menu {
	border: 1px solid var(--ig-line);
	border-radius: 12px;
	box-shadow: var(--ig-shadow);
	overflow: hidden;
}

.ig-header-search {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 42px;
	padding: 8px 14px;
	background: var(--ig-ink);
	color: var(--ig-white);
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
	border-radius: 10px;
}

.ig-header-search:hover {
	background: var(--ig-teal-dark);
	color: var(--ig-white);
}

.ig-header-search > span:first-child {
	font-size: 21px;
	line-height: 1;
}

.ig-site-header .mobile-toggle {
	display: none;
	position: static;
	width: 44px;
	height: 44px;
	padding: 11px;
	background: var(--ig-paper);
	border: 1px solid var(--ig-line);
	border-radius: 10px;
}

.ig-site-header .mobile-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px 0;
	background: var(--ig-ink);
	border-radius: 2px;
}

/* Shared page and listing UI */
.site-content {
	min-height: 55vh;
}

.page-hero {
	padding: 58px 0 52px;
	background:
		radial-gradient(circle at 90% 10%, rgba(237, 155, 40, 0.14), transparent 24%),
		linear-gradient(135deg, #edf6f4 0%, #f8faf9 60%, #fff7eb 100%);
	border-bottom: 1px solid var(--ig-line);
}

.page-hero .breadcrumb,
.post-breadcrumb {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 16px;
	color: var(--ig-muted);
	font-size: 13px;
}

.page-hero h1 {
	max-width: 760px;
	margin: 0 0 12px;
	color: var(--ig-ink);
	font-size: clamp(32px, 5vw, 52px);
	line-height: 1.2;
	letter-spacing: -0.035em;
}

.page-hero p {
	max-width: 700px;
	margin: 0;
	color: var(--ig-ink-soft);
	font-size: 17px;
}

.main-content-area {
	padding-top: 54px;
	padding-bottom: 72px;
}

.layout-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 34px;
	align-items: start;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.post-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	background: var(--ig-white);
	border: 1px solid var(--ig-line);
	border-radius: var(--ig-radius);
	box-shadow: 0 4px 18px rgba(16, 45, 63, 0.04);
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.post-card:hover {
	transform: translateY(-3px);
	border-color: #c4d8d5;
	box-shadow: var(--ig-shadow-hover);
}

.post-card .post-thumb {
	position: relative;
	min-height: 176px;
	background: linear-gradient(135deg, #dff0ed, #f8efe1);
	overflow: hidden;
}

.post-card .post-thumb > a:not(.category-badge),
.post-card .post-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 176px;
	object-fit: cover;
}

.post-card .thumbnail-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	text-decoration: none;
}

.post-card .thumbnail-icon {
	display: grid;
	place-items: center;
	width: 68px;
	height: 68px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--ig-teal-dark);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -0.02em;
	border: 1px solid rgba(12, 110, 115, 0.12);
	border-radius: 20px;
	box-shadow: 0 8px 24px rgba(16, 45, 63, 0.08);
	filter: none;
}

.post-card .thumbnail-label {
	color: var(--ig-ink-soft);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.post-card .category-badge {
	position: absolute;
	z-index: 2;
	top: 14px;
	left: 14px;
	max-width: calc(100% - 28px);
	padding: 5px 10px;
	background: rgba(16, 45, 63, 0.91);
	color: var(--ig-white);
	font-size: 11px;
	font-weight: 750;
	line-height: 1.3;
	text-decoration: none;
	border: 0;
	border-radius: 999px;
	backdrop-filter: blur(6px);
}

.post-card .post-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 21px;
}

.post-card .post-meta {
	margin-bottom: 8px;
	color: var(--ig-muted);
	font-size: 12px;
}

.post-card .post-title {
	margin: 0 0 10px;
	font-size: 19px;
	font-weight: 780;
	line-height: 1.45;
	letter-spacing: -0.015em;
}

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

.post-card .post-excerpt {
	margin: 0 0 16px;
	color: var(--ig-ink-soft);
	font-size: 14px;
	line-height: 1.7;
}

.post-card .read-more {
	align-self: flex-start;
	margin-top: auto;
	color: var(--ig-teal-dark);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 34px;
}

.pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	background: var(--ig-white);
	color: var(--ig-ink-soft);
	text-decoration: none;
	border: 1px solid var(--ig-line);
	border-radius: 9px;
}

.pagination .current,
.pagination a:hover {
	background: var(--ig-teal);
	color: var(--ig-white);
	border-color: var(--ig-teal);
}

.sidebar,
.widget-area {
	position: sticky;
	top: 102px;
}

.widget {
	margin: 0 0 20px;
	padding: 22px;
	background: var(--ig-white);
	border: 1px solid var(--ig-line);
	border-radius: var(--ig-radius);
	box-shadow: 0 4px 18px rgba(16, 45, 63, 0.04);
}

.widget-title,
.widget h2,
.widget h3 {
	margin: 0 0 15px;
	padding: 0 0 11px;
	color: var(--ig-ink);
	font-size: 17px;
	border-bottom: 2px solid var(--ig-teal-soft);
}

.widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget li {
	padding: 9px 0;
	border-bottom: 1px solid #edf2f1;
}

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

.widget a {
	color: var(--ig-ink-soft);
	font-size: 14px;
	text-decoration: none;
}

.widget a:hover {
	color: var(--ig-teal);
}

.search-form {
	display: flex;
	gap: 8px;
}

.search-form input[type="search"] {
	min-width: 0;
	width: 100%;
	min-height: 44px;
	padding: 9px 12px;
	background: var(--ig-paper);
	border: 1px solid var(--ig-line);
	border-radius: 9px;
}

.search-form button,
.search-submit {
	min-height: 44px;
	padding: 9px 14px;
	background: var(--ig-teal);
	color: var(--ig-white);
	border: 0;
	border-radius: 9px;
	cursor: pointer;
}

.ig-listing-note {
	padding: 34px 0;
	background: var(--ig-teal-soft);
	border-top: 1px solid #d1e8e4;
}

.ig-listing-note .container {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 16px;
}

.ig-listing-note strong {
	font-size: 18px;
}

.ig-listing-note p {
	margin: 0;
	color: var(--ig-ink-soft);
}

.ig-listing-note a {
	font-weight: 800;
	text-decoration: none;
}

/* Article and regular pages */
.single-post-container,
.page-container {
	min-width: 0;
	padding: 34px;
	background: var(--ig-white);
	border: 1px solid var(--ig-line);
	border-radius: var(--ig-radius-lg);
	box-shadow: var(--ig-shadow);
}

.single-post-container .post-breadcrumb {
	margin-bottom: 26px;
	overflow: hidden;
}

.single-post-container .post-breadcrumb .current {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.post-category-pill {
	display: inline-flex;
	margin-bottom: 13px;
	padding: 5px 11px;
	background: var(--ig-teal-soft);
	color: var(--ig-teal-dark);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	border-radius: 999px;
}

.post-header h1 {
	margin: 0 0 18px;
	color: var(--ig-ink);
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 800;
	line-height: 1.32;
	letter-spacing: -0.035em;
}

.post-meta-large {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	padding-bottom: 23px;
	color: var(--ig-muted);
	font-size: 13px;
	border-bottom: 1px solid var(--ig-line);
}

.featured-image {
	margin: 28px 0;
	border-radius: var(--ig-radius);
	overflow: hidden;
}

.featured-image img {
	display: block;
	width: 100%;
}

.article-content {
	color: #263f4c;
	font-size: 17px;
	line-height: 1.9;
}

.article-content > * {
	max-width: 100%;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
	color: var(--ig-ink);
	line-height: 1.4;
	letter-spacing: -0.02em;
}

.article-content h2 {
	margin: 42px 0 15px;
	padding-left: 15px;
	font-size: 27px;
	border-left: 4px solid var(--ig-saffron);
}

.article-content h3 {
	margin: 32px 0 12px;
	font-size: 22px;
}

.article-content a {
	font-weight: 650;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.article-content ul,
.article-content ol {
	padding-left: 25px;
}

.article-content li {
	margin-bottom: 7px;
}

.article-content blockquote {
	margin: 28px 0;
	padding: 20px 24px;
	background: var(--ig-teal-soft);
	border-left: 4px solid var(--ig-teal);
	border-radius: 0 var(--ig-radius-sm) var(--ig-radius-sm) 0;
}

.article-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}

.article-content th,
.article-content td {
	padding: 12px 14px;
	text-align: left;
	border: 1px solid var(--ig-line);
}

.article-content th {
	background: var(--ig-teal-soft);
	color: var(--ig-ink);
}

.ig-official-reminder {
	margin: 36px 0 10px;
	padding: 20px 22px;
	background: var(--ig-danger-soft);
	border: 1px solid #f2dbc3;
	border-radius: var(--ig-radius);
}

.ig-official-reminder strong {
	display: block;
	margin-bottom: 5px;
	color: #7b4610;
}

.ig-official-reminder p {
	margin: 0;
	color: #684d33;
	font-size: 14px;
}

.related-posts-section {
	margin-top: 42px;
	padding-top: 30px;
	border-top: 1px solid var(--ig-line);
}

.related-posts-section .section-title {
	margin: 0 0 20px;
	font-size: 24px;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.related-card {
	background: var(--ig-paper);
	border: 1px solid var(--ig-line);
	border-radius: 13px;
	overflow: hidden;
}

.related-card .related-thumb {
	min-height: 110px;
	background: var(--ig-teal-soft);
}

.related-card .related-thumb img,
.related-card .related-thumb a {
	display: block;
	width: 100%;
	height: 110px;
	object-fit: cover;
}

.related-card .related-content {
	padding: 14px;
}

.related-card h4 {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.5;
}

.related-card h4 a {
	color: var(--ig-ink);
	text-decoration: none;
}

.related-excerpt {
	display: none;
}

.related-date {
	color: var(--ig-muted);
	font-size: 11px;
}

.blognova-ad {
	margin: 24px 0;
	padding: 10px;
	background: #f7f8f8;
	border: 1px dashed #c8d4d2;
	border-radius: 12px;
}

.blognova-ad-placeholder {
	display: grid;
	place-items: center;
	min-height: 90px;
	color: #8a999f;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Footer */
.ig-footer {
	margin: 0;
	padding: 0;
	background: var(--ig-ink);
	color: #c8d8dd;
}

.ig-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
	gap: 48px;
	padding-top: 66px;
	padding-bottom: 58px;
}

.ig-footer-logo {
	display: inline-block;
	margin-bottom: 16px;
	color: var(--ig-white);
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.04em;
	text-decoration: none;
}

.ig-footer-logo:hover {
	color: var(--ig-white);
}

.ig-footer-about p,
.ig-footer-note p {
	margin: 0 0 14px;
	color: #b8cbd0;
	font-size: 13px;
	line-height: 1.75;
}

.ig-footer-email {
	color: #f7c476;
	font-size: 13px;
	font-weight: 700;
}

.ig-footer h2 {
	margin: 4px 0 16px;
	color: var(--ig-white);
	font-size: 14px;
	letter-spacing: 0.01em;
}

.ig-footer-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ig-footer-links li {
	margin-bottom: 9px;
}

.ig-footer-links a {
	color: #c8d8dd;
	font-size: 13px;
	text-decoration: none;
}

.ig-footer-links a:hover {
	color: var(--ig-white);
}

.ig-footer-note {
	padding: 19px;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
}

.ig-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.ig-footer-bottom .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 65px;
}

.ig-footer-bottom p {
	margin: 0;
	color: #94abb1;
	font-size: 12px;
}

.ig-footer-bottom nav {
	display: flex;
	gap: 18px;
}

.ig-footer-bottom a {
	color: #b8cbd0;
	font-size: 12px;
	text-decoration: none;
}

@media (max-width: 1024px) {
	.ig-brand-label,
	.ig-header-search > span:last-child {
		display: none;
	}

	.ig-header-inner {
		gap: 18px;
	}

	.ig-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.container {
		width: min(calc(100% - 28px), 1180px);
	}

	.ig-trust-bar-inner {
		justify-content: flex-start;
		overflow: hidden;
		white-space: nowrap;
	}

	.ig-trust-bar-inner span:nth-of-type(n+4) {
		display: none;
	}

	.ig-header-inner {
		grid-template-columns: 1fr auto auto;
		min-height: 66px;
	}

	.ig-brand-wrap .site-logo {
		font-size: 23px;
	}

	.ig-header-search {
		width: 42px;
		height: 42px;
		justify-content: center;
		padding: 0;
	}

	.ig-site-header .mobile-toggle {
		display: block;
	}

	.ig-site-header .main-nav {
		display: none;
		position: absolute;
		top: 66px;
		left: 0;
		width: 100%;
		max-height: calc(100vh - 100px);
		overflow-y: auto;
		background: var(--ig-white);
		border-top: 1px solid var(--ig-line);
		box-shadow: 0 18px 30px rgba(16, 45, 63, 0.12);
	}

	.ig-site-header .main-nav.mobile-active {
		display: block;
	}

	.ig-site-header .main-nav .nav-list {
		display: block;
		width: min(calc(100% - 28px), 1180px);
		margin: 0 auto;
		padding: 12px 0 18px;
	}

	.ig-site-header .main-nav .nav-list > li > a {
		display: flex;
		width: 100%;
		min-height: 47px;
		padding: 10px 6px;
		border-bottom: 1px solid #edf2f1;
		border-radius: 0;
	}

	.ig-site-header .main-nav .sub-menu {
		position: static;
		box-shadow: none;
		border: 0;
		border-radius: 0;
	}

	.page-hero {
		padding: 40px 0 38px;
	}

	.page-hero h1 {
		font-size: 34px;
	}

	.main-content-area {
		padding-top: 34px;
		padding-bottom: 52px;
	}

	.layout-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.post-grid {
		grid-template-columns: 1fr;
	}

	.sidebar,
	.widget-area {
		position: static;
	}

	.single-post-container,
	.page-container {
		padding: 23px 19px;
		border-radius: 16px;
	}

	.post-header h1 {
		font-size: 31px;
	}

	.article-content {
		font-size: 16px;
		line-height: 1.85;
	}

	.article-content h2 {
		font-size: 23px;
	}

	.related-grid {
		grid-template-columns: 1fr;
	}

	.related-card {
		display: grid;
		grid-template-columns: 112px 1fr;
	}

	.related-card .related-thumb,
	.related-card .related-thumb img,
	.related-card .related-thumb a {
		height: 100%;
		min-height: 105px;
	}

	.ig-listing-note .container {
		grid-template-columns: 1fr;
		gap: 5px;
	}

	.ig-footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		padding-top: 48px;
		padding-bottom: 42px;
	}

	.ig-footer-bottom .container {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-top: 17px;
		padding-bottom: 17px;
	}
}

/* Compact information, legal and listing pages */
.ig-utility-hero,
.ig-blog-hero {
	padding: 48px 0 44px;
	background:
		radial-gradient(circle at 92% 15%, rgba(237, 155, 40, 0.13), transparent 28%),
		linear-gradient(115deg, #eef8f6 0%, #ffffff 58%, #fff9ef 100%);
	border-bottom: 1px solid var(--ig-line);
}

.ig-utility-hero .breadcrumb,
.ig-blog-hero .breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
	margin: 0 0 16px;
	color: var(--ig-muted);
	font-size: 13px;
}

.ig-utility-hero .breadcrumb a,
.ig-blog-hero .breadcrumb a {
	color: var(--ig-ink-soft);
	text-decoration: none;
}

.ig-section-kicker {
	margin: 0 0 8px;
	color: var(--ig-teal);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.ig-utility-hero h1,
.ig-blog-hero h1 {
	max-width: 820px;
	margin: 0 0 10px;
	color: var(--ig-ink);
	font-size: clamp(36px, 5vw, 54px);
	font-weight: 820;
	line-height: 1.2;
	letter-spacing: -0.04em;
}

.ig-utility-hero p:last-child,
.ig-blog-hero p:last-child {
	max-width: 760px;
	margin: 0;
	color: var(--ig-ink-soft);
	font-size: 16px;
}

.ig-utility-main,
.ig-blog-main {
	padding: 48px 0 64px;
}

.ig-page-main {
	width: min(calc(100% - 40px), 940px);
	max-width: 940px;
}

.ig-page-main .page-container {
	width: 100%;
}

/* Contact */
.ig-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
	gap: 26px;
	align-items: stretch;
}

.ig-contact-primary,
.ig-contact-checklist {
	padding: 34px;
	background: var(--ig-white);
	border: 1px solid var(--ig-line);
	border-radius: var(--ig-radius-lg);
	box-shadow: var(--ig-shadow);
}

.ig-contact-primary h2,
.ig-contact-checklist h2 {
	margin: 0 0 12px;
	color: var(--ig-ink);
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.35;
}

.ig-contact-primary > p:not(.ig-section-kicker) {
	margin: 0 0 22px;
	color: var(--ig-ink-soft);
}

.ig-contact-email-button {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	padding: 11px 18px;
	background: var(--ig-teal);
	color: var(--ig-white);
	font-weight: 800;
	text-decoration: none;
	border-radius: 11px;
}

.ig-contact-email-button:hover {
	background: var(--ig-teal-dark);
	color: var(--ig-white);
}

.ig-contact-warning {
	margin-top: 28px;
	padding: 18px 20px;
	background: var(--ig-danger-soft);
	color: #744318;
	border: 1px solid #f0d4b7;
	border-radius: 13px;
}

.ig-contact-warning p {
	margin: 6px 0 0;
	font-size: 14px;
}

.ig-contact-checklist ol {
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.ig-contact-checklist li {
	display: grid;
	grid-template-columns: 38px 1fr;
	gap: 12px;
	padding: 16px 0;
	border-top: 1px solid var(--ig-line);
}

.ig-contact-checklist li > span {
	color: var(--ig-saffron);
	font-size: 13px;
	font-weight: 850;
}

.ig-contact-checklist strong {
	color: var(--ig-ink);
}

.ig-contact-checklist p {
	margin: 3px 0 0;
	color: var(--ig-muted);
	font-size: 13px;
}

.ig-contact-footer-note {
	margin-top: 22px;
	padding: 18px 22px;
	background: var(--ig-teal-soft);
	color: var(--ig-ink-soft);
	border: 1px solid #d1e8e4;
	border-radius: 13px;
}

/* Disclaimer and privacy */
.ig-policy-shell {
	max-width: 940px;
	padding: 0;
}

.ig-policy-intro,
.ig-policy-contact {
	padding: 25px 28px;
	background: var(--ig-white);
	border: 1px solid var(--ig-line);
	border-radius: var(--ig-radius);
	box-shadow: 0 8px 30px rgba(16, 45, 63, 0.06);
}

.ig-policy-intro strong {
	color: var(--ig-teal-dark);
	font-size: 13px;
}

.ig-policy-intro p,
.ig-policy-contact p {
	margin: 7px 0 0;
	color: var(--ig-ink-soft);
}

.ig-policy-sections {
	margin: 22px 0;
	background: var(--ig-white);
	border: 1px solid var(--ig-line);
	border-radius: var(--ig-radius-lg);
	overflow: hidden;
}

.ig-policy-sections section {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 18px;
	padding: 26px 28px;
	border-bottom: 1px solid var(--ig-line);
}

.ig-policy-sections section:last-child {
	border-bottom: 0;
}

.ig-policy-sections section > span {
	color: var(--ig-saffron);
	font-size: 13px;
	font-weight: 850;
}

.ig-policy-sections h2,
.ig-policy-contact h2 {
	margin: 0 0 7px;
	color: var(--ig-ink);
	font-size: 21px;
	line-height: 1.4;
}

.ig-policy-sections p {
	margin: 0;
	color: var(--ig-ink-soft);
	font-size: 15px;
}

/* Blog, archive and search */
.ig-blog-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
	gap: 42px;
	align-items: end;
}

.ig-blog-search {
	padding: 20px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid var(--ig-line);
	border-radius: var(--ig-radius);
	box-shadow: 0 8px 24px rgba(16, 45, 63, 0.06);
}

.ig-blog-search label {
	display: block;
	margin-bottom: 8px;
	color: var(--ig-ink);
	font-size: 13px;
	font-weight: 800;
}

.ig-blog-search > div {
	display: flex;
	gap: 8px;
}

.ig-blog-search input {
	min-width: 0;
	width: 100%;
	min-height: 45px;
	padding: 9px 12px;
	background: var(--ig-white);
	border: 1px solid var(--ig-line);
	border-radius: 9px;
}

.ig-blog-search button {
	min-height: 45px;
	padding: 9px 16px;
	background: var(--ig-teal);
	color: var(--ig-white);
	font-weight: 800;
	border: 0;
	border-radius: 9px;
	cursor: pointer;
}

.ig-topic-filter {
	display: flex;
	gap: 9px;
	margin: 0 0 38px;
	padding-bottom: 4px;
	overflow-x: auto;
	scrollbar-width: thin;
}

.ig-topic-filter a {
	flex: 0 0 auto;
	padding: 8px 14px;
	background: var(--ig-white);
	color: var(--ig-ink-soft);
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
	border: 1px solid var(--ig-line);
	border-radius: 999px;
}

.ig-topic-filter a:hover,
.ig-topic-filter .is-active {
	background: var(--ig-teal);
	color: var(--ig-white);
	border-color: var(--ig-teal);
}

.ig-blog-heading-row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
}

.ig-blog-heading-row h2 {
	margin: 0;
	color: var(--ig-ink);
	font-size: clamp(27px, 3vw, 36px);
	line-height: 1.3;
}

.ig-blog-heading-row > span {
	color: var(--ig-muted);
	font-size: 13px;
}

.post-grid.ig-blog-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.ig-blog-grid .post-card .post-thumb,
.ig-blog-grid .post-card .post-thumb > a:not(.category-badge),
.ig-blog-grid .post-card .post-thumb img {
	min-height: 0;
	aspect-ratio: 16 / 9;
}

.ig-blog-grid .post-card .post-content {
	padding: 19px;
}

.ig-blog-grid .post-card .post-title {
	font-size: 18px;
}

.ig-blog-grid .post-card .post-excerpt {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.ig-blog-pagination {
	justify-content: center;
	margin-top: 38px;
}

.ig-empty-state {
	padding: 42px;
	background: var(--ig-white);
	text-align: center;
	border: 1px solid var(--ig-line);
	border-radius: var(--ig-radius);
}

.ig-empty-state h2 {
	margin: 0 0 8px;
	color: var(--ig-ink);
}

.ig-empty-state p {
	margin: 0 0 14px;
	color: var(--ig-muted);
}

/* Article and compact sidebar */
.single .main-content-area {
	padding-top: 42px;
	padding-bottom: 58px;
}

.single .layout-grid {
	grid-template-columns: minmax(0, 1fr) 290px;
	gap: 28px;
}

.single .single-post-container {
	padding: 30px;
}

.ig-article-sidebar .sidebar-widget {
	margin: 0 0 18px;
	padding: 20px;
	background: var(--ig-white);
	border: 1px solid var(--ig-line);
	border-radius: var(--ig-radius);
	box-shadow: 0 5px 20px rgba(16, 45, 63, 0.05);
}

.ig-article-sidebar .widget-title {
	margin: 0 0 14px;
	padding: 0 0 10px;
	color: var(--ig-ink);
	font-size: 16px;
	border-bottom: 2px solid var(--ig-teal-soft);
}

.ig-article-sidebar .search-form button {
	padding-inline: 12px;
	font-size: 12px;
}

.ig-article-sidebar .cat-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ig-article-sidebar .cat-list li {
	border-bottom: 1px solid #edf2f1;
}

.ig-article-sidebar .cat-list li:last-child {
	border-bottom: 0;
}

.ig-article-sidebar .cat-list a {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 9px 0;
	color: var(--ig-ink-soft);
	font-size: 13px;
	text-decoration: none;
}

.ig-article-sidebar .cat-count {
	color: var(--ig-muted);
}

.ig-sidebar-guide {
	padding: 12px 0;
	border-bottom: 1px solid #edf2f1;
}

.ig-sidebar-guide:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.ig-sidebar-guide a {
	display: block;
	color: var(--ig-ink-soft);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.55;
	text-decoration: none;
}

.ig-sidebar-guide span {
	display: block;
	margin-top: 5px;
	color: var(--ig-muted);
	font-size: 11px;
}

.ig-footer-grid {
	padding-top: 52px;
	padding-bottom: 46px;
}

@media (max-width: 1024px) {
	.post-grid.ig-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ig-contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.ig-utility-hero,
	.ig-blog-hero {
		padding: 34px 0 32px;
	}

	.ig-utility-hero h1,
	.ig-blog-hero h1 {
		font-size: 34px;
	}

	.ig-utility-main,
	.ig-blog-main {
		padding: 34px 0 48px;
	}

	.ig-blog-hero-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.ig-blog-search {
		padding: 15px;
	}

	.ig-topic-filter {
		margin-bottom: 28px;
	}

	.ig-blog-heading-row {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
	}

	.post-grid.ig-blog-grid {
		grid-template-columns: 1fr;
	}

	.ig-contact-primary,
	.ig-contact-checklist {
		padding: 23px 19px;
		border-radius: 16px;
	}

	.ig-policy-intro,
	.ig-policy-contact {
		padding: 20px;
	}

	.ig-policy-sections section {
		grid-template-columns: 34px minmax(0, 1fr);
		gap: 10px;
		padding: 21px 18px;
	}

	.single .main-content-area {
		padding-top: 28px;
		padding-bottom: 44px;
	}

	.single .layout-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
		width: min(calc(100% - 28px), 1180px);
	}

	.single .single-post-container {
		min-width: 0;
		width: 100%;
		padding: 22px 18px;
	}

	.single .post-breadcrumb {
		flex-wrap: nowrap;
		margin-bottom: 20px;
		padding-bottom: 4px;
		overflow-x: auto;
		white-space: nowrap;
		scrollbar-width: thin;
	}

	.single .post-breadcrumb .current {
		flex: 0 0 auto;
		max-width: 220px;
	}

	.single .post-header h1 {
		font-size: clamp(28px, 8.6vw, 36px);
		overflow-wrap: anywhere;
	}

	.single .article-content {
		overflow-wrap: anywhere;
	}

	.single .ig-article-sidebar {
		position: static;
		top: auto;
		min-width: 0;
		width: 100%;
	}

	.single .ig-article-sidebar .sidebar-widget {
		width: 100%;
	}

	.ig-footer-grid {
		padding-top: 42px;
		padding-bottom: 38px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
