/**
 * Instagram hub.
 *
 * Only the parts service.css does not already provide: a two-column hero and
 * the review block. Sections, steps, fit cards and the band background all come
 * from service.css so this page matches every service page by construction.
 */

/* ---------------- hero ---------------- */

.ig-hero {
	padding-top: clamp(1.25rem, 3vw, 2rem);
	background:
		radial-gradient(60rem 30rem at 85% 0%, #E056FD14, transparent 60%),
		linear-gradient(180deg, var(--paper-2, #FBF7FD), var(--paper, #F5ECFA));
}

.ig-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
}

.ig-h1 {
	margin: .35rem 0 0;
	font-size: clamp(2rem, 4.4vw, 3rem);
	font-weight: 800;
	line-height: 1.06;
}

.ig-accent {
	display: block;
	background: var(--grad, linear-gradient(120deg, #E056FD 0%, #E530B5 100%));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.ig-lede {
	margin: 1rem 0 1.5rem;
	max-width: 34rem;
	font-size: clamp(1rem, 1.7vw, 1.12rem);
	line-height: 1.6;
	color: var(--ink-2, #4C3D66);
}

.ig-chips {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin: 1.4rem 0 0;
	padding: 0;
	list-style: none;
}

.ig-chips li {
	padding: .4rem .8rem;
	border-radius: 999px;
	background: var(--surface, #FFFFFF);
	border: 1px solid var(--hairline, #E7D8F2);
	font-size: .84rem;
	font-weight: 600;
	color: var(--ink-2, #4C3D66);
}

.ig-hero-media {
	margin: 0;
}

.ig-hero-media img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 32rem;
	margin-inline: auto;
	filter: drop-shadow(0 24px 48px #1E123326);
}

/* ---------------- long-form detail ---------------- */

/*
 * The prose is the one block that genuinely wants a reading width, but left on
 * its own it reproduces the narrow-column-on-the-left look this page exists to
 * get away from. A sticky framing panel fills the other half instead.
 */
.ig-detail {
	display: grid;
	grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: start;
}

.ig-detail-aside {
	position: sticky;
	top: 5.5rem;
}

.ig-detail-pull {
	margin: .5rem 0 0;
	font-size: clamp(1.15rem, 2vw, 1.4rem);
	font-weight: 700;
	line-height: 1.35;
	color: var(--ink, #1E1233);
}

/* The theme gives .entry h2 a 2.5rem top margin, which misaligns the columns. */
.ig-detail-body > h2:first-child {
	margin-top: 0;
}

/* ---------------- reviews ---------------- */

.ig-reviews {
	margin-top: 1.5rem;
}

/* Site Reviews ships its own markup; these only set the frame around it. */
.ig-reviews .glsr-review {
	background: var(--surface, #FFFFFF);
	border: 1px solid var(--hairline, #E7D8F2);
	border-radius: var(--r, 16px);
	padding: 1.15rem 1.25rem;
	box-shadow: var(--sh-sm, 0 1px 2px #1E123310, 0 2px 6px #1E12330A);
}

.ig-reviews .glsr-reviews {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
	gap: 1rem;
}

.ig-reviews .glsr-summary {
	margin-bottom: 1.25rem;
}

/* ---------------- honest note ---------------- */

.ig-honest p {
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--ink-2, #4C3D66);
}

.ig-honest p + p {
	margin-top: 1rem;
}

/* ---------------- narrow ---------------- */

@media (max-width: 900px) {
	.ig-hero-inner,
	.ig-detail {
		grid-template-columns: minmax(0, 1fr);
	}

	/* Sticky is pointless once the panel sits above the prose. */
	.ig-detail-aside {
		position: static;
	}

	/* Illustration first on a phone: it explains the subject faster than copy. */
	.ig-hero-media {
		order: -1;
	}

	.ig-hero-media img {
		max-width: 22rem;
	}
}
