/* =============================================================
   710 GVNG — pages.css
   Static pages (policies, contact), WooCommerce surfaces and the
   Lookbook page. Everything that is not the front page starts
   below the floating pill.
   ============================================================= */

.sg-page,
.sg-shop--wc,
.sg-lookbook--page {
	padding-top: calc(var(--sg-header-offset) + var(--sg-header-height) + 48px);
}

/* ---------------------------------------------------- page copy -- */

.sg-page__content {
	color: #1a1a1a;
}

.sg-page__content h1,
.sg-page__content h2,
.sg-page__content h3,
.sg-page__content h4 {
	font-family: var(--sg-font);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.005em;
	text-transform: uppercase;
	margin: 2.2em 0 0.7em;
}

.sg-page__content h2 {
	font-size: 19px;
}

.sg-page__content h3,
.sg-page__content h4 {
	font-size: 15px;
}

.sg-page__content p,
.sg-page__content ul,
.sg-page__content ol {
	margin: 0 0 1.1em;
}

.sg-page__content ul,
.sg-page__content ol {
	padding-left: 1.2em;
}

.sg-page__content li {
	margin-bottom: 0.4em;
}

.sg-page__content strong {
	font-weight: 700;
}

.sg-page__content a {
	color: var(--sg-black);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s var(--sg-ease);
}

.sg-page__content a:hover {
	color: var(--sg-red);
}

/* WooCommerce block cart / checkout live inside page content: give them
   the full width of the canvas instead of the reading measure. */
.sg-page__content:has(.wp-block-woocommerce-cart, .wp-block-woocommerce-checkout, .woocommerce) {
	max-width: none;
}

/* ------------------------------------------------ lookbook page -- */

.sg-lookbook--page .sg-lookbook__title {
	font-size: clamp(30px, 4.4vw, 54px);
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: -0.015em;
	margin: 0 0 14px;
}

.sg-lookbook-page__intro,
.sg-lookbook-page__intro p {
	color: rgba(255, 255, 255, 0.6);
	font: 700 12px/1.5 var(--sg-font);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 28px;
}

.sg-lookbook-page__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.sg-lookbook-page__item {
	margin: 0;
	aspect-ratio: 3 / 4;
	border-radius: 12px;
	overflow: hidden;
	background: #161616;
}

.sg-lookbook-page__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sg-lookbook-page__empty {
	color: rgba(255, 255, 255, 0.55);
	font: 500 14px/1.5 var(--sg-font);
}

@media (max-width: 767px) {
	.sg-lookbook-page__grid {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}
}
