/* =========================================================
   Revox Child — global fonts + elegant widgets
   Primary: Antonio | Secondary: Mona Sans
   ========================================================= */

:root {
	--revox-font-primary: "Antonio", "Big Shoulders Display", sans-serif;
	--revox-font-secondary: "Mona Sans", "Kanit", sans-serif;
	--revox-accent: var(--theme, #bff747);
}

/* Global font swap (theme defaults: Kanit / Big Shoulders Display) */
body,
body p,
.menu-list,
button,
input,
textarea,
select {
	font-family: var(--revox-font-secondary) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-main,
.build-text p,
.page_banner_content_title {
	font-family: var(--revox-font-primary) !important;
}

.revox-impact-section .build-content .revox-impact-body {
	font-family: var(--revox-font-primary) !important;
}

/* ---------------------------------------------------------
   Bio Profile
   --------------------------------------------------------- */
.revox-bio-profile {
	padding: 80px 0;
}

.revox-bio-profile__grid {
	display: grid;
	grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
	gap: 48px 64px;
	align-items: center;
}

.revox-bio-profile__media {
	margin: 0;
	overflow: hidden;
	border-radius: 12px;
}

.revox-bio-profile__media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 4 / 5;
}

.revox-bio-profile__eyebrow {
	margin: 0 0 12px;
	font-family: var(--revox-font-secondary);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--revox-accent);
}

.revox-bio-profile__name {
	margin: 0 0 10px;
	font-family: var(--revox-font-primary);
	font-size: clamp(40px, 5vw, 72px);
	font-weight: 700;
	line-height: 0.95;
	text-transform: uppercase;
	color: var(--white, #fff);
}

.revox-bio-profile__role {
	margin: 0 0 28px;
	font-family: var(--revox-font-secondary);
	font-size: 16px;
	font-weight: 500;
	color: var(--text, #888);
}

.revox-bio-profile__body {
	font-family: var(--revox-font-secondary);
	font-size: 17px;
	line-height: 1.7;
	color: var(--text, #888);
}

.revox-bio-profile__body p {
	margin-bottom: 1em;
}

.revox-bio-profile__body a {
	color: var(--revox-accent);
}

@media (max-width: 991px) {
	.revox-bio-profile__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.revox-bio-profile__media {
		max-width: 420px;
	}
}

/* ---------------------------------------------------------
   Social Strip
   --------------------------------------------------------- */
.revox-social-strip {
	width: 100%;
	overflow: hidden;
}

.revox-social-strip__row {
	display: grid;
	grid-template-columns: repeat(var(--revox-social-cols, 6), minmax(0, 1fr));
	background: #0a0a0a;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.revox-social-strip__item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 88px;
	padding: 22px 12px;
	color: #fff;
	text-decoration: none;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	transition: background 0.25s ease, color 0.25s ease;
}

.revox-social-strip__item:last-child {
	border-right: 0;
}

.revox-social-strip__item:hover {
	background: rgba(255, 255, 255, 0.04);
	color: var(--revox-accent);
}

.revox-social-strip__item i,
.revox-social-strip__item svg {
	width: 22px;
	height: 22px;
	font-size: 22px;
	fill: currentColor;
}

@media (max-width: 767px) {
	.revox-social-strip__row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.revox-social-strip__item:nth-child(3n) {
		border-right: 0;
	}

	.revox-social-strip__item {
		min-height: 72px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
}

.revox-footer-strip .revox-footer-strip__social {
	margin-bottom: 36px;
}

.revox-footer-strip .footer-wrapper {
	display: block;
}

/* ---------------------------------------------------------
   Shelf cards (Book / Reading List / Spotlight Video)
   --------------------------------------------------------- */
.revox-shelf-card {
	display: block;
	text-decoration: none;
	color: inherit;
}

.revox-shelf-card__media {
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	margin-bottom: 16px;
	background: var(--bg, #1a1a1a);
}

.revox-shelf-card__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.revox-shelf-card:hover .revox-shelf-card__media img {
	transform: scale(1.04);
}

.revox-shelf-card__tag {
	display: inline-block;
	margin: 0 0 10px;
	padding: 6px 10px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	font-family: var(--revox-font-secondary);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--white, #fff);
	line-height: 1;
}

.revox-shelf-card__title {
	margin: 0;
	font-family: var(--revox-font-secondary);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--white, #fff);
	transition: color 0.25s ease;
}

.revox-shelf-card:hover .revox-shelf-card__title,
a.revox-shelf-card__title-link:hover {
	color: var(--revox-accent);
}

a.revox-shelf-card__title-link {
	color: inherit;
	text-decoration: none;
}

.revox-shelf-card__desc {
	margin-top: 10px;
	font-family: var(--revox-font-secondary);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.65;
	color: var(--text, #888);
}

.revox-shelf-card__desc p {
	margin: 0 0 0.75em;
	font: inherit;
	color: inherit;
}

.revox-shelf-card__desc p:last-child {
	margin-bottom: 0;
}

.revox-shelf-card__desc a {
	color: var(--revox-accent);
}

.revox-shelf-card--book .revox-shelf-card__media img {
	aspect-ratio: 3 / 4;
}

.revox-shelf-card--reading .revox-shelf-card__media img {
	aspect-ratio: 16 / 9;
}

a.revox-shelf-card__media {
	display: block;
	text-decoration: none;
	color: inherit;
}

.revox-shelf-card__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.25);
	transition: background 0.25s ease;
}

.revox-shelf-card__play-btn {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--revox-accent);
	color: #000;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.revox-shelf-card__play-btn svg {
	width: 18px;
	height: 18px;
	margin-left: 2px;
	fill: currentColor;
}

.revox-shelf-card:hover .revox-shelf-card__play {
	background: rgba(0, 0, 0, 0.35);
}

/* ---------------------------------------------------------
   Narrative Writeup
   --------------------------------------------------------- */
.revox-narrative-writeup {
	padding: 70px 0 20px;
}

.revox-narrative-writeup__eyebrow {
	margin: 0 0 18px;
	text-align: center;
	font-family: var(--revox-font-secondary);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--revox-accent);
}

.revox-narrative-writeup__headline {
	margin: 0 auto 28px;
	max-width: 18ch;
	text-align: center;
	font-family: var(--revox-font-primary);
	font-size: clamp(42px, 6vw, 72px);
	font-weight: 700;
	line-height: 0.95;
	text-transform: uppercase;
	color: var(--white, #fff);
}

.revox-narrative-writeup__headline span {
	color: var(--revox-accent);
}

.revox-narrative-writeup__body {
	max-width: 920px;
	margin: 0 auto;
	text-align: center;
	font-family: var(--revox-font-primary);
	font-size: clamp(28px, 3.2vw, 48px);
	font-weight: 700;
	line-height: 1.15;
	text-transform: uppercase;
	color: var(--text, #888);
}

.revox-narrative-writeup__body > p,
.revox-narrative-writeup__body > h1,
.revox-narrative-writeup__body > h2,
.revox-narrative-writeup__body > h3,
.revox-narrative-writeup__body > h4,
.revox-narrative-writeup__body > h5,
.revox-narrative-writeup__body > h6,
.revox-narrative-writeup__body > blockquote {
	color: inherit;
	font: inherit;
	line-height: inherit;
	text-transform: inherit;
	margin-bottom: 0.9em;
}

.revox-narrative-writeup__body a {
	color: var(--revox-accent);
}

/* ---------------------------------------------------------
   Immersion Header
   --------------------------------------------------------- */
.revox-immersion-header {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	color: #fff;
	background: #050505;
}

.revox-immersion-header__media,
.revox-immersion-header__slides,
.revox-immersion-header__slide,
.revox-immersion-header__video {
	position: absolute;
	inset: 0;
}

.revox-immersion-header__slide {
	opacity: 0;
	transition: opacity 1.1s ease;
	background-size: cover;
	background-position: center;
}

.revox-immersion-header__slide.is-active {
	opacity: 1;
	z-index: 1;
}

.revox-immersion-header__media img,
.revox-immersion-header__video video,
.revox-immersion-header__video iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0;
}

.revox-immersion-header__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.45) 100%),
		radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.35) 100%);
	pointer-events: none;
}

.revox-immersion-header__inner {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 100vh;
	min-height: 100dvh;
	padding: 28px clamp(20px, 4vw, 48px) 36px;
}

.revox-immersion-header__center {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 0;
}

.revox-immersion-header__headline {
	margin: 0;
	max-width: 14ch;
	font-family: var(--revox-font-primary);
	font-size: clamp(48px, 10vw, 120px);
	font-weight: 700;
	line-height: 0.9;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--revox-accent);
}

.revox-immersion-header__bottom {
	display: flex;
	justify-content: center;
	padding-bottom: 8px;
}

.revox-immersion-header__scroll {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-family: var(--revox-font-secondary);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
}

.revox-immersion-header__scroll-arrow {
	width: 12px;
	height: 12px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	animation: revox-immersion-bounce 1.6s ease-in-out infinite;
}

@keyframes revox-immersion-bounce {
	0%,
	100% {
		transform: translateY(0) rotate(45deg);
		opacity: 0.85;
	}
	50% {
		transform: translateY(6px) rotate(45deg);
		opacity: 1;
	}
}

@media (max-width: 767px) {
	.revox-immersion-header__inner {
		padding: 22px 18px 28px;
	}

	.revox-immersion-header__headline {
		max-width: 10ch;
	}
}

/* Bio Details — keep Project Details paragraph look for WYSIWYG */
.revox-bio-details .revox-bio-details-body,
.revox-bio-details .revox-bio-details-body p {
	margin-top: 15px;
	color: inherit;
	font: inherit;
	line-height: inherit;
}

.revox-bio-details .revox-bio-details-body > *:first-child {
	margin-top: 0;
}

.revox-bio-details .revox-bio-details-body a {
	color: var(--revox-accent);
	text-decoration: underline;
}

/* Awards — four columns including category */
.revox-dynamic-awards .work-experience-list-items li .title {
	flex-basis: 24%;
}

.revox-dynamic-awards .work-experience-list-items li .text-1 {
	flex-basis: 28%;
}

.revox-dynamic-awards .work-experience-list-items li .text-category {
	flex-basis: 20%;
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--text, #888);
}

.revox-dynamic-awards .work-experience-list-items li .text-2 {
	flex-basis: 18%;
}

.revox-dynamic-awards .work-experience-list-items li:hover .text-category {
	color: var(--theme);
}

@media (max-width: 1199px) {
	.revox-dynamic-awards .work-experience-list-items li .text-category {
		flex-basis: initial;
	}
}

/* Reading list grids */
.revox-reading-grid {
	padding: 60px 0;
}

.revox-reading-grid__heading {
	margin: 0 0 40px;
	font-family: var(--revox-font-primary);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 700;
	text-transform: uppercase;
	color: var(--white, #fff);
}

.revox-reading-grid__row {
	display: grid;
	grid-template-columns: repeat(var(--revox-reading-cols, 3), minmax(0, 1fr));
	gap: 36px 28px;
}

@media (max-width: 991px) {
	.revox-reading-grid__row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.revox-reading-grid__row {
		grid-template-columns: 1fr;
	}
}

/* News Section 02 pagination */
.revox-news-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 48px;
	padding-top: 8px;
}

.revox-news-pagination__pages {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.revox-news-pagination__page,
.revox-news-pagination__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	font-family: var(--revox-font-secondary);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	color: var(--white, #fff);
	background: transparent;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.revox-news-pagination__page:hover,
.revox-news-pagination__btn:hover {
	border-color: var(--revox-accent);
	color: var(--revox-accent);
}

.revox-news-pagination__page.is-current {
	background: var(--revox-accent);
	border-color: var(--revox-accent);
	color: #111;
}

.revox-news-pagination__btn.is-disabled {
	opacity: 0.35;
	pointer-events: none;
}
