/*
Theme Name: Bridgeri
Author: Alder Finch Studio
Description: A classic PHP WordPress theme with a warm editorial layout, dynamic WordPress menus/categories/posts, and Customizer-controlled colors, typography, hero image, intro copy, and brand mark.
Version: 1.1.1
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: brg-theme
*/

:root {
	--brg-bg: #fef9ef;
	--brg-surface: #f5ede1;
	--brg-card: #fbf4e8;
	--brg-accent: #99582a;
	--brg-text: #2a2b2f;
	--brg-muted: #74716d;
	--brg-cream: #fef9ef;
	--brg-line: rgba(153, 88, 42, 0.12);
	--brg-shadow: 0 24px 70px rgba(37, 27, 17, 0.12);
	--brg-font-sans: "Inter", Arial, sans-serif;
	--brg-font-serif: "Instrument Serif", Georgia, serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.brg-body {
	margin: 0;
	background: var(--brg-bg);
	color: var(--brg-text);
	font-family: var(--brg-font-sans);
	font-size: 16px;
	line-height: 1.55;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.brg-body.brg-mobile-menu-open {
	overflow: hidden;
}

.brg-body a {
	color: inherit;
	text-decoration: none;
}

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

.brg-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	padding: 10px 14px;
	color: var(--brg-cream);
	background: var(--brg-text);
	border-radius: 999px;
	transform: translateY(-160%);
	transition: transform 180ms ease;
}

.brg-skip-link:focus {
	transform: translateY(0);
}

.brg-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 90;
	color: var(--brg-cream);
	background: transparent;
	transition: background-color 180ms ease, color 180ms ease;
}

.brg-header--solid,
.brg-header--open {
	color: var(--brg-text);
	background: var(--brg-bg);
}

.brg-header__inner {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	width: calc(100% - 32px);
	min-height: 72px;
	margin: 0 auto;
}

.brg-header__menu--desktop,
.brg-header__cta {
	display: none;
}

.brg-menu,
.brg-footer-menu,
.brg-category-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.brg-menu--desktop {
	display: flex;
	align-items: center;
	gap: 24px;
}

.brg-menu a,
.brg-footer-menu a,
.brg-category-list__link {
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
}

.brg-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
}

.brg-menu a:hover,
.brg-menu a:focus,
.brg-footer-menu a:hover,
.brg-footer-menu a:focus,
.brg-category-list__link:hover,
.brg-category-list__link:focus {
	color: var(--brg-accent);
}

.brg-brand {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 54px;
	min-height: 54px;
}

.brg-brand__icon {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	color: currentColor;
}

.brg-brand__svg {
	width: 42px;
	height: 44px;
}

.brg-brand__caption {
	display: block;
	max-width: 84px;
	margin-top: -9px;
	overflow: hidden;
	font-size: 8px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.brg-menu-toggle {
	justify-self: end;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 44px;
	height: 44px;
	padding: 0;
	color: currentColor;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.brg-menu-toggle__line {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
}

.brg-menu-toggle__label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.brg-mobile-panel {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 95;
	display: block;
	max-height: 100svh;
	padding: 18px 24px 24px;
	overflow-y: auto;
	color: var(--brg-text);
	background: var(--brg-bg);
	box-shadow: 0 18px 50px rgba(37, 27, 17, 0.12);
	transform: translateY(-110%);
	transition: transform 220ms ease, visibility 220ms ease;
}

.brg-mobile-panel[hidden] {
	display: block;
	visibility: hidden;
}

.brg-mobile-panel.brg-mobile-panel--open {
	visibility: visible;
	transform: translateY(0);
}

.brg-mobile-panel__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 18px;
}

.brg-brand--mobile {
	justify-content: flex-start;
	min-width: 0;
}

.brg-mobile-panel__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	color: var(--brg-text);
	background: transparent;
	border: 0;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
}

.brg-menu--mobile {
	display: grid;
	gap: 18px;
	margin-bottom: 24px;
}

.brg-menu--mobile a {
	font-size: 16px;
	font-weight: 500;
}

.brg-mobile-panel__topics {
	margin: 24px 0;
	padding-top: 22px;
	border-top: 1px solid var(--brg-line);
}

.brg-mobile-panel__eyebrow {
	margin: 0 0 14px;
	color: var(--brg-muted);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.brg-category-list--mobile {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.brg-category-list--mobile .brg-category-list__link {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	background: rgba(153, 88, 42, 0.1);
	border-radius: 999px;
}

.brg-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.brg-button:hover,
.brg-button:focus {
	transform: translateY(-1px);
}

.brg-button--small {
	min-height: 44px;
	padding: 0 20px;
	font-size: 14px;
}

.brg-button--accent {
	color: var(--brg-cream);
	background: var(--brg-accent);
	backdrop-filter: blur(12px);
}

.brg-button--light {
	color: var(--brg-text);
	background: var(--brg-cream);
}

.brg-body .brg-button--light {
	color: var(--brg-text);
}

.brg-body .brg-button--accent {
	color: var(--brg-cream);
}

.brg-main {
	min-height: 60vh;
}

.brg-hero {
	position: relative;
	display: grid;
	align-content: start;
	min-height: 100svh;
	padding: 120px 24px 48px;
	overflow: hidden;
	color: var(--brg-cream);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	isolation: isolate;
}

.brg-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(84, 96, 105, 0.84), rgba(84, 96, 105, 0.64) 44%, rgba(84, 96, 105, 0.22) 78%),
		linear-gradient(180deg, rgba(20, 24, 26, 0.12), rgba(20, 24, 26, 0.22));
}

.brg-hero__content {
	width: min(100%, 560px);
	animation: brg-fade-up 900ms ease both;
}

.brg-pill {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	margin: 0;
	padding: 0 14px;
	color: var(--brg-text);
	background: rgba(255, 255, 255, 0.54);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	backdrop-filter: blur(20px);
}

.brg-pill--light {
	color: var(--brg-cream);
	background: rgba(254, 249, 239, 0.28);
}

.brg-hero__title {
	max-width: 560px;
	margin: 30px 0 22px;
	font-family: var(--brg-font-serif);
	font-size: 56px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
}

.brg-hero__description {
	max-width: 420px;
	margin: 0;
	color: var(--brg-surface);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
}

.brg-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.brg-hero__stats {
	display: grid;
	gap: 22px;
	margin-top: 44px;
}

.brg-hero__stat {
	display: grid;
	gap: 4px;
}

.brg-hero__stat strong {
	font-size: 36px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
}

.brg-hero__stat span {
	color: var(--brg-surface);
	font-size: 16px;
	font-weight: 600;
}

.brg-intro {
	display: grid;
	background: var(--brg-surface);
}

.brg-intro__image-wrap {
	min-height: 430px;
	background: var(--brg-card);
}

.brg-intro__image {
	width: 100%;
	height: 100%;
	min-height: 430px;
	object-fit: cover;
	filter: saturate(1.02) brightness(0.98);
}

.brg-intro__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 58px 24px 72px;
}

.brg-intro__title {
	max-width: 640px;
	margin: 28px 0 20px;
	font-size: 40px;
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: 0;
}

.brg-intro__text {
	max-width: 620px;
	color: var(--brg-muted);
	font-size: 17px;
	line-height: 1.8;
}

.brg-intro__text p {
	margin: 0 0 18px;
}

.brg-posts,
.brg-stories,
.brg-programs,
.brg-flow,
.brg-faq,
.brg-home-widgets {
	padding: 82px 24px;
	background: var(--brg-bg);
}

.brg-section-heading {
	display: grid;
	justify-items: center;
	max-width: 820px;
	margin: 0 auto 48px;
	text-align: center;
}

.brg-section-heading__title {
	margin: 26px 0 16px;
	font-size: 40px;
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: 0;
}

.brg-section-heading__text {
	max-width: 520px;
	margin: 0;
	color: var(--brg-muted);
	font-size: 16px;
	line-height: 1.7;
}

.brg-posts__grid {
	display: grid;
	gap: 16px;
	width: min(100%, 1200px);
	margin: 0 auto;
}

.brg-post-card {
	overflow: hidden;
	background: var(--brg-surface);
	border-radius: 8px;
}

.brg-post-card__image-link {
	display: block;
	overflow: hidden;
	background: var(--brg-surface);
}

.brg-post-card__image {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	filter: saturate(0.96) brightness(0.98);
	transition: transform 220ms ease, filter 220ms ease;
}

.brg-post-card:hover .brg-post-card__image,
.brg-post-card:focus-within .brg-post-card__image {
	filter: saturate(1.04) brightness(1);
	transform: scale(1.025);
}

.brg-post-card__body {
	padding: 30px 30px 34px;
}

.brg-post-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-bottom: 14px;
	color: var(--brg-muted);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.brg-post-card__categories a {
	color: var(--brg-accent);
}

.brg-post-card__title {
	margin: 0 0 12px;
	font-size: 23px;
	font-weight: 500;
	line-height: 1.18;
	letter-spacing: 0;
}

.brg-post-card__excerpt {
	margin: 0;
	color: var(--brg-muted);
	font-size: 15px;
	line-height: 1.65;
}

.brg-stories {
	background: var(--brg-surface);
}

.brg-stories__grid {
	display: grid;
	gap: 16px;
	width: min(100%, 1200px);
	margin: 0 auto;
}

.brg-story-card {
	min-height: 260px;
	padding: 34px 32px;
	background: var(--brg-bg);
	border-radius: 8px;
}

.brg-story-card__quote {
	display: block;
	height: 42px;
	color: rgba(153, 88, 42, 0.1);
	font-family: Georgia, serif;
	font-size: 78px;
	line-height: 0.8;
}

.brg-story-card p {
	margin: 24px 0 28px;
	color: var(--brg-muted);
	font-size: 17px;
	line-height: 1.55;
}

.brg-story-card strong,
.brg-story-card span {
	display: block;
}

.brg-story-card strong {
	font-size: 15px;
	font-weight: 700;
}

.brg-story-card span {
	color: var(--brg-muted);
	font-size: 13px;
}

.brg-programs__grid {
	display: grid;
	gap: 32px;
	width: min(100%, 800px);
	margin: 0 auto;
}

.brg-program-card {
	position: relative;
	padding: 38px 32px 34px;
	background: var(--brg-surface);
	border-radius: 8px;
}

.brg-program-card__badge {
	position: absolute;
	top: -14px;
	left: 50%;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 16px;
	color: var(--brg-cream);
	background: var(--brg-accent);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	transform: translateX(-50%);
	white-space: nowrap;
}

.brg-program-card h3 {
	margin: 0 0 8px;
	font-size: 24px;
	font-weight: 500;
}

.brg-program-card__price {
	margin: 0 0 18px;
	color: var(--brg-text);
	font-size: 42px;
	font-weight: 500;
	line-height: 1;
}

.brg-program-card p:not(.brg-program-card__price) {
	margin: 0 0 22px;
	color: var(--brg-muted);
	line-height: 1.65;
}

.brg-program-card .brg-button {
	width: 100%;
	margin-bottom: 28px;
}

.brg-program-card ul {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.brg-program-card li {
	position: relative;
	padding-left: 28px;
	font-size: 14px;
	font-weight: 600;
}

.brg-program-card li::before {
	content: "";
	position: absolute;
	top: 0.25em;
	left: 0;
	width: 16px;
	height: 16px;
	background: var(--brg-accent);
	border-radius: 999px;
}

.brg-program-card li::after {
	content: "";
	position: absolute;
	top: 0.47em;
	left: 5px;
	width: 6px;
	height: 3px;
	border-left: 2px solid var(--brg-cream);
	border-bottom: 2px solid var(--brg-cream);
	transform: rotate(-45deg);
}

.brg-flow {
	background: var(--brg-bg);
}

.brg-flow__items {
	position: relative;
	display: grid;
	gap: 34px;
	width: min(100%, 960px);
	margin: 0 auto;
}

.brg-flow__items::before {
	content: "";
	position: absolute;
	top: 46px;
	left: 15%;
	right: 15%;
	display: none;
	height: 48px;
	border-top: 2px solid rgba(153, 88, 42, 0.12);
	border-radius: 50%;
}

.brg-flow__item {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	text-align: center;
}

.brg-flow__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	margin-bottom: 18px;
	color: var(--brg-accent);
}

.brg-flow__icon svg {
	width: 56px;
	height: 56px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.brg-flow__item h3 {
	margin: 0 0 8px;
	font-size: 22px;
	font-weight: 600;
}

.brg-flow__item p {
	max-width: 280px;
	margin: 0;
	color: var(--brg-muted);
	font-size: 15px;
	line-height: 1.55;
}

.brg-faq {
	padding-top: 28px;
}

.brg-faq__list {
	display: grid;
	gap: 16px;
	width: min(100%, 600px);
	margin: 0 auto;
}

.brg-faq__item {
	overflow: hidden;
	background: var(--brg-surface);
	border-radius: 8px;
}

.brg-faq__item summary {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 76px;
	padding: 0 64px 0 24px;
	font-size: 17px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
}

.brg-faq__item summary::-webkit-details-marker {
	display: none;
}

.brg-faq__item summary::after {
	content: "+";
	position: absolute;
	right: 24px;
	color: rgba(42, 43, 47, 0.7);
	font-size: 34px;
	font-weight: 300;
	line-height: 1;
}

.brg-faq__item[open] summary::after {
	content: "-";
}

.brg-faq__item p {
	margin: -8px 24px 24px;
	color: var(--brg-muted);
	line-height: 1.7;
}

.brg-widget {
	width: min(100%, 960px);
	margin: 0 auto 24px;
	padding: 32px;
	background: var(--brg-card);
	border-radius: 8px;
}

.brg-widget__title {
	margin: 0 0 16px;
	font-size: 28px;
	font-weight: 500;
}

.brg-archive-hero {
	padding: 136px 24px 64px;
	text-align: center;
	background: var(--brg-surface);
}

.brg-archive-hero__title {
	max-width: 900px;
	margin: 26px auto 0;
	font-size: 46px;
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: 0;
}

.brg-archive-hero__description {
	max-width: 620px;
	margin: 18px auto 0;
	color: var(--brg-muted);
}

.brg-pagination {
	width: min(100%, 1140px);
	margin: 42px auto 0;
}

.brg-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.brg-pagination a,
.brg-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 0 12px;
	background: var(--brg-card);
	border-radius: 999px;
}

.brg-empty {
	width: min(100%, 680px);
	margin: 0 auto;
	padding: 28px;
	color: var(--brg-muted);
	text-align: center;
	background: var(--brg-card);
	border-radius: 8px;
}

.brg-main--single {
	background: var(--brg-bg);
}

.brg-single {
	width: min(100% - 48px, 820px);
	margin: 0 auto;
	padding: 138px 0 42px;
}

.brg-single__header {
	margin-bottom: 48px;
	text-align: center;
}

.brg-single__title {
	margin: 28px 0 18px;
	font-family: var(--brg-font-serif);
	font-size: 58px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
}

.brg-single__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 16px;
	color: var(--brg-muted);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.brg-single__meta a {
	color: var(--brg-accent);
}

.brg-single__content {
	color: var(--brg-text);
	font-size: 18px;
	line-height: 1.82;
}

.brg-single__content p,
.brg-single__content ul,
.brg-single__content ol,
.brg-single__content blockquote {
	margin-top: 0;
	margin-bottom: 24px;
}

.brg-single__content h2,
.brg-single__content h3,
.brg-single__content h4 {
	margin: 42px 0 16px;
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: 0;
}

.brg-single__content h2 {
	font-size: 34px;
}

.brg-single__content h3 {
	font-size: 26px;
}

.brg-single__content blockquote {
	padding: 24px 28px;
	color: var(--brg-text);
	background: var(--brg-card);
	border-left: 4px solid var(--brg-accent);
	border-radius: 8px;
}

.brg-single__content a {
	color: var(--brg-accent);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.brg-page-links {
	margin-top: 32px;
	color: var(--brg-muted);
}

.brg-post-nav {
	display: grid;
	gap: 12px;
	width: min(100% - 48px, 820px);
	margin: 0 auto 80px;
	padding-top: 28px;
	border-top: 1px solid var(--brg-line);
}

.brg-post-nav__item a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	padding: 0 18px;
	color: var(--brg-cream);
	background: var(--brg-accent);
	border-radius: 999px;
	font-weight: 700;
}

.brg-footer {
	background: var(--brg-surface);
}

.brg-footer-cta {
	display: grid;
	justify-items: center;
	min-height: 520px;
	padding: 86px 24px 72px;
	text-align: center;
}

.brg-footer-cta__mark {
	color: var(--brg-text);
}

.brg-footer-cta__mark .brg-brand__svg {
	width: 72px;
	height: 74px;
}

.brg-footer-cta__mark .brg-brand__caption {
	max-width: 120px;
	margin-top: -12px;
	font-size: 9px;
}

.brg-footer-cta__title {
	max-width: 700px;
	margin: 34px 0 20px;
	font-size: 46px;
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: 0;
}

.brg-footer-cta__text {
	max-width: 470px;
	margin: 0 0 30px;
	color: var(--brg-muted);
	font-size: 17px;
	line-height: 1.65;
}

.brg-footer__inner {
	display: grid;
	gap: 34px;
	width: min(100% - 48px, 780px);
	margin: 0 auto;
	padding: 20px 0 54px;
}

.brg-footer__heading,
.brg-footer-widget__title {
	margin: 0 0 18px;
	font-size: 16px;
	font-weight: 600;
}

.brg-footer-menu,
.brg-category-list--footer {
	display: grid;
	gap: 16px;
}

.brg-footer__text,
.brg-footer-widget {
	margin: 0;
	color: var(--brg-muted);
	font-size: 14px;
	line-height: 1.7;
}

.brg-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: min(100% - 48px, 780px);
	margin: 0 auto;
	padding: 28px 0 36px;
	color: rgba(42, 43, 47, 0.62);
	border-top: 1px solid rgba(42, 43, 47, 0.12);
	font-size: 13px;
}

.brg-footer__bottom p {
	margin: 0;
}

@keyframes brg-fade-up {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@media (min-width: 680px) {
	.brg-hero__stats {
		grid-template-columns: repeat(3, auto);
		gap: 0;
	}

	.brg-hero__stat {
		padding-right: 26px;
		margin-right: 26px;
		border-right: 1px solid rgba(254, 249, 239, 0.28);
	}

	.brg-hero__stat:last-child {
		padding-right: 0;
		margin-right: 0;
		border-right: 0;
	}

	.brg-posts__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.brg-stories__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.brg-flow__items,
	.brg-post-nav {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.brg-flow__items::before {
		display: block;
	}

	.brg-footer__inner {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: min(100% - 96px, 780px);
	}

	.brg-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
		width: min(100% - 96px, 780px);
	}
}

@media (min-width: 920px) {
	.brg-header__inner {
		grid-template-columns: 1fr auto 1fr;
		width: calc(100% - 128px);
		min-height: 84px;
	}

	.brg-header__menu--desktop {
		display: block;
		justify-self: start;
	}

	.brg-header__cta {
		display: block;
		justify-self: end;
	}

	.brg-brand {
		justify-self: center;
	}

	.brg-menu-toggle {
		display: none;
	}

	.brg-mobile-panel {
		display: none;
	}

	.brg-hero {
		min-height: 100vh;
		padding: 160px 64px 76px;
	}

	.brg-hero__content {
		margin-top: 0;
	}

	.brg-hero__title {
		font-size: 86px;
		line-height: 1;
	}

	.brg-hero__description {
		font-size: 20px;
	}

	.brg-hero__stats {
		position: absolute;
		left: 64px;
		bottom: 62px;
		margin-top: 0;
	}

	.brg-intro {
		grid-template-columns: 1fr 1fr;
	}

	.brg-intro__image-wrap,
	.brg-intro__image {
		min-height: 660px;
	}

	.brg-intro__content {
		padding: 80px 9vw;
	}

	.brg-intro__title,
	.brg-section-heading__title {
		font-size: 56px;
	}

	.brg-posts,
	.brg-stories,
	.brg-programs,
	.brg-flow,
	.brg-faq,
	.brg-home-widgets {
		padding: 110px 64px;
	}

	.brg-posts__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.brg-stories__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.brg-story-card:nth-child(2),
	.brg-story-card:nth-child(5) {
		transform: translateY(48px);
	}

	.brg-programs__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.brg-archive-hero__title {
		font-size: 64px;
	}

	.brg-single__title {
		font-size: 78px;
	}

	.brg-footer-cta__title {
		font-size: 58px;
	}
}

@media (max-width: 520px) {
	.brg-header__inner {
		width: calc(100% - 32px);
	}

	.brg-hero {
		background-position: 59% center;
	}

	.brg-hero__title {
		font-size: 56px;
	}

	.brg-hero__actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.brg-button {
		max-width: 100%;
		white-space: normal;
	}

	.brg-single__title {
		font-size: 52px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
