/*
 * Products — archive, category, and single product page styles.
 * Loaded on: is_post_type_archive('vigilis_product'), is_tax('vigilis_category'), is_singular('vigilis_product')
 */

/* =====================
   SHARED UTILITIES
===================== */

.vg-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;
}

/* =====================
   ARCHIVE / CATEGORY — HERO
===================== */

.vg-prod-hero {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
	background-color: #063715;
	background-image: var(--vg-cat-hero-bg);
	background-size: cover;
	background-position: center top;
}

.vg-prod-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(6, 55, 21, 0.45) 0%,
		rgba(6, 55, 21, 0.80) 60%,
		rgba(6, 55, 21, 0.92) 100%
	);
}

.vg-prod-hero__content {
	position: absolute;
	bottom: 72px;
	left: 80px;
	right: 80px;
	max-width: 900px;
}

.vg-prod-breadcrumb {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-weight: 300;
	font-size: 14px;
	color: #AAC7B4;
}

.vg-prod-breadcrumb li {
	display: flex;
	align-items: center;
}

.vg-prod-breadcrumb li + li::before {
	content: "›";
	margin-right: 8px;
	color: #AAC7B4;
}

.vg-prod-breadcrumb a {
	color: #AAC7B4;
	text-decoration: none;
}

.vg-prod-breadcrumb a:hover {
	text-decoration: none;
}

.vg-prod-breadcrumb li[aria-current="page"] {
	color: #ffffff;
}

.vg-prod-hero__title {
	font-weight: 800;
	font-size: clamp(40px, 5.5vw, 64px);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: #ffffff;
	margin: 0 0 16px;
}

.vg-prod-hero__subtitle {
	font-weight: 300;
	font-size: clamp(16px, 1.25vw, 20px);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.82);
	margin: 0;
	max-width: 640px;
}

.vg-prod-hero__eyebrow {
	display: block;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-primary-300, #AAC7B4);
	margin: 0 0 12px;
}

/* =====================
   ARCHIVE / CATEGORY — FILTER BAR
===================== */

.vg-prod-filter {
	padding: 56px 80px 40px;
	background: var(--color-bg-light);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.vg-prod-filter__unit-toggle {
	margin-bottom: 0;
	/* Do NOT add padding-left/border-left here — this element IS .product-unit-toggle
	   (same DOM node), so any padding adds empty space inside the pill itself. */
}

/* Outer pill — purely a visual container. overflow:hidden clips to the pill
   shape WITHOUT creating a scroll context (that's the inner strip's job).
   No explicit width — the pill sizes to its tab content on desktop. */
.vg-prod-filter__tabs {
	min-width: 0;
	display: flex;
	overflow: hidden;
	border: 1px solid #EAE8F1;
	border-radius: 9999px;
	padding: 0;
	background: #ffffff;
}

/* Inner scroll strip — no border-radius so overflow-x:auto doesn't clip.
   padding:10px (not 8px) ensures the first/last tab's corners clear the outer
   pill's overflow:hidden clip boundary (8px clips ~1.2px at corners; 10px gives
   3.7px clearance). */
.vg-prod-filter__tabs-inner {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 10px;
	gap: 4px;
	width: 100%;
}

.vg-prod-filter__tabs-inner::-webkit-scrollbar {
	display: none;
}

.vg-prod-filter__tab {
	display: inline-flex;
	align-items: center;
	padding: 12px 32px;
	border-radius: 9999px;
	border: 1px solid rgba(8, 71, 27, 0.15);
	font-weight: 500;
	font-size: 16px;
	font-family: inherit;
	color: #020202;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.15s ease, color 0.15s ease;
}

.vg-prod-filter__tab:hover {
	background: #EAE8F1;
}

.vg-prod-filter__tab[aria-current="page"] {
	background: var(--vig-green-dark, #08471B);
	color: #ffffff;
}

/* =====================
   ARCHIVE / CATEGORY — PRODUCT GRID
===================== */

.vg-prod-section {
	padding: 80px 80px;
	background: var(--color-bg-light);
	box-sizing: border-box;
}

.vg-prod-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

/* =====================
   PRODUCT CARD
===================== */

.vg-prod-card {
	border-radius: 20px;
	border: 1px solid var(--color-neutral-200, #EAE8F1);
	overflow: hidden;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	text-decoration: none;
	color: inherit;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
	cursor: pointer;
}

.vg-prod-card:focus-visible {
	outline: 3px solid var(--color-primary-800, #08471B);
	outline-offset: 2px;
}

.vg-prod-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.13);
	border-color: var(--color-primary-600, #4F7D5D);
}

.vg-prod-card__image-wrap {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: 20px 20px 0 0;
	flex-shrink: 0;
	background: #f9f8f6;
}

.vg-prod-card__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom center;
	display: block;
	transition: transform 0.35s ease;
}

.vg-prod-card:hover .vg-prod-card__image-wrap img {
	transform: scale(1.04);
}

.vg-prod-card__image-placeholder {
	width: 100%;
	height: 100%;
	background: #EAE8F1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text-secondary);
	font-size: 14px;
	font-weight: 300;
}

.vg-prod-card__body {
	padding: 22px 24px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.vg-prod-card__title {
	font-weight: 700;
	font-size: clamp(20px, 1.8vw, 26px);
	line-height: 1.15;
	color: var(--color-primary-800, #08471B);
	margin: 0;
}

.vg-prod-card__tagline {
	font-weight: 300;
	font-size: 14px;
	color: #020202;
	margin: 0;
	line-height: 1.5;
}

.vg-prod-card__link {
	font-weight: 500;
	font-size: 14px;
	color: var(--color-primary-800, #08471B);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	text-decoration: none;
}

/* =====================
   NO RESULTS
===================== */

.vg-prod-no-results {
	text-align: center;
	padding: 80px 20px;
	font-size: 18px;
	color: #827A8E;
	font-weight: 300;
	grid-column: 1 / -1;
}

/* =====================
   ARCHIVE / CATEGORY — SEO SECTIONS
===================== */

.vg-prod-intro {
	padding: 0 80px 48px;
	background: var(--color-bg-light);
	box-sizing: border-box;
}

.vg-prod-intro__inner {
	max-width: 720px;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.7;
	color: #020202;
}

.vg-prod-intro__inner p {
	font-size: 17px;
	font-weight: 300;
	line-height: 1.7;
	color: #020202;
}

.vg-prod-seo {
	padding: 80px;
	background: var(--color-neutral-100, #F9F7FF);
	box-sizing: border-box;
}

.vg-prod-seo__inner {
	max-width: 760px;
}

.vg-prod-seo__inner h2 {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--color-primary-800, #08471B);
	margin: 48px 0 16px;
}

.vg-prod-seo__inner h2:first-child {
	margin-top: 0;
}

.vg-prod-seo__inner h3 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--color-primary-800, #08471B);
	margin: 32px 0 12px;
}

.vg-prod-seo__inner h4 {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--color-primary-800, #08471B);
	margin: 24px 0 8px;
}

.vg-prod-seo__inner p {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.7;
	color: #020202;
	margin: 0 0 16px;
}

.vg-prod-seo__inner p a,
.vg-prod-seo__inner li a {
	text-decoration: underline;
}

.vg-prod-seo__inner ul,
.vg-prod-seo__inner ol {
	margin: 0 0 16px;
	padding-left: 24px;
	color: #020202;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.7;
}

.vg-prod-seo__inner li {
	margin: 0 0 6px;
}

.vg-prod-seo__inner li:last-child {
	margin-bottom: 0;
}

.vg-prod-seo__inner > *:last-child {
	margin-bottom: 0;
}

/* =====================
   PAGINATION
===================== */

.vg-prod-pagination {
	padding: 40px 80px 80px;
	background: var(--color-bg-light);
	display: flex;
	justify-content: center;
}

.vg-prod-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid #EAE8F1;
	background: #ffffff;
	font-weight: 500;
	font-size: 14px;
	color: #827A8E;
	text-decoration: none;
	margin: 0 4px;
	transition: background 0.15s ease, color 0.15s ease;
}

.vg-prod-pagination .page-numbers:hover {
	background: #EAE8F1;
	color: #020202;
}

.vg-prod-pagination .page-numbers.current {
	background: var(--vig-green-dark, #08471B);
	border-color: var(--vig-green-dark, #08471B);
	color: #ffffff;
}

.vg-prod-pagination .page-numbers.prev,
.vg-prod-pagination .page-numbers.next {
	font-size: 18px;
}

.vg-prod-pagination .page-numbers.dots {
	border: none;
	background: none;
}

/* =====================
   SINGLE — HERO
===================== */

.product-hero {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
}

.product-hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(8, 71, 27, 0.72);
}

.product-hero__content {
	position: absolute;
	bottom: 64px;
	left: 80px;
	right: 80px;
}

.product-hero__breadcrumb {
	font-weight: 300;
	font-size: 14px;
	color: #AAC7B4;
	margin-bottom: 16px;
	display: flex;
	gap: 8px;
	list-style: none;
	padding: 0;
}

.product-hero__breadcrumb li + li::before {
	content: "›";
	margin-right: 8px;
	color: #AAC7B4;
}

.product-hero__breadcrumb a {
	color: #AAC7B4;
	text-decoration: none;
}

.product-hero__breadcrumb li[aria-current="page"] {
	color: #ffffff;
}

.product-hero__title {
	font-weight: 800;
	font-size: clamp(40px, 5vw, 64px);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: #ffffff;
	margin-bottom: 14px;
	max-width: 800px;
}

.product-hero__tagline {
	font-weight: 300;
	font-size: clamp(16px, 1.25vw, 20px);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.82);
	margin: 0 0 12px;
	max-width: 640px;
}

.product-hero__body {
	font-weight: 300;
	font-size: clamp(14px, 1vw, 16px);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	margin: 0 0 28px;
	max-width: 580px;
}

.product-hero__cta {
	display: inline-flex;
	align-items: center;
	background: var(--color-secondary-500, #F48113);
	color: #020202;
	font-weight: 600;
	font-size: 16px;
	padding: 14px 40px;
	border-radius: 9999px;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(244, 129, 19, 0.38);
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.product-hero__cta:hover {
	background: #E67E0A;
	box-shadow: 0 12px 32px rgba(244, 129, 19, 0.56);
	transform: translateY(-2px);
}

/* =====================
   SINGLE — UNIT TOGGLE
===================== */

.product-unit-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0;
	border: 1px solid var(--color-neutral-200, #EAE8F1);
	border-radius: 9999px;
	overflow: hidden;
	margin-bottom: 24px;
}

.product-unit-toggle__btn {
	background: transparent;
	border: none;
	color: var(--color-primary-600, #4F7D5D);
	font-size: 13px;
	font-weight: 500;
	font-family: inherit;
	padding: 7px 18px;
	cursor: pointer;
	touch-action: manipulation;
	transition: background 0.15s ease, color 0.15s ease;
}

/* Give each end button its own border-radius so the active background
   respects the pill shape without relying on overflow:hidden clipping. */
.product-unit-toggle__btn:first-child {
	border-radius: 9999px 0 0 9999px;
}

.product-unit-toggle__btn:last-child {
	border-radius: 0 9999px 9999px 0;
}

.product-unit-toggle__btn[aria-pressed="true"] {
	background: var(--color-primary-800, #08471B);
	color: #ffffff;
}

.product-unit-toggle__btn:hover {
	color: var(--color-primary-800, #08471B);
}

/* On iOS, the tapped button keeps a synthetic :hover state — this overrides the :hover
   colour rule above (same specificity, later source order) so white text is immediate. */
.product-unit-toggle__btn[aria-pressed="true"]:hover {
	color: #ffffff;
}

/* =====================
   SINGLE — OVERVIEW
===================== */

.product-overview {
	padding: 80px;
	box-sizing: border-box;
}

.product-overview__inner {
	display: grid;
	grid-template-columns: 6fr 5fr;
	gap: 64px;
	align-items: flex-start;
}

/* Image column (left) sticks as user scrolls through content column.
 * top clears the fixed .vig-site-header (bottom ~114px) with ~20px gap so
 * the card pins below the header instead of underneath it. */
.product-overview__image-col {
	position: sticky;
	top: 134px;
	align-self: flex-start;
}

.product-overview__title {
	font-weight: 700;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.1;
	color: var(--color-primary-800, #08471B);
	margin-bottom: 20px;
}

.product-overview__content {
	font-weight: 300;
	font-size: 18px;
	line-height: 1.6;
	color: #020202;
	margin-bottom: 40px;
}

.product-overview__content p {
	margin-bottom: 16px;
}

/* Section sub-headings inside the content column (specs, sizes) */
.product-specs__heading {
	font-weight: 700;
	font-size: 14px;
	color: var(--color-primary-600, #4F7D5D);
	margin: 32px 0 10px;
}

.product-quick-specs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

/* Material tile spans all 3 columns — it often has longer text */
.product-quick-spec--material {
	grid-column: 1 / -1;
}

.product-quick-spec {
	background: var(--color-neutral-100, #F9F7FF);
	border: 1px solid var(--color-neutral-200, #EAE8F1);
	border-radius: 12px;
	padding: 16px 18px;
}

.product-quick-spec__label {
	font-weight: 600;
	font-size: 11px;
	color: var(--color-primary-800, #08471B);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	display: block;
	margin-bottom: 6px;
}

.product-quick-spec__value {
	font-weight: 600;
	font-size: 17px;
	color: var(--color-primary-900, #063715);
	line-height: 1.2;
}

/* Unit-toggle visibility */
[data-unit-system="imperial"] .vg-metric,
[data-unit-system="metric"] .vg-imperial {
	display: none;
}

.product-overview__image {
	width: 100%;
	aspect-ratio: 5 / 6;
	border-radius: 24px;
	overflow: hidden;
	background: #f9f8f6;
	position: sticky;
	top: 134px;
}

.product-overview__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* =====================
   SINGLE — SIZES TABLE
===================== */

.product-sizes-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 32px;
	font-size: 15px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--color-neutral-200, #EAE8F1);
}

.product-sizes-table thead th {
	font-weight: 600;
	font-size: 12px;
	color: #ffffff;
	background: var(--color-primary-800, #08471B);
	padding: 14px 16px;
	text-align: left;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.product-sizes-table tbody tr:nth-child(even) {
	background: var(--color-neutral-100, #F9F7FF);
}

.product-sizes-table tbody td {
	font-weight: 400;
	color: #020202;
	padding: 14px 16px;
	border-bottom: 1px solid var(--color-neutral-200, #EAE8F1);
}

.product-sizes-table tbody tr:last-child td {
	border-bottom: none;
}

/* =====================
   SINGLE — TECH SPECS TABLE
===================== */

.tech-specs {
	padding: 80px;
	background: var(--color-bg-light);
	max-width: var(--container-max-width);
	margin: 0 auto;
}

.tech-specs__heading {
	font-weight: 700;
	font-size: clamp(26px, 2.8vw, 38px);
	color: var(--color-primary-800, #08471B);
	margin-bottom: 40px;
}

.tech-specs__table {
	width: 100%;
	border-collapse: collapse;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--color-neutral-200, #EAE8F1);
}

.tech-specs__table thead th {
	font-weight: 600;
	font-size: 12px;
	color: #ffffff;
	background: var(--color-primary-800, #08471B);
	padding: 16px;
	text-align: left;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.tech-specs__table tbody tr:nth-child(even) {
	background: var(--color-neutral-100, #F9F7FF);
}

.tech-specs__table tbody tr:nth-child(odd) {
	background: #ffffff;
}

.tech-specs__table tbody td {
	font-weight: 300;
	font-size: 16px;
	color: #020202;
	padding: 16px;
	border-bottom: 1px solid var(--color-neutral-200, #EAE8F1);
}

.tech-specs__table tbody tr:last-child td {
	border-bottom: none;
}

/* =====================
   SINGLE — DOWNLOADS
===================== */

.downloads {
	padding: 48px 80px;
	background: var(--color-bg-primary, #ffffff);
}

.downloads__inner {
	max-width: var(--container-max-width);
	margin: 0 auto;
}

.downloads__heading {
	font-weight: 700;
	font-size: clamp(26px, 2.8vw, 38px);
	color: var(--color-primary-800, #08471B);
	margin-bottom: 32px;
}

.downloads__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.downloads__item {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #ffffff;
	border-radius: 14px;
	padding: 18px 22px;
	border: 1px solid var(--color-neutral-200, #EAE8F1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: box-shadow 0.2s ease;
}

.downloads__item:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
}

.downloads__icon {
	width: 44px;
	height: 44px;
	background: var(--color-primary-800, #08471B);
	border-radius: 10px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
}

.downloads__name {
	font-weight: 500;
	font-size: 16px;
	color: #020202;
	flex: 1;
}

.downloads__link {
	font-weight: 600;
	font-size: 14px;
	color: var(--color-primary-800, #08471B);
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 1px solid currentColor;
	padding-bottom: 1px;
}

.downloads__link:hover {
	color: var(--color-primary-700, #246036);
}

/* =====================
   SINGLE — RELATED PRODUCTS
===================== */

.related-products {
	padding: 80px;
	background: var(--color-bg-light);
}

.related-products__inner {
	max-width: var(--container-max-width);
	margin: 0 auto;
}

.related-products__heading {
	font-weight: 700;
	font-size: clamp(26px, 2.8vw, 38px);
	color: var(--color-primary-800, #08471B);
	margin-bottom: 8px;
}

.related-products__subtitle {
	font-weight: 300;
	font-size: 17px;
	color: var(--color-neutral-600, #6D647B);
	margin-bottom: 40px;
	line-height: 1.5;
}

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

.related-product-card {
	border-radius: 20px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--color-neutral-200, #EAE8F1);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.related-product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.13);
	border-color: var(--color-primary-600, #4F7D5D);
}

.related-product-card__image-wrap {
	position: relative;
	height: 264px;
	overflow: hidden;
}

.related-product-card__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.related-product-card:hover .related-product-card__image-wrap img {
	transform: scale(1.04);
}

.related-product-card__image-placeholder {
	width: 100%;
	height: 100%;
	background: #f9f8f6;
}

.related-product-card__body {
	padding: 20px;
}

.related-product-card__title {
	font-weight: 700;
	font-size: 22px;
	line-height: 1.2;
	color: var(--color-primary-800, #08471B);
	margin-bottom: 8px;
}

.related-product-card__excerpt {
	font-weight: 300;
	font-size: 14px;
	color: #020202;
	margin-bottom: 16px;
	line-height: 1.5;
}

.related-product-card__link {
	font-weight: 500;
	font-size: 14px;
	color: #08471B;
	text-decoration: underline;
}


/* =====================
   TABLET + MOBILE FILTER — 1100px breakpoint
   Individual pill tabs with horizontal scroll (same as mobile).
===================== */

@media (max-width: 1100px) {

	/* Reduce filter padding */
	.vg-prod-filter {
		padding: 40px 20px 24px;
	}

	/* Remove the outer pill; individual tabs become pills instead.
	   position:relative anchors the ::after fade overlay. */
	.vg-prod-filter__tabs {
		border: none;
		border-radius: 0;
		background: transparent;
		overflow: visible;
		position: relative;
		width: 100%;
	}

	/* Right-edge gradient fade — signals that more tabs are scrollable.
	   Matches the filter bar's background colour (--color-bg-light).
	   pointer-events:none lets taps pass through to the tabs beneath. */
	.vg-prod-filter__tabs::after {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 12px; /* clear the border-bottom separator */
		width: 48px;
		background: linear-gradient(to right, transparent, var(--color-bg-light, #f6f4ef));
		pointer-events: none;
		z-index: 1;
	}

	/* Inner strip — horizontal scroll.
	   min-width:0 prevents the flex child from expanding past its assigned width,
	   which is what allows overflow-x:auto to create the scroll context. */
	.vg-prod-filter__tabs-inner {
		flex-wrap: nowrap;
		overflow-x: auto;
		scrollbar-width: none;
		min-width: 0;
		padding: 4px 0 12px;
		border-bottom: 1px solid var(--color-neutral-200, #EAE8F1);
		gap: 8px;
		width: 100%;
	}

	.vg-prod-filter__tabs-inner::-webkit-scrollbar {
		display: none;
	}

	.vg-prod-filter__tab {
		flex-shrink: 0;
		padding: 9px 18px;
		font-size: 14px;
		border: 1px solid #EAE8F1;
		background: #ffffff;
		border-radius: 9999px;
	}

	.vg-prod-filter__tab[aria-current="page"] {
		background: var(--vig-green-dark, #08471B);
		color: #ffffff;
		border-color: var(--vig-green-dark, #08471B);
	}

	/* Toggle — second row, below the scroll strip. */
	.vg-prod-filter__unit-toggle {
		margin-top: 12px;
	}

}

/* =====================
   MOBILE — 960px breakpoint
===================== */

@media (max-width: 960px) {

	/* Archive / category hero */
	.vg-prod-hero {
		height: 440px;
	}

	.vg-prod-hero__content {
		left: 20px;
		right: 20px;
		bottom: 36px;
	}

	.vg-prod-hero__title {
		font-size: 36px;
		line-height: 1.1;
	}

	.vg-prod-hero__subtitle {
		font-size: 16px;
	}

	/* Grid */
	.vg-prod-section {
		padding: 32px 20px 64px;
	}

	.vg-prod-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.vg-prod-pagination {
		padding: 40px 20px 80px;
	}

	.vg-prod-intro {
		padding: 0 20px 40px;
	}

	.vg-prod-seo {
		padding: 40px 20px;
	}

	/* Single hero */
	.product-hero {
		height: auto;
		min-height: 600px;
	}

	.product-hero__content {
		left: 20px;
		right: 20px;
		bottom: 40px;
		top: 140px;
	}

	.product-hero__breadcrumb {
		flex-wrap: wrap;
	}

	.product-hero__cta {
		font-size: 15px;
		padding: 12px 32px;
	}

	.product-hero__breadcrumb li {
		white-space: nowrap;
	}

	/* Single overview */
	.product-overview {
		padding: 40px 20px;
	}

	.product-overview__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.product-overview__image-col {
		position: static;
	}

	.product-overview__image {
		aspect-ratio: 4 / 3;
		position: static;
	}

	.product-quick-specs {
		grid-template-columns: repeat(2, 1fr);
	}

	.product-quick-spec--material {
		grid-column: 1 / -1;
	}

	/* Single — sizes table */
	.product-sizes-table {
		font-size: 14px;
	}

	.product-sizes-table thead th,
	.product-sizes-table tbody td {
		padding: 10px 12px;
	}

	/* Single sections */
	.tech-specs {
		padding: 40px 20px;
	}

	.downloads {
		padding: 40px 20px;
	}

	.related-products {
		padding: 40px 20px;
	}

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

}

/* =====================
   TABLET — 2-column product grid
===================== */

@media (min-width: 769px) and (max-width: 960px) {
	.vg-prod-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.related-products__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* =====================
   TRUST STAT BAR (archive)
===================== */

.vg-trust-bar {
	background: #08471B;
	padding: 40px 80px;
}

.vg-trust-bar__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	max-width: var(--container-max-width);
	margin: 0 auto;
}

.vg-trust-bar__stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 0 40px;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.vg-trust-bar__stat:first-child { padding-left: 0; }
.vg-trust-bar__stat:last-child  { border-right: none; }

.vg-trust-bar__number {
	font-weight: 800;
	font-size: clamp(28px, 3vw, 40px);
	color: #F48113;
	line-height: 1;
}

.vg-trust-bar__label {
	font-weight: 500;
	font-size: 14px;
	color: #AAC7B4;
	line-height: 1.4;
}

.vg-trust-bar__sublabel {
	font-weight: 300;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.4;
}

@media (max-width: 960px) {
	.vg-trust-bar {
		padding: 32px 20px;
	}

	.vg-trust-bar__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.vg-trust-bar__stat {
		padding: 0;
		border-right: none;
	}
}

/* =====================
   PRODUCT CARD — CATEGORY LABEL + SPEC PILLS
===================== */

.vg-prod-card__category {
	display: block;
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #4F7D5D;
	margin-bottom: 4px;
}

.vg-prod-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
}

.vg-prod-card__pills {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.vg-prod-card__pill {
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	color: #246036;
	background: #EAE8F1;
	border-radius: 9999px;
	padding: 3px 10px;
	white-space: nowrap;
}

.vg-prod-card__pill--biodegradable {
	background: #D4EDDA;
	color: #155724;
}

.vg-prod-card__pill--recyclable {
	background: #CCE5FF;
	color: #004085;
}

/* =====================
   CATEGORY — PREDATION HEIGHT GUIDE
===================== */

.vg-pred-guide {
	background: #ffffff;
	padding: 64px 80px;
}

.vg-pred-guide__inner {
	max-width: var(--container-max-width);
	margin: 0 auto;
	border: 1px solid #EAE8F1;
	border-radius: 20px;
	overflow: hidden;
}

.vg-pred-guide__header {
	background: #08471B;
	padding: 32px 40px;
}

.vg-pred-guide__title {
	font-weight: 700;
	font-size: clamp(22px, 2.2vw, 30px);
	color: #ffffff;
	margin: 0 0 6px;
}

.vg-pred-guide__subtitle {
	font-weight: 300;
	font-size: 15px;
	color: #AAC7B4;
	margin: 0;
}

.vg-pred-guide__body {
	padding: 40px;
}

.vg-pred-guide__sub-heading {
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #4F7D5D;
	margin: 0 0 24px;
}

.vg-pred-guide__cols {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	align-items: stretch;
}

.vg-pred-guide__col {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.vg-pred-guide__height-label {
	min-height: 52px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 8px;
}

.vg-pred-guide__metric {
	display: block;
	font-weight: 700;
	font-size: 18px;
	color: #08471B;
}

.vg-pred-guide__imperial {
	display: block;
	font-weight: 300;
	font-size: 12px;
	color: #827A8E;
}

.vg-pred-guide__bar-wrap {
	width: 48px;
	height: 160px;
	display: flex;
	align-items: flex-end;
}

.vg-pred-guide__bar {
	width: 100%;
	background: linear-gradient(to bottom, rgba(187, 218, 200, 0.92), rgba(143, 187, 154, 0.88));
	border-radius: 4px 4px 0 0;
}

.vg-pred-guide__ground {
	width: 64px;
	height: 6px;
	background: #8B6914;
	border-radius: 0 0 2px 2px;
	margin-bottom: 8px;
}

.vg-pred-guide__icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin: 4px 0 8px;
}

/* Inline SVG icons can have very large intrinsic dimensions (e.g. 1737×1737).
   Constrain them to the container so they don't overflow and block pointer events. */
.vg-pred-guide__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.vg-pred-guide__animal {
	font-weight: 700;
	font-size: 14px;
	color: #020202;
	margin: 0 0 4px;
}

.vg-pred-guide__note {
	font-weight: 300;
	font-size: 12px;
	color: var(--color-neutral-700, #584D68);
	min-height: 34px;
	margin: 0;
	line-height: 1.4;
}

.vg-pred-guide__diameter-section {
	margin-top: 32px;
	padding-top: 32px;
	border-top: 1px solid #EAE8F1;
}

.vg-pred-guide__placeholder {
	font-style: italic;
	font-weight: 300;
	font-size: 15px;
	color: #827A8E;
	padding: 20px;
	background: #F9F7FF;
	border-radius: 8px;
	border: 1px dashed #EAE8F1;
}

.vg-pred-guide__footer {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 32px;
	padding: 24px 40px;
	background: #F9F7FF;
	border-top: 1px solid #EAE8F1;
}

.vg-pred-guide__footnote {
	font-weight: 300;
	font-size: 14px;
	color: #020202;
	line-height: 1.6;
	margin: 0;
	max-width: 600px;
}

.vg-pred-guide__footnote a {
	color: #08471B;
	text-decoration: underline;
}

.vg-pred-guide__cta {
	font-weight: 600;
	font-size: 14px;
	color: #08471B;
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 1px solid currentColor;
	padding-bottom: 1px;
	flex-shrink: 0;
}

.vg-pred-guide__cta:hover { color: #246036; }

@media (max-width: 960px) {
	.vg-pred-guide { padding: 40px 20px; }
	.vg-pred-guide__header { padding: 24px 20px; }
	.vg-pred-guide__body { padding: 24px 20px; }
	.vg-pred-guide__cols { grid-template-columns: repeat(3, 1fr); gap: 12px; }
	.vg-pred-guide__footer { flex-direction: column; gap: 16px; padding: 20px; }
}

@media (max-width: 480px) {
	.vg-pred-guide__cols { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

/* =====================
   APPLICATION CROSS-LINK TILES
===================== */

.vg-app-tiles {
	background: var(--color-bg-light, #fafaf8);
	padding: 64px 80px;
}

.vg-app-tiles__inner {
	max-width: var(--container-max-width);
	margin: 0 auto;
}

.vg-app-tiles__heading {
	font-weight: 700;
	font-size: clamp(24px, 2.4vw, 34px);
	color: #08471B;
	margin: 0 0 8px;
}

.vg-app-tiles__subtitle {
	font-weight: 300;
	font-size: 16px;
	color: var(--color-neutral-700, #584D68);
	margin: 0 0 40px;
}

.vg-app-tiles__grid {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

@media (max-width: 960px) {
	.vg-app-tiles { padding: 40px 20px; }
	.vg-app-tiles__grid { gap: 12px; }
}

/* =====================
   FAQ ACCORDION (category + single — shared)
===================== */

.vg-faq {
	background: #ffffff;
	padding: 64px 80px;
}

.vg-faq__inner {
	max-width: var(--container-max-width);
	margin: 0 auto;
}

.vg-faq__heading {
	font-weight: 700;
	font-size: clamp(26px, 2.8vw, 38px);
	color: #08471B;
	margin: 0 0 32px;
}

.vg-faq__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.vg-faq__item {
	background: #ffffff;
	border: 1px solid #EAE8F1;
	border-radius: 12px;
	overflow: hidden;
}

.vg-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	font-weight: 600;
	font-size: 16px;
	color: #08471B;
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.vg-faq__question::-webkit-details-marker { display: none; }
.vg-faq__question span:first-child { flex: 1; }

.vg-faq__chevron {
	font-size: 20px;
	color: #4F7D5D;
	transition: transform 0.2s ease;
	flex-shrink: 0;
}

.vg-faq__item details[open] .vg-faq__chevron {
	transform: rotate(90deg);
}

.vg-faq__answer {
	font-weight: 300;
	font-size: 15px;
	color: #333;
	line-height: 1.7;
	padding: 0 22px 18px;
}

.vg-faq__answer p { margin: 0 0 12px; }
.vg-faq__answer p:last-child { margin-bottom: 0; }
.vg-faq__answer a { text-decoration: underline; }

@media (max-width: 960px) {
	.vg-faq { padding: 40px 20px; }
	.vg-faq__question { padding: 16px 18px; font-size: 15px; }
	.vg-faq__answer { padding: 0 18px 16px; }
}

/* =====================
   SINGLE — PREDATION TILES
===================== */

.vg-pred-tiles {
	margin-top: 32px;
	margin-bottom: 24px;
}

.vg-pred-tiles__label {
	display: block;
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #4F7D5D;
	margin-bottom: 12px;
}

.vg-pred-tiles__row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: stretch;
}

.vg-pred-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	gap: 4px;
	padding: 12px 14px;
	background: #F9F7FF;
	border: 1px solid #EAE8F1;
	border-radius: 12px;
	min-width: 72px;
}

.vg-pred-tile__icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.vg-pred-tile__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.vg-pred-tile__animal {
	font-weight: 600;
	font-size: 12px;
	color: #020202;
	margin: 0;
	text-align: center;
}

.vg-pred-tile__height {
	font-weight: 300;
	font-size: 11px;
	color: var(--color-neutral-700, #584D68);
	margin: 0;
}

/* =====================
   SINGLE — SUSTAINABILITY / TRUST BAND
===================== */

.vg-sustain-band {
	background: #063715;
	padding: 64px 80px;
}

.vg-sustain-band__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	max-width: var(--container-max-width);
	margin: 0 auto;
}

.vg-sustain-tile {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vg-sustain-tile__icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.vg-sustain-tile__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.vg-sustain-tile__badge {
	display: inline-block;
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-secondary-300, #FFB56E);
	background: rgba(244, 129, 19, 0.15);
	border-radius: 9999px;
	padding: 4px 12px;
	width: fit-content;
}

.vg-sustain-tile__heading {
	font-weight: 700;
	font-size: clamp(20px, 2vw, 26px);
	color: #ffffff;
	margin: 0;
	line-height: 1.2;
}

.vg-sustain-tile__body {
	font-weight: 300;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.65;
	margin: 0;
}

@media (max-width: 960px) {
	.vg-sustain-band { padding: 40px 20px; }
	.vg-sustain-band__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   PRODUCT CTA BAND (single product)
   ============================================================ */
.product-cta-band {
	background: #08471B;
	color: #F9F7FF;
	padding: 48px 1.5rem;
	text-align: center;
}
.product-cta-band__inner {
	max-width: 680px;
	margin: 0 auto;
}
.product-cta-band__eyebrow {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #AAC7B4;
	margin: 0 0 0.75rem;
}
.product-cta-band__heading {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	margin: 0 0 1rem;
	color: #F9F7FF;
}
.product-cta-band__subtext {
	font-size: 1rem;
	color: #AAC7B4;
	margin: 0 0 2rem;
	line-height: 1.6;
}
.product-cta-band__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}
.product-cta-band__cta {
	display: inline-block;
	padding: 0.75rem 2rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.product-cta-band__cta:focus-visible {
	outline: 3px solid #F48113;
	outline-offset: 3px;
}
.product-cta-band__cta--primary {
	background: #F48113;
	color: #020202;
	border: 2px solid #F48113;
}
.product-cta-band__cta--primary:hover {
	background: #E67E0A;
	border-color: #E67E0A;
}
.product-cta-band__cta--secondary {
	background: transparent;
	color: #F9F7FF;
	border: 2px solid #AAC7B4;
}
.product-cta-band__cta--secondary:hover {
	border-color: #F9F7FF;
	color: #F9F7FF;
}
@media (max-width: 480px) {
	.product-cta-band {
		padding: 2.5rem 1.25rem;
	}
	.product-cta-band__cta {
		width: 100%;
		text-align: center;
	}
}

/* ============================================================
   FLOATING ACTION BUTTONS (single product)
   ============================================================ */
.vg-fab {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	display: flex;
	gap: 0.75rem;
	z-index: 99; /* below site header (z-index: 100) */
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}
.vg-fab.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}
.vg-fab__btn {
	display: inline-block;
	padding: 0.65rem 1.5rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s;
	box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.vg-fab__btn:focus-visible {
	outline: 3px solid #F48113;
	outline-offset: 3px;
}
.vg-fab__btn--primary {
	background: #F48113;
	color: #020202;
	border: 2px solid #F48113;
}
.vg-fab__btn--primary:hover {
	background: #E67E0A;
	border-color: #E67E0A;
}
.vg-fab__btn--secondary {
	background: #08471B;
	color: #F9F7FF;
	border: 2px solid #AAC7B4;
}
.vg-fab__btn--secondary:hover {
	border-color: #F9F7FF;
}
/* =====================
   SMALL MOBILE — 480px
===================== */

@media (max-width: 480px) {

	/* Application tiles — limit to 2 per row; orphan centres */
	.vg-app-tiles__grid {
		justify-content: center;
	}

	.vig-product-families__application-card--minimal {
		flex: 0 1 calc(50% - 6px);
		max-width: calc(50% - 6px);
	}

	/* Unit toggle — hit 44px minimum tap target */
	.product-unit-toggle__btn {
		padding: 12px 20px;
		font-size: 14px;
	}

}

@media (max-width: 600px) {
	.vg-fab__btn--desktop-only {
		display: none;
	}
}

/* =====================
   RELATED CASE STUDIES — product page
   "In the field" section above CTA band. Reuses .vg-blog-grid / .vg-blog-card
   from blog.css (which is enqueued on post pages). On product pages, blog.css
   is NOT loaded, so we include the minimal grid styles here.
===================== */
.vg-related-cs {
	background: var(--color-bg-light);
	padding: 80px 80px;
}

.vg-related-cs__inner {
	max-width: var(--container-max-width);
	margin: 0 auto;
}

.vg-related-cs__heading {
	font-size: clamp(26px, 2.8vw, 38px);
	font-weight: 700;
	color: var(--color-primary-800, #08471B);
	margin: 0 0 8px;
}

.vg-related-cs__subtitle {
	font-size: 17px;
	font-weight: 300;
	color: var(--color-neutral-600, #6D647B);
	margin: 0 0 40px;
}

/* Minimal blog card grid — mirrors blog.css for use on product pages */
.vg-related-cs .vg-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.vg-related-cs .vg-blog-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 2px 8px rgba(8, 71, 27, 0.07);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.vg-related-cs .vg-blog-card:hover {
	box-shadow: 0 6px 20px rgba(8, 71, 27, 0.14);
	transform: translateY(-2px);
}

.vg-related-cs .vg-blog-card__image-wrap {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #e8ede9;
}

.vg-related-cs .vg-blog-card__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.vg-related-cs .vg-blog-card:hover .vg-blog-card__image-wrap img {
	transform: scale(1.04);
}

.vg-related-cs .vg-blog-card__image-placeholder {
	width: 100%;
	height: 100%;
	background: #c8d8cb;
}

.vg-related-cs .vg-blog-card__badges {
	position: absolute;
	top: 12px;
	left: 12px;
}

.vg-related-cs .vg-blog-card__badge {
	display: inline-block;
	padding: 4px 10px;
	background: var(--color-primary-900, #08471b);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 3px;
}

.vg-related-cs .vg-blog-card__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 12px;
}

.vg-related-cs .vg-blog-card__title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-primary-900);
	line-height: 1.4;
	margin: 0;
}

.vg-related-cs .vg-blog-card__title a {
	color: inherit;
	text-decoration: none;
}

.vg-related-cs .vg-blog-card__title a:hover {
	color: var(--color-accent, #F48113);
}

.vg-related-cs .vg-blog-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--color-primary-800, #08471B);
	text-decoration: none;
	margin-top: auto;
}

.vg-related-cs .vg-blog-card__arrow {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

@media (max-width: 1024px) {
	.vg-related-cs {
		padding: 64px 40px;
	}
}

@media (max-width: 768px) {
	.vg-related-cs {
		padding: 56px 24px;
	}

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

@media (max-width: 480px) {
	.vg-related-cs {
		padding: 48px 16px;
	}

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