/* Parquet Capital — Master WordPress CSS */
/* Paste this into Appearance → Additional CSS */
*,::before,::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'DM Sans', sans-serif;
	color: var(--text-dark);
	background: var(--white);
	overflow-x: hidden;
}

/* NAV */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: rgba(10,22,40,.96);
	border-bottom: 1px solid rgba(255,255,255,.06);
	padding: 0 64px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background .3s;
}

.nav-logo img {
	height: 30px;
	display: block;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
}

.nav-links a {
	color: rgba(255,255,255,.68);
	text-decoration: none;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: .04em;
	transition: color .2s;
}

.nav-links a:hover,.nav-links a.active {
	color: #fff;
}

.nav-cta {
	background: var(--green) !important;
	color: #fff !important;
	padding: 9px 22px;
	border-radius: 4px;
	font-weight: 500 !important;
	transition: background .2s !important;
}

.nav-cta:hover {
	background: var(--green-mid) !important;
}

/* HERO INNER (all non-home pages) */
.hero-inner {
	background: var(--navy);
	padding: 148px 80px 88px;
	position: relative;
	overflow: hidden;
	min-height: 52vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.hero-inner-pattern {
	position: absolute;
	background-image: repeating-linear-gradient(45deg,rgba(0,122,51,.05) 0,rgba(0,122,51,.05) 1.5px,transparent 1.5px,transparent 16px), repeating-linear-gradient(-45deg,rgba(0,122,51,.05) 0,rgba(0,122,51,.05) 1.5px,transparent 1.5px,transparent 16px);
	animation: patternDrift 22s linear infinite;
}

@keyframes patternDrift {
	from {
		background-position: 0 0;
	}
	
	to {
		background-position: 64px 64px;
	}
}

.hero-inner-gradient {
	position: absolute;
	background: linear-gradient(to top,rgba(10,22,40,.98) 0%,rgba(10,22,40,.6) 60%,rgba(10,22,40,.35) 100%);
}

.hero-inner-accent {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: var(--green);
	z-index: 3;
}

.hero-inner-content {
	position: relative;
	z-index: 4;
	max-width: 760px;
}

.eyebrow-tag {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--green-light);
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.eyebrow-tag::before {
	content: '';
	display: block;
	width: 28px;
	height: 1px;
	background: var(--green-light);
}

.hero-inner h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(36px,4.5vw,62px);
	font-weight: 700;
	color: var(--white);
	line-height: 1.08;
	letter-spacing: -.025em;
	margin-bottom: 20px;
}

.hero-inner h1 em {
	font-style: italic;
	color: var(--green-light);
}

.hero-inner p {
	font-size: 16px;
	font-weight: 300;
	color: rgba(255,255,255,.55);
	max-width: 540px;
	line-height: 1.8;
}

/* SECTIONS */
.section {
	padding: 88px 80px;
}

.section-alt {
	background: var(--off-white);
}

.section-dark {
	background: var(--navy);
}

.section-green {
	background: var(--green);
}

.section-eyebrow {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--green);
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.section-eyebrow::before {
	content: '';
	display: block;
	width: 22px;
	height: 1px;
	background: currentColor;
}

.section-dark .section-eyebrow {
	color: var(--green-light);
}

.section-green .section-eyebrow {
	color: rgba(255,255,255,.65);
}

.section-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(28px,3.5vw,44px);
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.15;
	letter-spacing: -.02em;
	margin-bottom: 14px;
}

.section-dark .section-title {
	color: var(--white);
}

.section-green .section-title {
	color: var(--white);
}

.section-desc {
	font-size: 15px;
	font-weight: 300;
	color: var(--muted);
	max-width: 580px;
	line-height: 1.85;
	margin-bottom: 52px;
}

.section-dark .section-desc {
	color: rgba(255,255,255,.5);
	max-width: 100%;
}

.section-green .section-desc {
	color: rgba(255,255,255,.75);
}

hr.divider {
	border: none;
	height: 1px;
	background: var(--border);
	margin: 52px 0;
}

hr.divider-dark {
	border: none;
	height: 1px;
	background: rgba(255,255,255,.08);
	margin: 52px 0;
}

/* BUTTONS */
.btn-primary {
	background: var(--green);
	color: #fff;
	padding: 14px 32px;
	border-radius: 4px;
	font-size: 13.5px;
	font-weight: 500;
	text-decoration: none;
	letter-spacing: .04em;
	transition: background .2s, transform .15s;
	display: inline-block;
}

.btn-primary:hover {
	background: var(--green-mid);
	transform: translateY(-1px);
}

.btn-outline {
	border: 1.5px solid rgba(255,255,255,.35);
	color: #fff;
	padding: 13px 30px;
	border-radius: 4px;
	font-size: 13.5px;
	font-weight: 400;
	text-decoration: none;
	letter-spacing: .04em;
	transition: border-color .2s, background .2s;
	display: inline-block;
}

.btn-outline:hover {
	border-color: #fff;
	background: rgba(255,255,255,.06);
}

.btn-green-outline {
	border: 1.5px solid var(--green);
	color: var(--green);
	padding: 13px 30px;
	border-radius: 4px;
	font-size: 13.5px;
	font-weight: 500;
	text-decoration: none;
	letter-spacing: .04em;
	transition: background .2s;
	display: inline-block;
}

.btn-green-outline:hover {
	background: var(--pale);
}

.link-arrow {
	font-size: 13px;
	font-weight: 500;
	color: var(--green);
	text-decoration: none;
	letter-spacing: .04em;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: gap .2s;
}

.link-arrow:hover {
	gap: 14px;
}

.link-arrow svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

/* GRID HELPERS */
.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}

.three-col {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 24px;
}

.two-col-alt {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 72px;
	align-items: start;
}

/* CARDS */
.card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 36px 32px;
	transition: box-shadow .2s, transform .2s;
}

.card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,.08);
	transform: translateY(-2px);
}

.card-dark {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 6px;
	padding: 36px 32px;
}

.card-accent {
	border-left: 3px solid var(--green);
}

.card-tag {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--green);
	margin-bottom: 12px;
}

.card-dark .card-tag {
	color: var(--green-light);
}

.card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 12px;
	line-height: 1.3;
}

.card-dark h3 {
	color: var(--white);
}

.card p {
	font-size: 13.5px;
	font-weight: 300;
	color: var(--muted);
	line-height: 1.8;
}

.card-dark p {
	color: rgba(255,255,255,.5);
}

/* STATS ROW */
.stats-row {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 0;
	border: 1px solid var(--border);
	border-radius: 6px;
	overflow: hidden;
}

.stat-item {
	padding: 36px 28px;
	border-right: 1px solid var(--border);
	text-align: center;
}

.stat-item:last-child {
	border-right: none;
}

.stat-num {
	font-family: 'Playfair Display', serif;
	font-size: 40px;
	font-weight: 700;
	color: var(--green);
	line-height: 1;
	margin-bottom: 6px;
}

.stat-label {
	font-size: 11px;
	font-weight: 400;
	color: var(--muted);
	letter-spacing: .06em;
	text-transform: uppercase;
	line-height: 1.5;
}

/* STEP LIST */
.step-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.step-item {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 24px;
	align-items: start;
	padding: 28px 0;
	border-bottom: 1px solid var(--border);
}

.step-item:last-child {
	border-bottom: none;
}

.step-num {
	width: 40px;
	height: 40px;
	background: var(--green);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0;
	margin-top: 2px;
}

.step-title {
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 8px;
}

.step-body {
	font-size: 13.5px;
	font-weight: 300;
	color: var(--muted);
	line-height: 1.8;
}

/* DARK TABLE */
.dark-table {
	background: var(--navy);
	border-radius: 6px;
	overflow: hidden;
	width: 100%;
}

.dark-table-header {
	padding: 16px 24px;
	background: rgba(0,122,51,.2);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--green-light);
}

.dark-table-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 18px 24px;
	border-bottom: 1px solid rgba(255,255,255,.06);
}

.dark-table-row:last-child {
	border-bottom: none;
}

.dark-table-row:nth-child(odd) {
	background: rgba(255,255,255,.02);
}

.dark-table-key {
	font-size: 12px;
	color: rgba(255,255,255,.42);
	font-weight: 300;
}

.dark-table-val {
	font-size: 13px;
	font-weight: 500;
	color: var(--white);
	text-align: right;
}

/* QUOTE BLOCK */
.quote-block {
	border-left: 3px solid var(--green-light);
	padding: 28px 32px;
	background: rgba(255,255,255,.04);
	border-radius: 0 6px 6px 0;
}

.quote-block blockquote {
	font-family: 'Playfair Display', serif;
	font-size: 19px;
	font-style: italic;
	color: var(--white);
	line-height: 1.65;
	margin-bottom: 12px;
}

.quote-block cite {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--green-light);
}

/* PILLAR GRID */
.pillar-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 2px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: 6px;
	overflow: hidden;
}

.pillar-card {
	background: var(--white);
	padding: 40px 32px;
	position: relative;
}

.pillar-num {
	font-family: 'Playfair Display', serif;
	font-size: 52px;
	font-weight: 700;
	color: var(--green);
	opacity: .18;
	line-height: 1;
	margin-bottom: 16px;
}

.pillar-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 12px;
}

.pillar-card p {
	font-size: 13.5px;
	font-weight: 300;
	color: var(--muted);
	line-height: 1.8;
}

/* SCREEN PAIR */
.screen-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.screen-card {
	border-radius: 6px;
	overflow: hidden;
}

.screen-card-head {
	padding: 16px 24px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #fff;
}

.screen-card-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.screen-item {
	display: flex;
	align-items: start;
	gap: 12px;
}

.screen-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 5px;
}

.screen-text {
	font-size: 13px;
	font-weight: 300;
	color: var(--text-dark);
	line-height: 1.7;
}

/* TEAM CARDS */
.team-grid-inner {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 28px;
	max-width: 860px;
}

.team-card {
	background: var(--white);
	border-radius: 6px;
	border: 1px solid var(--border);
	overflow: hidden;
	transition: box-shadow .2s, transform .2s;
}

.team-card:hover {
	box-shadow: 0 12px 40px rgba(0,0,0,.08);
	transform: translateY(-2px);
}

.team-card-bar {
	height: 5px;
	background: var(--navy);
}

.team-card-body {
	padding: 32px;
}

.team-avatar {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: var(--pale);
	border: 2px solid rgba(0,122,51,.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 700;
	color: var(--green);
	margin-bottom: 20px;
}

.team-name {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 4px;
}

.team-role {
	font-size: 11px;
	font-weight: 600;
	color: var(--green);
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.team-bio {
	font-size: 13.5px;
	font-weight: 300;
	color: var(--muted);
	line-height: 1.8;
}

/* CTA STRIP */
.cta-strip {
	background: var(--green);
	padding: 64px 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

.cta-strip h2 {
	font-family: 'Playfair Display', serif;
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	line-height: 1.25;
	max-width: 500px;
}

.btn-white {
	background: #fff;
	color: var(--green);
	padding: 14px 32px;
	border-radius: 4px;
	font-size: 13.5px;
	font-weight: 500;
	text-decoration: none;
	letter-spacing: .04em;
	white-space: nowrap;
	transition: opacity .2s, transform .15s;
	flex-shrink: 0;
	display: inline-block;
}

.btn-white:hover {
	opacity: .92;
	transform: translateY(-1px);
}

/* FOOTER */
footer {
	background: var(--navy);
	padding: 56px 80px 36px;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 44px;
	border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand img {
	height: 24px;
	display: block;
	margin-bottom: 16px;
}

.footer-brand p {
	font-size: 12.5px;
	font-weight: 300;
	color: rgba(255,255,255,.35);
	line-height: 1.8;
	max-width: 240px;
}

.footer-col h4 {
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255,255,255,.28);
	margin-bottom: 18px;
}

.footer-col a {
	display: block;
	color: rgba(255,255,255,.48);
	text-decoration: none;
	font-size: 13px;
	font-weight: 300;
	margin-bottom: 11px;
	transition: color .2s;
}

.footer-col a:hover {
	color: rgba(255,255,255,.9);
}

.footer-bottom {
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.footer-bottom p {
	font-size: 11px;
	color: rgba(255,255,255,.2);
	font-weight: 300;
}

.footer-legal {
	display: flex;
	gap: 24px;
}

.footer-legal a {
	font-size: 11px;
	color: rgba(255,255,255,.25);
	text-decoration: none;
}

/* HERO HOME */
.hero-home {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
}

.hero-video-wrap {
	position: absolute;
	z-index: 0;
}

.hero-video-bg {
	position: absolute;
	background: linear-gradient(160deg,#0A1628 0%,#0C1D30 45%,#0E2A18 100%);
}

.hero-pattern {
	position: absolute;
	z-index: 1;
	background-image: repeating-linear-gradient(45deg,rgba(0,122,51,.055) 0,rgba(0,122,51,.055) 1.5px,transparent 1.5px,transparent 16px), repeating-linear-gradient(-45deg,rgba(0,122,51,.055) 0,rgba(0,122,51,.055) 1.5px,transparent 1.5px,transparent 16px);
	animation: patternDrift 20s linear infinite;
}

@keyframes patternDrift {
	from {
		background-position: 0 0;
	}
	
	to {
		background-position: 64px 64px;
	}
}

.hero-grad {
	position: absolute;
	z-index: 2;
	background: linear-gradient(to top,rgba(10,22,40,.96) 0%,rgba(10,22,40,.5) 55%,rgba(10,22,40,.25) 100%);
}

.hero-left-bar {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: #007A33;
	z-index: 3;
}

.hero-content {
	position: relative;
	z-index: 4;
	padding: 0 80px 96px;
}

.hero-eyebrow {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: #009940;
	margin-bottom: 22px;
	display: flex;
	align-items: center;
	gap: 12px;
	animation: fadeUp .8s ease .2s both;
}

.hero-eyebrow::before {
	content: '';
	display: block;
	width: 28px;
	height: 1px;
	background: #009940;
}

.hero h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(40px,5.5vw,72px);
	font-weight: 700;
	color: #fff;
	line-height: 1.07;
	letter-spacing: -.025em;
	max-width: 800px;
	margin-bottom: 24px;
	animation: fadeUp .8s ease .35s both;
}

.hero-sub {
	font-size: 16px;
	font-weight: 300;
	color: rgba(255,255,255,.55);
	max-width: 530px;
	line-height: 1.8;
	margin-bottom: 44px;
	animation: fadeUp .8s ease .5s both;
}

.hero-actions {
	display: flex;
	gap: 18px;
	align-items: center;
	flex-wrap: wrap;
	animation: fadeUp .8s ease .65s both;
}

.btn-hero {
	background: #007A33;
	color: #fff;
	padding: 15px 34px;
	border-radius: 4px;
	font-size: 13.5px;
	font-weight: 500;
	text-decoration: none;
	letter-spacing: .04em;
	transition: background .2s, transform .15s;
	display: inline-block;
}

.btn-hero:hover {
	background: #009940;
	transform: translateY(-1px);
}

/* Features */
.features {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 2px;
	background: #0A1628;
}

.feat-card {
	background: #0A1628;
	padding: 52px 44px;
	position: relative;
	overflow: hidden;
	transition: background .25s;
}

.feat-card:hover {
	background: #0D1F35;
}

.feat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 0;
	background: #007A33;
	transition: height .4s ease;
}

.feat-card:hover::before {
	height: 100%;
}

.feat-tag {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: #009940;
	margin-bottom: 18px;
}

.feat-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	line-height: 1.3;
	margin-bottom: 14px;
}

.feat-card p {
	font-size: 13.5px;
	font-weight: 300;
	color: rgba(255,255,255,.48);
	line-height: 1.8;
}

/* Trust bar */
.trust-bar {
	background: #F7F6F2;
	border-top: 1px solid #E5E7EB;
	border-bottom: 1px solid #E5E7EB;
	padding: 32px 80px;
	display: grid;
	grid-template-columns: repeat(4,1fr);
}

.trust-item {
	text-align: center;
	padding: 0 20px;
	border-right: 1px solid #D1D5DB;
}

.trust-item:last-child {
	border-right: none;
}

.trust-num {
	font-family: 'Playfair Display', serif;
	font-size: 36px;
	font-weight: 700;
	color: #007A33;
	line-height: 1;
	margin-bottom: 5px;
}

.trust-label {
	font-size: 11px;
	color: #6B7280;
	letter-spacing: .06em;
	text-transform: uppercase;
}

/* Philosophy */
.philosophy {
	padding: 96px 80px;
	background: #0A1628;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.fw-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.fw-item {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.07);
	border-radius: 6px;
	padding: 18px 22px;
	display: flex;
	align-items: start;
	gap: 14px;
}

.fw-badge {
	background: #007A33;
	color: #fff;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 3px;
	white-space: nowrap;
	margin-top: 2px;
	flex-shrink: 0;
}

.fw-strong {
	display: block;
	color: rgba(255,255,255,.88);
	font-size: 13.5px;
	font-weight: 500;
	margin-bottom: 3px;
}

.fw-span {
	color: rgba(255,255,255,.42);
	font-size: 12.5px;
	font-weight: 300;
}

/* IDEA */
.idea-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 2px;
	background: #E5E7EB;
	border: 1px solid #E5E7EB;
	border-radius: 6px;
	overflow: hidden;
}

.idea-card {
	background: #fff;
	padding: 36px 28px;
	position: relative;
}

.idea-accent {
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: #007A33;
}

.idea-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: #007A33;
	margin-bottom: 10px;
}

.idea-title {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	font-weight: 600;
	color: #1A1A2E;
	margin-bottom: 12px;
}

.idea-body {
	font-size: 13px;
	font-weight: 300;
	color: #6B7280;
	line-height: 1.8;
}

/* Insights */
.insights {
	padding: 88px 80px;
	background: #fff;
}

.ins-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 24px;
	margin-top: 48px;
}

.ins-card {
	border: 1px solid #E5E7EB;
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
	display: block;
	color: inherit;
	transition: box-shadow .2s, transform .2s;
}

.ins-card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,.08);
	transform: translateY(-2px);
}

.ins-img {
	height: 175px;
	background: #0A1628;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255,255,255,.22);
}

.ins-tag {
	display: inline-block;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #007A33;
	background: #EBF5F1;
	padding: 3px 8px;
	border-radius: 2px;
	margin: 16px 18px 0;
}

.ins-body {
	padding: 10px 18px 22px;
}

.ins-body h4 {
	font-family: 'Playfair Display', serif;
	font-size: 16px;
	font-weight: 600;
	color: #1A1A2E;
	line-height: 1.4;
	margin-bottom: 8px;
}

.ins-body p {
	font-size: 12.5px;
	font-weight: 300;
	color: #6B7280;
	line-height: 1.65;
}

.ins-date {
	font-size: 11px;
	color: #9CA3AF;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #E5E7EB;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ============================================
   THEME OVERRIDES — Hide default WP wrapper
   ============================================ */
/* Hide theme header and footer on pages with Parquet content */
body.page .wp-block-template-part,
body.page .wp-site-blocks > header,
body.page .wp-site-blocks > footer {
	display: none !important;
}

/* Remove page title */
body.page .wp-block-post-title,
body.page .entry-title,
body.page h1.wp-block-post-title {
	display: none !important;
}

/* Make content full width */
body.page .wp-site-blocks {
	padding: 0 !important;
	max-width: 100% !important;
}

body.page .entry-content,
body.page .wp-block-post-content,
body.page .wp-site-blocks > main,
body.page .wp-site-blocks > .wp-block-group {
	max-width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

body.page .wp-block-group.alignfull,
body.page .alignfull {
	max-width: 100% !important;
	width: 100% !important;
}

/* Remove default spacing */
body.page .wp-block-spacer {
	display: none !important;
}

/* Remove query/pagination blocks */
body.page .wp-block-query {
	display: none !important;
}

/* ========================================
   THEME OVERRIDE — Hide WP theme wrapper
   ======================================== */
/* Hide theme header/nav */
.wp-site-blocks > header,
.wp-block-template-part:first-child,
header.wp-block-template-part {
	display: none !important;
}

/* Hide page title */
.wp-block-post-title,
.entry-title,
h1.wp-block-post-title {
	display: none !important;
}

/* Hide theme footer */
.wp-site-blocks > footer,
footer.wp-block-template-part {
	display: none !important;
}

/* Hide pagination */
.wp-block-query-pagination {
	display: none !important;
}

/* Make content full-width */
.wp-site-blocks {
	padding: 0 !important;
	margin: 0 !important;
	max-width: 100% !important;
}

.wp-site-blocks > main,
.wp-block-group.alignfull,
.wp-site-blocks .is-layout-constrained {
	max-width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

.entry-content,
.wp-block-post-content {
	max-width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Remove spacers added by theme */
.wp-site-blocks > .wp-block-spacer {
	display: none !important;
}

/* Custom HTML block full-width */
.wp-block-html {
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}