/* =========================================================
   Vinalgros.be — main stylesheet
   Palette + type per design brief. No external font requests.
   ========================================================= */

:root {
	--vg-bg: #F7F4EF;
	--vg-white: #FFFFFF;
	--vg-text: #292626;
	--vg-text-2: #706B69;
	--vg-footer: #555152;
	--vg-graphite: #3F3B3C;
	--vg-wine: #8A2435;
	--vg-bordeaux: #651927;
	--vg-red-muted: #A23B48;
	--vg-wine-bg: #F2E5E7;
	--vg-border: #DDD7D3;

	--vg-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--vg-font-display: "Avenir Next Condensed", "Helvetica Neue Condensed", "Arial Narrow", "Segoe UI", Arial, sans-serif;

	--vg-radius: 10px;
	--vg-shadow: 0 1px 2px rgba(41, 38, 38, 0.05), 0 6px 18px rgba(41, 38, 38, 0.06);
	--vg-maxw: 1180px;
	--vg-maxw-narrow: 820px;
}

/* ---------- Base ---------- */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
	margin: 0;
	background: var(--vg-bg);
	color: var(--vg-text);
	font-family: var(--vg-font-body);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

a { color: var(--vg-wine); text-decoration: none; transition: color 0.15s ease; }
a:hover, a:focus { color: var(--vg-bordeaux); }

h1, h2, h3, h4 {
	font-family: var(--vg-font-display);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.01em;
	color: var(--vg-text);
	margin: 0 0 0.5em;
}

.vg-container {
	max-width: var(--vg-maxw);
	margin: 0 auto;
	padding: 0 24px;
}
.vg-container--narrow { max-width: var(--vg-maxw-narrow); }

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px; width: 1px; overflow: hidden;
}
.skip-link:focus {
	clip: auto; height: auto; width: auto;
	position: fixed; top: 8px; left: 8px; z-index: 10000;
	background: var(--vg-white); color: var(--vg-wine);
	padding: 10px 16px; border-radius: 6px; box-shadow: var(--vg-shadow);
}

:focus-visible { outline: 2px solid var(--vg-wine); outline-offset: 2px; }

/* ---------- Buttons ---------- */

.vg-btn {
	display: inline-block;
	font-family: var(--vg-font-body);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	padding: 12px 24px;
	border-radius: 8px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.vg-btn--primary { background: var(--vg-wine); color: #fff; }
.vg-btn--primary:hover, .vg-btn--primary:focus { background: var(--vg-bordeaux); color: #fff; }
.vg-btn--ghost {
	background: transparent;
	color: var(--vg-text-2);
	border-color: var(--vg-border);
}
.vg-btn--ghost:hover, .vg-btn--ghost:focus { color: var(--vg-wine); border-color: var(--vg-wine); }

/* ---------- Top bar ---------- */

.vg-topbar {
	background: var(--vg-graphite);
	color: #CFCAC8;
	font-size: 13px;
}
.vg-topbar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	min-height: 36px;
	flex-wrap: wrap;
}
.vg-topbar__tagline { margin: 0; letter-spacing: 0.04em; }
.vg-topbar__meta { display: flex; align-items: center; gap: 16px; }
.vg-topbar__email { color: #CFCAC8; }
.vg-topbar__email:hover { color: #fff; }

.vg-social { display: flex; gap: 10px; list-style: none; margin: 0; padding: 0; }
.vg-social a {
	display: inline-flex; width: 26px; height: 26px;
	align-items: center; justify-content: center;
	color: inherit; border-radius: 6px;
}
.vg-social svg { width: 17px; height: 17px; }
.vg-social--top a { color: #CFCAC8; }
.vg-social--top a:hover { color: #fff; }

/* ---------- Header ---------- */

.vg-header__main {
	background: var(--vg-white);
	border-bottom: 1px solid var(--vg-border);
}
.has-sticky-header .vg-header__main {
	position: sticky; top: 0; z-index: 900;
}
.vg-header__inner {
	display: flex;
	align-items: center;
	gap: 32px;
	min-height: 72px;
}

.vg-brand { flex-shrink: 0; }
.vg-brand__text {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--vg-font-display);
	font-size: 26px; font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--vg-text);
}
.vg-brand__text:hover { color: var(--vg-text); }
.vg-brand__mark { width: 26px; height: 26px; color: var(--vg-wine); }
.vg-brand__tld { color: var(--vg-wine); }
.custom-logo { max-height: 56px; width: auto; }

.vg-nav { flex: 1; }
.vg-nav__list {
	display: flex; gap: 4px;
	list-style: none; margin: 0; padding: 0;
	flex-wrap: wrap;
}
.vg-nav__list a {
	display: block;
	padding: 24px 14px;
	color: var(--vg-text);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.02em;
	position: relative;
}
.vg-nav__list a:hover { color: var(--vg-wine); }
.vg-nav__list > .current-menu-item > a,
.vg-nav__list > .current-menu-ancestor > a { color: var(--vg-wine); }
.vg-nav__list > .current-menu-item > a::after {
	content: ""; position: absolute; left: 14px; right: 14px; bottom: 16px;
	height: 2px; background: var(--vg-wine); border-radius: 2px;
}

/* Dropdowns */
.vg-nav__list li { position: relative; }
.vg-nav__list .sub-menu {
	position: absolute; top: 100%; left: 0;
	min-width: 200px;
	background: var(--vg-white);
	border: 1px solid var(--vg-border);
	border-radius: 8px;
	box-shadow: var(--vg-shadow);
	list-style: none; margin: 0; padding: 8px 0;
	opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
	z-index: 950;
}
.vg-nav__list li:hover > .sub-menu,
.vg-nav__list li:focus-within > .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.vg-nav__list .sub-menu a { padding: 9px 18px; font-weight: 400; }
.vg-nav__list .sub-menu a:hover { background: var(--vg-wine-bg); color: var(--vg-bordeaux); }

.vg-header__actions { display: flex; align-items: center; gap: 8px; }
.vg-search-toggle, .vg-burger {
	background: none; border: 1px solid transparent;
	width: 42px; height: 42px; border-radius: 8px;
	display: inline-flex; align-items: center; justify-content: center;
	cursor: pointer; color: var(--vg-text);
}
.vg-search-toggle:hover, .vg-burger:hover { color: var(--vg-wine); border-color: var(--vg-border); }
.vg-search-toggle svg { width: 20px; height: 20px; }

.vg-burger { flex-direction: column; gap: 5px; display: none; }
.vg-burger span {
	display: block; width: 20px; height: 2px;
	background: currentColor; border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.vg-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vg-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vg-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.vg-searchbar {
	border-top: 1px solid var(--vg-border);
	background: var(--vg-white);
	padding: 16px 0;
}
.vg-searchform { display: flex; gap: 8px; max-width: 560px; }
.vg-searchform__input {
	flex: 1;
	padding: 11px 16px;
	border: 1px solid var(--vg-border);
	border-radius: 8px;
	font-size: 15px;
	font-family: inherit;
	background: var(--vg-bg);
	color: var(--vg-text);
}
.vg-searchform__input:focus { outline: 2px solid var(--vg-wine); outline-offset: 0; border-color: var(--vg-wine); }
.vg-searchform__submit {
	background: var(--vg-wine); color: #fff;
	border: none; border-radius: 8px;
	width: 46px; display: inline-flex; align-items: center; justify-content: center;
	cursor: pointer;
}
.vg-searchform__submit:hover { background: var(--vg-bordeaux); }
.vg-searchform__submit svg { width: 19px; height: 19px; }

/* ---------- Score badge ---------- */

.vg-score {
	display: inline-flex; align-items: baseline; gap: 4px;
	background: var(--vg-wine); color: #fff;
	border-radius: 8px;
	padding: 5px 10px;
	font-weight: 700;
	line-height: 1;
}
.vg-score__value { font-size: 17px; }
.vg-score__max { font-size: 11px; font-weight: 500; opacity: 0.85; }
.vg-score--card { position: absolute; right: 12px; bottom: 12px; box-shadow: 0 2px 8px rgba(41,38,38,0.25); }
.vg-score--hero .vg-score__value { font-size: 22px; }
.vg-score--big { padding: 12px 18px; border-radius: 10px; }
.vg-score--big .vg-score__value { font-size: 34px; }
.vg-score--big .vg-score__max { font-size: 14px; }
.vg-score--inline { background: var(--vg-wine-bg); color: var(--vg-bordeaux); }

/* ---------- Sections ---------- */

.vg-main { min-height: 50vh; }

.vg-section { padding: 56px 0; }
.vg-section--tinted { background: var(--vg-white); border-top: 1px solid var(--vg-border); border-bottom: 1px solid var(--vg-border); }
.vg-section__head {
	display: flex; align-items: baseline; justify-content: space-between;
	gap: 16px; margin-bottom: 28px; flex-wrap: wrap;
}
.vg-section__title { font-size: 32px; margin: 0; }
.vg-section__sub { margin: 0; color: var(--vg-text-2); font-size: 15px; }
.vg-section__link { font-size: 15px; font-weight: 600; white-space: nowrap; }

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

/* ---------- Hero ---------- */

.vg-hero { padding: 40px 0 8px; }
.vg-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: 26px;
	align-items: start;
}
.vg-hero__main {
	background: var(--vg-white);
	border: 1px solid var(--vg-border);
	border-radius: var(--vg-radius);
	overflow: hidden;
	box-shadow: var(--vg-shadow);
}
.vg-hero__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; }
.vg-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.vg-hero__body { padding: 28px 32px 32px; }
.vg-hero__title { font-size: 40px; margin: 6px 0 12px; }
.vg-hero__title a { color: inherit; }
.vg-hero__title a:hover { color: var(--vg-bordeaux); }
.vg-hero__excerpt { color: var(--vg-text-2); margin: 0 0 20px; }
.vg-hero__meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.vg-hero__side { display: grid; gap: 26px; align-content: start; }
.vg-hero__mini {
	display: grid; grid-template-columns: 110px 1fr; gap: 16px;
	background: var(--vg-white);
	border: 1px solid var(--vg-border);
	border-radius: var(--vg-radius);
	padding: 14px;
	align-items: center;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.vg-hero__mini:hover { transform: translateY(-2px); box-shadow: var(--vg-shadow); }
.vg-hero__mini-media { border-radius: 8px; overflow: hidden; aspect-ratio: 4 / 3; }
.vg-hero__mini-media img { width: 100%; height: 100%; object-fit: cover; }
.vg-hero__mini-title { font-size: 18px; margin: 2px 0 8px; }
.vg-hero__mini-title a { color: inherit; }
.vg-hero__mini-title a:hover { color: var(--vg-bordeaux); }

/* ---------- Cards ---------- */

.vg-card {
	background: var(--vg-white);
	border: 1px solid var(--vg-border);
	border-radius: var(--vg-radius);
	overflow: hidden;
	display: flex; flex-direction: column;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.vg-card:hover { transform: translateY(-3px); box-shadow: var(--vg-shadow); }
.vg-card__media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--vg-wine-bg); }
.vg-card__media img { width: 100%; height: 100%; object-fit: cover; }
.vg-card__placeholder {
	display: block; width: 100%; height: 100%;
	background: linear-gradient(150deg, var(--vg-wine-bg), var(--vg-bg));
}
.vg-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.vg-card__eyebrow {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	color: var(--vg-wine);
	display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap;
}
.vg-card__eyebrow a { color: inherit; }
.vg-card__country { color: var(--vg-text-2); font-weight: 500; letter-spacing: 0.06em; }
.vg-card__title { font-size: 21px; margin: 0; }
.vg-card__title a { color: inherit; }
.vg-card:hover .vg-card__title a, .vg-card__title a:hover { color: var(--vg-bordeaux); }
.vg-card__excerpt { margin: 0; color: var(--vg-text-2); font-size: 15px; flex: 1; }
.vg-card__more { font-size: 14px; font-weight: 600; margin-top: 4px; }

/* ---------- Categories ---------- */

.vg-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vg-cat {
	display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
	background: var(--vg-bg);
	border: 1px solid var(--vg-border);
	border-radius: 8px;
	padding: 18px 22px;
	color: var(--vg-text);
	transition: border-color 0.15s ease, background 0.15s ease;
}
.vg-cat:hover { border-color: var(--vg-wine); background: var(--vg-wine-bg); color: var(--vg-bordeaux); }
.vg-cat__name { font-family: var(--vg-font-display); font-size: 19px; font-weight: 500; }
.vg-cat__count { font-size: 13px; color: var(--vg-text-2); white-space: nowrap; }

/* ---------- Ranking ---------- */

.vg-ranking { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.vg-ranking__item {
	display: grid;
	grid-template-columns: 44px 88px 1fr auto;
	gap: 18px; align-items: center;
	background: var(--vg-white);
	border: 1px solid var(--vg-border);
	border-radius: var(--vg-radius);
	padding: 14px 20px 14px 14px;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.vg-ranking__item:hover { transform: translateY(-2px); box-shadow: var(--vg-shadow); }
.vg-ranking__pos {
	font-family: var(--vg-font-display);
	font-size: 26px; font-weight: 600;
	color: var(--vg-red-muted);
	text-align: center;
}
.vg-ranking__media { border-radius: 8px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--vg-wine-bg); }
.vg-ranking__media img { width: 100%; height: 100%; object-fit: cover; }
.vg-ranking__title { font-size: 19px; margin: 0 0 2px; }
.vg-ranking__title a { color: inherit; }
.vg-ranking__title a:hover { color: var(--vg-bordeaux); }
.vg-ranking__origin { margin: 0; font-size: 13px; color: var(--vg-text-2); }

/* ---------- Archives ---------- */

.vg-archive { padding: 48px 24px 64px; }
.vg-archive__head { margin-bottom: 32px; max-width: 720px; }
.vg-archive__title { font-size: 38px; margin: 8px 0 10px; }
.vg-archive__intro { color: var(--vg-text-2); margin: 0; }
.vg-archive__query { color: var(--vg-wine); }
.vg-empty { color: var(--vg-text-2); }

.vg-breadcrumbs { font-size: 13px; color: var(--vg-text-2); margin-bottom: 10px; }
.vg-breadcrumbs a { color: var(--vg-text-2); }
.vg-breadcrumbs a:hover { color: var(--vg-wine); }
.vg-breadcrumbs__sep { margin: 0 8px; opacity: 0.6; }

.pagination, .navigation.pagination { margin-top: 40px; }
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.nav-links .page-numbers {
	display: inline-flex; min-width: 40px; height: 40px;
	align-items: center; justify-content: center;
	padding: 0 12px;
	background: var(--vg-white);
	border: 1px solid var(--vg-border);
	border-radius: 8px;
	color: var(--vg-text);
	font-size: 15px;
}
.nav-links .page-numbers.current { background: var(--vg-wine); border-color: var(--vg-wine); color: #fff; }
.nav-links .page-numbers:hover:not(.current) { border-color: var(--vg-wine); color: var(--vg-wine); }

/* ---------- Single review ---------- */

.vg-review__header { padding: 40px 0 0; }
.vg-review__title { font-size: 42px; margin: 6px 0 12px; }
.vg-review__lead { font-size: 19px; color: var(--vg-text-2); margin: 0 0 16px; }
.vg-review__meta {
	display: flex; flex-wrap: wrap; gap: 6px 20px;
	font-size: 13px; color: var(--vg-text-2);
	margin-bottom: 26px;
}

.vg-review__heroline {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: 26px;
	align-items: stretch;
	margin-bottom: 40px;
}
.vg-review__figure {
	margin: 0; border-radius: var(--vg-radius); overflow: hidden;
	border: 1px solid var(--vg-border);
}
.vg-review__figure img { width: 100%; height: 100%; object-fit: cover; }
.vg-review__verdictcard {
	background: var(--vg-white);
	border: 1px solid var(--vg-border);
	border-radius: var(--vg-radius);
	padding: 28px;
	display: flex; flex-direction: column; gap: 12px;
	align-items: flex-start;
}
.vg-review__verdictlabel {
	margin: 0;
	font-size: 12px; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.09em;
	color: var(--vg-text-2);
}
.vg-review__summary { margin: 0; font-size: 15px; color: var(--vg-text); }

.vg-review__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 48px;
	padding-bottom: 56px;
}
.vg-review__content { min-width: 0; }
.vg-review__aside { position: relative; }

.vg-brief {
	background: var(--vg-wine-bg);
	border-left: 3px solid var(--vg-wine);
	border-radius: 0 var(--vg-radius) var(--vg-radius) 0;
	padding: 20px 26px;
	margin-bottom: 32px;
}
.vg-brief h2 { font-size: 20px; margin: 0 0 8px; color: var(--vg-bordeaux); }
.vg-brief p { margin: 0; }

/* Panels */
.vg-panel {
	background: var(--vg-white);
	border: 1px solid var(--vg-border);
	border-radius: var(--vg-radius);
	padding: 28px 30px;
	margin: 32px 0;
}
.vg-panel__title { font-size: 24px; margin: 0 0 20px; }

/* Product sheet */
.vg-sheet__list { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.vg-sheet__row {
	display: flex; justify-content: space-between; gap: 16px;
	padding: 10px 0;
	border-bottom: 1px solid var(--vg-border);
	font-size: 15px;
}
.vg-sheet__row dt { color: var(--vg-text-2); }
.vg-sheet__row dd { margin: 0; text-align: right; font-weight: 500; }

/* Rating bars */
.vg-bars { display: grid; gap: 16px; }
.vg-bar__head { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 6px; }
.vg-bar__label { color: var(--vg-text); font-weight: 500; }
.vg-bar__value { color: var(--vg-text-2); }
.vg-bar__track { height: 6px; background: var(--vg-bg); border: 1px solid var(--vg-border); border-radius: 4px; overflow: hidden; }
.vg-bar__fill { height: 100%; background: var(--vg-wine); border-radius: 4px; }

/* Tasting profile */
.vg-profile__row {
	display: flex; justify-content: space-between; align-items: center;
	gap: 20px; padding: 9px 0;
	border-bottom: 1px solid var(--vg-border);
}
.vg-profile__row:last-child { border-bottom: 0; }
.vg-profile__label { font-size: 15px; }
.vg-profile__dots { display: inline-flex; gap: 5px; }
.vg-dot {
	width: 9px; height: 9px; border-radius: 50%;
	background: var(--vg-bg); border: 1px solid var(--vg-border);
}
.vg-dot.is-on { background: var(--vg-red-muted); border-color: var(--vg-red-muted); }

/* Pros / cons */
.vg-proscons {
	display: grid; grid-template-columns: 1fr 1fr; gap: 26px;
	margin: 32px 0;
}
.vg-proscons__col {
	background: var(--vg-white);
	border: 1px solid var(--vg-border);
	border-radius: var(--vg-radius);
	padding: 24px 28px;
}
.vg-proscons__col h3 { font-size: 20px; margin: 0 0 14px; }
.vg-proscons__col--pros h3 { color: var(--vg-graphite); }
.vg-proscons__col--cons h3 { color: var(--vg-bordeaux); }
.vg-proscons__col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.vg-proscons__col li { position: relative; padding-left: 22px; font-size: 15px; }
.vg-proscons__col--pros li::before {
	content: ""; position: absolute; left: 0; top: 9px;
	width: 10px; height: 2px; background: var(--vg-graphite);
}
.vg-proscons__col--cons li::before {
	content: ""; position: absolute; left: 2px; top: 7px;
	width: 6px; height: 6px; border-radius: 50%; background: var(--vg-red-muted);
}

.vg-review__disclaimer {
	font-size: 13px; color: var(--vg-text-2);
	border-top: 1px solid var(--vg-border);
	padding-top: 18px; margin-top: 40px;
}

/* Table of contents */
.vg-toc {
	position: sticky; top: 96px;
	background: var(--vg-white);
	border: 1px solid var(--vg-border);
	border-radius: var(--vg-radius);
	padding: 20px 22px;
}
.vg-toc__toggle {
	background: none; border: none; padding: 0;
	font-family: var(--vg-font-display);
	font-size: 19px; font-weight: 500;
	color: var(--vg-text);
	cursor: default;
	width: 100%; text-align: left;
}
.vg-toc__list { margin: 12px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.vg-toc__list a {
	display: block; font-size: 14px; color: var(--vg-text-2);
	padding: 3px 0 3px 12px;
	border-left: 2px solid var(--vg-border);
}
.vg-toc__list a:hover, .vg-toc__list a.is-active { color: var(--vg-wine); border-left-color: var(--vg-wine); }

/* Entry content */
.entry-content { font-size: 17px; }
.entry-content h2 { font-size: 28px; margin: 1.6em 0 0.6em; }
.entry-content h3 { font-size: 22px; margin: 1.4em 0 0.5em; }
.entry-content p { margin: 0 0 1.2em; }
.entry-content blockquote {
	margin: 1.5em 0; padding: 4px 24px;
	border-left: 3px solid var(--vg-wine);
	color: var(--vg-text-2);
	background: var(--vg-white);
	border-radius: 0 8px 8px 0;
}
.entry-content img { border-radius: 8px; }
.entry-content ul, .entry-content ol { margin: 0 0 1.2em; padding-left: 1.4em; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 15px; }
.entry-content th, .entry-content td { border: 1px solid var(--vg-border); padding: 10px 14px; text-align: left; }
.entry-content th { background: var(--vg-bg); }
.alignwide { margin-left: -60px; margin-right: -60px; max-width: none; }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: none; }

/* ---------- Comments ---------- */

.vg-comments { margin: 48px 0; }
.vg-comments__title { font-size: 26px; }
.vg-comments__list { list-style: none; margin: 0 0 32px; padding: 0; }
.vg-comments__list .comment-body {
	background: var(--vg-white);
	border: 1px solid var(--vg-border);
	border-radius: var(--vg-radius);
	padding: 18px 22px;
	margin-bottom: 16px;
}
.vg-comments__list .children { list-style: none; padding-left: 32px; }
.comment-form label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%; padding: 10px 14px;
	border: 1px solid var(--vg-border); border-radius: 8px;
	font-family: inherit; font-size: 15px;
	background: var(--vg-white); color: var(--vg-text);
	margin-bottom: 14px;
}
.comment-form .submit {
	background: var(--vg-wine); color: #fff;
	border: none; border-radius: 8px;
	padding: 12px 24px; font-weight: 600; font-size: 15px;
	cursor: pointer;
}
.comment-form .submit:hover { background: var(--vg-bordeaux); }

/* ---------- Widgets ---------- */

.widget { margin-bottom: 28px; }
.widget-title { font-size: 20px; }

/* ---------- Footer (reference style) ---------- */

.vg-footer { background: var(--vg-footer); color: #C9C4C2; }

.vg-footer__features { padding: 64px 0 56px; }
.vg-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 48px;
}
.vg-footer__feature { display: flex; gap: 18px; align-items: flex-start; }
.vg-footer__icon { width: 44px; height: 44px; flex-shrink: 0; color: #DAD5D3; }
.vg-footer__feature-title {
	font-size: 17px; font-weight: 600;
	color: #F1EEEC; margin: 2px 0 8px;
	font-family: var(--vg-font-body);
	letter-spacing: 0.01em;
}
.vg-footer__feature-text { margin: 0; font-size: 14px; line-height: 1.6; color: #C9C4C2; }
.vg-footer__feature-text a { color: #E8B7BF; }
.vg-footer__feature-text a:hover { color: #fff; }

.vg-footer__widgets { padding: 0 0 32px; }

.vg-footer__rule {
	height: 1px;
	background: rgba(221, 215, 211, 0.25);
	max-width: var(--vg-maxw);
	margin: 0 auto;
}

.vg-footer__bottom { padding: 48px 0 0; }
.vg-footer__bottom-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
}
.vg-brand__text--footer { font-size: 24px; color: #F1EEEC; }
.vg-brand__text--footer:hover { color: #fff; }
.vg-brand__text--footer .vg-brand__tld { color: var(--vg-red-muted); }
.vg-footer__about { font-size: 14px; line-height: 1.6; margin: 12px 0 16px; color: #C9C4C2; }
.vg-social--footer a { color: #C9C4C2; border: 1px solid rgba(221, 215, 211, 0.3); }
.vg-social--footer a:hover { color: #fff; border-color: var(--vg-red-muted); }

.vg-footer__menu-title {
	font-size: 13px; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.1em;
	color: #F1EEEC; margin: 0 0 14px;
	font-family: var(--vg-font-body);
}
.vg-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.vg-footer__links a { color: #C9C4C2; font-size: 14px; }
.vg-footer__links a:hover { color: var(--vg-red-muted); }

.vg-footer__legalbar {
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px; flex-wrap: wrap;
	border-top: 1px solid rgba(221, 215, 211, 0.25);
	padding-top: 20px; padding-bottom: 24px;
	font-size: 13px;
}
.vg-footer__disclaimer { margin: 0; color: #F1EEEC; font-weight: 500; }
.vg-footer__copy { margin: 0; color: #A8A3A1; }
.vg-totop {
	width: 38px; height: 38px;
	border-radius: 8px;
	background: transparent;
	border: 1px solid rgba(221, 215, 211, 0.3);
	color: #C9C4C2;
	display: inline-flex; align-items: center; justify-content: center;
	cursor: pointer;
	transition: border-color 0.15s ease, color 0.15s ease;
}
.vg-totop:hover { border-color: var(--vg-red-muted); color: #fff; }
.vg-totop svg { width: 18px; height: 18px; }

/* ---------- Age gate ---------- */

.vg-age-gate {
	position: fixed; inset: 0; z-index: 9999;
	background: rgba(63, 59, 60, 0.92);
	display: flex; align-items: center; justify-content: center;
	padding: 24px;
}
.vg-age-gate__panel {
	background: var(--vg-white);
	border-radius: 14px;
	max-width: 480px; width: 100%;
	padding: 40px 44px;
	text-align: center;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}
.vg-age-gate__brand {
	font-family: var(--vg-font-display);
	font-size: 24px; font-weight: 600;
	color: var(--vg-text); margin: 0 0 20px;
}
.vg-age-gate__brand span { color: var(--vg-wine); }
.vg-age-gate__title { font-size: 26px; margin: 0 0 12px; }
.vg-age-gate__text { color: var(--vg-text-2); font-size: 15px; margin: 0 0 24px; }
.vg-age-gate__actions { display: grid; gap: 10px; }
.vg-age-gate__note { font-size: 12px; color: var(--vg-text-2); margin: 20px 0 0; }
body.vg-age-locked { overflow: hidden; }

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
	.vg-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.vg-cats { grid-template-columns: repeat(2, 1fr); }
	.vg-hero__grid { grid-template-columns: 1fr; }
	.vg-hero__side { grid-template-columns: repeat(2, 1fr); }
	.vg-review__layout { grid-template-columns: 1fr; }
	.vg-review__aside { order: -1; }
	.vg-toc { position: static; }
	.vg-toc__toggle { cursor: pointer; position: relative; padding-right: 24px; }
	.vg-toc__toggle::after {
		content: ""; position: absolute; right: 2px; top: 50%;
		width: 8px; height: 8px;
		border-right: 2px solid var(--vg-text-2); border-bottom: 2px solid var(--vg-text-2);
		transform: translateY(-70%) rotate(45deg);
		transition: transform 0.15s ease;
	}
	.vg-toc__toggle[aria-expanded="true"]::after { transform: translateY(-30%) rotate(225deg); }
	.vg-toc__list { display: none; }
	.vg-toc.is-open .vg-toc__list { display: grid; }
	.vg-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
	.vg-footer__bottom-grid { grid-template-columns: 1fr 1fr; }
	.alignwide { margin-left: 0; margin-right: 0; }
}

@media (max-width: 782px) {
	body { font-size: 16px; }
	.vg-burger { display: inline-flex; }
	.vg-nav {
		position: absolute; top: 100%; left: 0; right: 0;
		background: var(--vg-white);
		border-bottom: 1px solid var(--vg-border);
		box-shadow: var(--vg-shadow);
		display: none;
		z-index: 940;
	}
	.vg-nav.is-open { display: block; }
	.vg-header__main { position: relative; }
	.vg-nav__list { flex-direction: column; gap: 0; padding: 8px 0; }
	.vg-nav__list a { padding: 12px 24px; }
	.vg-nav__list > .current-menu-item > a::after { display: none; }
	.vg-nav__list .sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none;
		border: none; box-shadow: none; border-radius: 0;
		padding: 0 0 4px; background: var(--vg-bg);
	}
	.vg-nav__list .sub-menu a { padding-left: 40px; }
	.vg-topbar__inner { justify-content: center; }
	.vg-topbar__tagline { display: none; }
	.vg-hero__title { font-size: 30px; }
	.vg-review__title { font-size: 30px; }
	.vg-section__title { font-size: 26px; }
	.vg-archive__title { font-size: 30px; }
	.vg-review__heroline { grid-template-columns: 1fr; }
	.vg-sheet__list { grid-template-columns: 1fr; }
	.vg-proscons { grid-template-columns: 1fr; }
	.vg-hero__side { grid-template-columns: 1fr; }
	.vg-ranking__item { grid-template-columns: 32px 72px 1fr; }
	.vg-ranking__item .vg-score--inline { grid-column: 3; justify-self: start; }
	.vg-age-gate__panel { padding: 32px 24px; }
}

@media (max-width: 560px) {
	.vg-grid--3 { grid-template-columns: 1fr; }
	.vg-cats { grid-template-columns: 1fr; }
	.vg-footer__grid { grid-template-columns: 1fr; }
	.vg-footer__bottom-grid { grid-template-columns: 1fr; }
	.vg-footer__legalbar { flex-direction: column; text-align: center; }
}
