/* =========================================================================
   theme.css
   Single Front Row Dads stylesheet (loaded after Bootstrap).

   1. Root variables + base styles
   2. Bootstrap overrides
   3. Global UI components
   4. Responsive styles
   ========================================================================= */


/* =========================================================================
   1. ROOT VARIABLES + BASE
   ========================================================================= */

:root,
[data-bs-theme="dark"] {
  /* Brand palette */
  --frd-ink: #020617;
  --frd-ink-2: #0c1220;
  --frd-panel: #121a2a;
  --frd-line: rgba(255, 255, 255, 0.12);
  --frd-red: #962626;
  --frd-red-deep: #7a1f1f;
  --frd-red-fire: #ef410b;
  --frd-blue: #0e7be0;
  --frd-blue-deep: #092342;
  --frd-blue-navy: #23415a;
  --frd-ice: #04e0fa;
  --frd-yellow: #efbc0b;
  --frd-green: #33c682;
  --frd-grey: #748ca2;
  --frd-muted: #9aa8bc;
  --frd-light: #f5f5f5;
  --frd-radius: 2px;
  --frd-section-y: clamp(5rem, 10vw, 8.5rem);

  /* Text surfaces — default = dark page (ink bg, light text) */
  --frd-text: var(--frd-ink);
  --frd-text-muted: var(--frd-muted);

  --brand-font-display: 'Oswald', system-ui, sans-serif;
  --brand-font-body: 'Google Sans Flex', system-ui, sans-serif;
  --brand-red-dark: var(--frd-red-deep);
  --font-title: var(--brand-font-display);
  --font-body: var(--brand-font-body);

  /* Legacy aliases used by older markup */
  --color-blue: var(--frd-blue-navy);
  --color-blue-ice: var(--frd-ice);
  --color-blue-ocean: var(--frd-blue);
  --color-red: var(--frd-red);
  --color-red-fire: var(--frd-red-fire);
  --color-red-deep: var(--frd-red-deep);
  --color-yellow: var(--frd-yellow);
  --color-green: var(--frd-green);
  --color-grey: var(--frd-grey);
  --color-light: var(--frd-light);
  --color-dark: #1a1b21;
  --color-text-muted: var(--frd-muted);
  --color-brand-red: var(--frd-red);
  --color-brand-red-dark: var(--frd-red-deep);

  /* Bootstrap theme tokens */
  --bs-primary: var(--frd-red);
  --bs-primary-rgb: 150, 38, 38;
  --bs-primary-text-emphasis: #f1b3b3;
  --bs-primary-bg-subtle: #3a1414;
  --bs-primary-border-subtle: var(--frd-red);

  --bs-link-color: var(--frd-red);
  --bs-link-color-rgb: 150, 38, 38;
  --bs-link-hover-color: #b93333;
  --bs-link-hover-color-rgb: 185, 51, 51;

  --bs-body-bg: var(--frd-ink);
  --bs-body-bg-rgb: 7, 11, 18;
  --bs-secondary-bg: var(--frd-panel);
  --bs-secondary-bg-rgb: 18, 26, 42;
  --bs-tertiary-bg: var(--frd-panel);

  --bs-border-color: var(--frd-line);
  --bs-border-color-translucent: var(--frd-line);
  --bs-border-radius: var(--frd-radius);
  --bs-border-radius-sm: var(--frd-radius);
  --bs-border-radius-lg: 4px;
  --bs-border-radius-xl: 4px;

  --bs-body-color: var(--frd-text);
  --bs-emphasis-color: var(--frd-red-fire);
  --bs-heading-color: var(--frd-ink);
  --bs-secondary-color: var(--frd-text-muted);
  --bs-secondary-color-rgb: 154, 168, 188;
}

/* Colors / backgrounds */
.color-dark { color: var(--color-dark) !important;}
.color-muted { color: var(--frd-muted) !important; }
.color-red { color: var(--frd-red) !important; }
.color-red-fire { color: var(--frd-red-fire) !important; }
.color-red-deep { color: var(--frd-red-deep) !important; }
.color-blue { color: var(--frd-blue-navy) !important; }
.color-blue-ocean { color: var(--frd-blue) !important; }
.color-blue-deep { color: var(--frd-blue-deep) !important; }
.color-yellow { color: var(--frd-yellow) !important; }
.color-ice,
.color-blue-ice { color: var(--frd-ice) !important; }
.color-green { color: var(--frd-green) !important; }
.color-white { color: #fff !important; }
.color-black { color: #000 !important; }
.color-grey { color: var(--frd-grey) !important; }

.color-trans-white-25 { color: rgba(255, 255, 255, 0.25); }
.color-trans-white-50 { color: rgba(255, 255, 255, 0.5); }
.color-trans-white-75 { color: rgba(255, 255, 255, 0.75); }

.color-trans-black-25 { color: rgba(0, 0, 0, 0.25); }
.color-trans-black-50 { color: rgba(0, 0, 0, 0.5); }
.color-trans-black-75 { color: rgba(0, 0, 0, 0.75); }

.bg-dark { background: var(--color-dark) !important; }
.bg-red { background: var(--frd-red) !important; }
.bg-red-fire { background: var(--frd-red-fire) !important; }
.bg-red-deep { background: var(--frd-red-deep) !important; }
.bg-blue { background: var(--frd-blue-navy) !important; }
.bg-blue-ocean { background: var(--frd-blue) !important; }
.bg-blue-deep { background: var(--frd-blue-deep) !important; }
.bg-yellow { background: var(--frd-yellow) !important; }
.bg-blue-ice { background: var(--frd-ice) !important; }
.bg-green { background: var(--frd-green) !important; }
.bg-white { background: #fff !important; }
.bg-black { background: #000 !important; }
.bg-grey { background: var(--frd-grey) !important; }

.bg-trans-white-25 { background: rgba(255, 255, 255, 0.25); }
.bg-trans-white-50 { background: rgba(255, 255, 255, 0.5); }
.bg-trans-white-75 { background: rgba(255, 255, 255, 0.75); }

.bg-trans-black-25 { background: rgba(0, 0, 0, 0.25); }
.bg-trans-black-50 { background: rgba(0, 0, 0, 0.5); }
.bg-trans-black-75 { background: rgba(0, 0, 0, 0.75); }

.bg-red-gradient {
  background-image: linear-gradient(to right, var(--frd-red), var(--frd-red-fire));
}
.bg-blue-gradient {
  background-image: linear-gradient(to right, var(--frd-blue-navy), var(--frd-blue));
}
.bg-legend-gradient {
  background-image: linear-gradient(to right, var(--frd-yellow), var(--frd-red-fire));
}

.bg-blur-3 {
  backdrop-filter: blur(3px);
}

.bg-blur-5 {
  backdrop-filter: blur(5px);
}
.border-dashed {
  border-style: dashed !important;
}

.icon-left {
  margin-right: 5px;
}

.icon-right {
  margin-left: 5px;
}

body {
  font-family: var(--brand-font-body);
  background-color: #fff;
  color: var(--frd-text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--brand-font-display);
  color: var(--bs-heading-color);
}

h1, h2, h3, h4, h5, h6, p {margin-bottom: 20px; line-height: 1.5em;}
h1, h2, h3, h4, h5, h6 {font-weight: 700; letter-spacing: -0.025em;}
h1 {font-size: 3em; line-height: 1.2em;}
h2 {font-size: 2.5em;}
h3 {font-size: 2.25em;}
h4 {font-size: 2em;}
h5 {font-size: 1.75em;}
h6 {font-size: 1.5em;}
p {font-size: 1em; font-weight: 400; color: var(--frd-ink);}

.headline {font-size: 1.5em; font-weight: 300;}
.headline-lg {font-size: 2em; font-weight: 300;}
.headline-sm {font-size: 1.25em; font-weight: 300;}

blockquote {
  font-size: 2em;
  border-left: 4px solid var(--frd-red);
  padding-left: 30px;
  margin: 30px 0;
}
blockquote p {
  font-weight: 300;
}

img {
  max-width: 100%;
}
audio,
video {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 20px;
}

hr {
	border-top-width: 1px;
  border-top-color: rgba(0, 0, 0, 0.25);
	background: none;
	opacity: 1.0;
}
.hr-10 {
	margin: 10px 0;
}
.hr-15 {
	margin: 15px 0;
}
.hr-20 {
	margin: 20px 0;
}
.hr-30 {
	margin: 30px 0;
}
.hr-50 {
	margin: 50px 0;
}
.hr-dark {
	border-top: 1px solid var(--color-dark);
}
.hr-thick {
	border-top-width: 5px;
}
.hr-trans {
	border-top: 1px solid rgba(255, 255, 255, .25);
}
.hr-blank {
	border: none;
	background: none;
	margin: 10px 0;
}
.hr-spacer {
	border: none;
	background: none;
	margin: 30px 0;
}
.hr-slim {
	width: 10%;
}
.hr-slim-centered {
	width: 10%;
	margin: 30px auto;
}

/* ----- helper classes ----- */
.alignleft {
  float: left;
  margin: 0 15px 15px 0;
}
.alignright {
  float: right;
  margin: 0 0 15px 15px;
}

.centered { text-align: center; }
.bold { font-weight: 700; }
.caps { text-transform: uppercase; }
.spaced-3 { letter-spacing: 3px; }
.spaced-5 { letter-spacing: 5px; }
.small {font-size: 0.8em;}

.text-increase-2 { font-size: 2em; }
.font-300 { font-weight: 300; }
.font-400 { font-weight: 400; }
.font-500 { font-weight: 500; }
.font-600 { font-weight: 600; }
.font-700 { font-weight: 700; }
.font-800 { font-weight: 800; }
.font-900 { font-weight: 900; }

.underline-red-fire {
  position: relative;
  display: inline-block;
  isolation: isolate;
  text-decoration: none;
}

.underline-red-fire::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 0.35em;
  background: var(--frd-red-fire);
  z-index: -1;
}

.hidden {
  display: none;
}

/* -------------------- backgrounds -------------------- */
.bg-frdl-austin {
  background-image: url('../images/section-bg-frdl-austin.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================================================
   2. BOOTSTRAP OVERRIDES
   ========================================================================= */

.btn,
a.btn {
  border-radius: var(--frd-radius) !important;
  letter-spacing: 0.06em;
  font-family: var(--brand-font-display);
  font-weight: 600;
  padding: 0.9rem 1.6rem;
  border-width: 2px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: inherit;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn.btn-sm {
  font-size: 0.875em;
  padding: 0.55rem 1rem;
}

.btn.btn-lg {
  font-size: 1.05em;
  padding: 1rem 1.75rem;
}

.btn-primary {
  --bs-btn-bg: var(--frd-red);
  --bs-btn-border-color: var(--frd-red);
  --bs-btn-hover-bg: var(--frd-red-fire);
  --bs-btn-hover-border-color: var(--frd-red-fire);
  --bs-btn-active-bg: var(--frd-red-deep);
  --bs-btn-active-border-color: var(--frd-red-deep);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-color: #fff;
}

.btn-outline {
  --bs-btn-color: var(color-dark);
  --bs-btn-border-color: var(--color-dark);
  --bs-btn-hover-bg: var(--color-dark);
  --bs-btn-hover-border-color: var(--color-dark);
  --bs-btn-hover-color: #fff;
}

.btn-outline-light {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, 0.45);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-hover-color: var(--frd-ink);
}

.btn-ice {
  background: var(--frd-ice);
  border-color: var(--frd-ice);
  color: var(--color-dark);
}

.btn-ice:hover {
  background: #52eafc;
  border-color: #52eafc;
  color: var(--color-dark);
}

.btn-red-gradient {
  background: linear-gradient(to right, var(--frd-red), var(--frd-red-fire));
  color: #fff;
  border: none;
}
.btn-red-gradient:hover {
  background: linear-gradient(to right, var(--frd-red-fire), var(--frd-red));
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--frd-ink);
  border: none;
}
.btn-white:hover {
  background: var(--frd-ink);
  color: #fff;
}

.btn-action {
  background: var(--color-dark);
  color: #fff;
  border: none;
}
.btn-action:hover {
  background: var(--color-grey);
  color: #fff;
}

.card {
  background-color: var(--frd-panel);
  border: 1px solid var(--frd-line);
  border-radius: var(--frd-radius);
}

.card .card-body {
  padding: 1.5rem;
}

.dropdown-menu-dark {
  --bs-dropdown-bg: var(--frd-panel);
  --bs-dropdown-link-hover-bg: #1a2438;
  --bs-dropdown-border-color: var(--frd-line);
}

.link-white {
  color: #fff;
  text-decoration: none;
}
.link-white:hover {
  color: var(--frd-red-fire);
  text-decoration: none;
}

.link-red-fire {
  color: var(--frd-red-fire);
  text-decoration: none;
}
.link-red-fire:hover {
  color: var(--color-red);
}

/* -------------------- modal -------------------- */
.modal-content {
  background: #fff;
}
.modal-header {
  padding: 30px;
}
.modal-body {
  padding: 30px;
}
.modal-footer {
  padding: 30px;
}

.well {
  padding: 50px;
}
.well.bordered {
  border: 1px solid var(--frd-line);
}
.well.bordered-blue-ocean {
  border: 1px solid var(--color-blue-ocean);
}
.well.gradient {
  border: 2px solid var(--frd-line);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--frd-red-fire), var(--frd-blue)) 1;
}


/* =========================================================================
   3. GLOBAL UI — utilities + components
   ========================================================================= */

/* =========================================================================
   Color / surface system

   GLOBAL (never flip per section):
   - Brand accents: .color-red-fire, .color-ice, chips, stats
   - Layout + structure: .frd-section, .frd-panel, .frd-hero

   SURFACE (declared on section or component):
   - Dark page default: body, .frd-surface-dark, .frd-section--band, .bg-blue
   - Light sections: .frd-surface-light, .bg-white
   - Emphasis bands: .frd-section--red, .bg-red-deep, .bg-red-gradient
   - Dark cards always reset text: .frd-panel, .frd-tier, .frd-card, etc.

   Prefer semantic inheritance inside a surface. Use .color-white / .color-black
   only for one-off emphasis, not as the default heading pattern.
   ========================================================================= */

/* --- Surface: light --- */
.frd-surface-light,
.bg-white {
  --frd-text: var(--frd-ink);
  --frd-text-muted: #4d5969;
  --frd-heading: var(--frd-ink);
  --frd-line: rgba(7, 11, 18, 0.12);
  --bs-body-color: var(--frd-text);
  --bs-emphasis-color: var(--frd-heading);
  --bs-heading-color: var(--frd-heading);
  --bs-secondary-color: var(--frd-text-muted);
  background: #fff !important;
  color: var(--frd-text);
}

/* --- Surface: dark (explicit; matches body default) --- */
.frd-surface-dark,
.frd-section--band,
.bg-blue {
  --frd-text: var(--frd-light);
  --frd-text-muted: var(--frd-muted);
  --frd-heading: #fff;
  --frd-line: rgba(255, 255, 255, 0.12);
  --bs-body-color: var(--frd-text);
  --bs-emphasis-color: var(--frd-heading);
  --bs-heading-color: var(--frd-heading);
  --bs-secondary-color: var(--frd-text-muted);
  color: var(--frd-text);
}

/* --- Surface: emphasis (red / gradient bands) --- */
.frd-surface-emphasis,
.frd-section--red,
.bg-red-deep,
.bg-red-gradient {
  --frd-text: #fff;
  --frd-text-muted: rgba(255, 255, 255, 0.78);
  --frd-heading: #151515;
  --bs-body-color: var(--frd-text);
  --bs-emphasis-color: var(--frd-heading);
  --bs-heading-color: var(--frd-heading);
  --bs-secondary-color: var(--frd-text-muted);
  color: var(--frd-text);
}

/* Dark UI components always carry their own readable text */
.frd-panel,
.frd-tier,
.frd-card,
.frd-commitment,
.frd-player,
.frd-topic-tile,
.frd-filter-panel {
  --frd-text: var(--frd-light);
  --frd-text-muted: var(--frd-muted);
  --frd-heading: #151515;
  --bs-body-color: var(--frd-text);
  --bs-secondary-color: var(--frd-text-muted);
  --bs-heading-color: var(--frd-heading);
  color: var(--frd-text);
}

[data-countdown] {
  font-variant-numeric: tabular-nums;
}

/***********************************
BASE Component Classes
================================================================== */
/* -------------------- content -------------------- */
.content-light h2,
.content-light h3,
.content-light h4,
.content-light h5,
.content-light h6 {
  color: #fff;
}

.content-light p,
.content-light ul,
.content-light ol {
  color: rgba(255, 255, 255, 0.75);
}

.content-lg p {
  font-size: 1.25em;
}
/* -------------------- feature -------------------- */
.feature {
	position: relative;
	padding-left: 80px;
	margin: 0 0 30px;
}
.feature .feature-icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 65px;
	font-size: 3em;
	line-height: 1;
	text-align: center;
}
.feature .feature-title {
	line-height: 1.2;
	margin: 0 0 10px;
}

/* circle features */
.feature.feature-circle .feature-icon {
	height: 65px;
	padding: 20px 0;
	font-size: 1.5em;
	background: #1a1b21;
	color: #fff;
	border-radius: 100px;
}

/* feature links */
.feature.feature-link {
	padding: 0;
	margin: 0 0 20px;
}
.feature.feature-link > a {
	position: relative;
	display: block;
	padding: 20px 50px 20px 65px;
	color: #777;
	border: 1px solid #D6D9DD;
	border-radius: 4px;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.feature.feature-link > a:after {
	position: absolute;
	top: 50%;
	right: 20px;
	height: 50px;
	margin-top: -25px;
	content: "\f105";
	font-family: FontAwesome;
	font-size: 3em;
	line-height: 1;
	color: #ccc;
}
.feature.feature-link > a:hover {
	background: #f2f4f5;
	border-color: #000;
	text-decoration: none;
}
.feature.feature-link > a:hover:after {
	color: #000;
}
.feature.feature-link .feature-icon {
	top: 20px;
	left: 20px;
	width: 40px;
	padding: 0;
	font-size: 2em;
	line-height: 1;
	text-align: center;
	color: #999;
	border: none;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.feature.feature-link .feature-title {
	display: block;
	font-size: 1.4em;
	font-weight: 700;
	text-transform: none;
	margin: 0 0 10px;
}
.feature.feature-link .feature-desc {
	display: block;
	margin: 0 0 10px;
	font-size: 1em;
	line-height: 1.4;
}
.feature.feature-link .feature-more {
	font-weight: 700;
	color: #1489cc;
}

/* step features */
.feature.feature-step {
	padding-bottom: 30px;
	margin: 0;
}
.feature.feature-step:before {
	position: absolute;
	top: 0;
	left: 28px;
	content: "";
	height: 100%;
	width: 2px;
	background: #ddd;
}
.feature.feature-step.step-last:before {
	display: none;
}
.feature.feature-step .step-number {
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	padding: 20px 0;
	margin: 0 0 10px;
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	background: #1a1b21;
	color: #fff;
	border-radius: 100px;
	z-index: 5;
}
.feature.feature-step .step-title {
	margin: 0 0 10px;
}

/* -------------------- item -------------------- */
.item {
	position: relative;
}
.item .meta a {
	color: #333;
}
.item .meta a:hover {
	color: #09c;
}
.item .item-title {
	font-weight: 700;
	margin: 0 0 5px;
}
.item .item-title a {
	color: #1a1b21;
	font-weight: 700;
	text-decoration: none;
}
.item .item-title a:hover {
	color: #007bff;
}
.item p {
	margin: 0 0 10px;
}
.item p:last-child {
	margin: 0;
}
.item-content {
}

/* item form */
.item .item-form {
	padding: 20px;
	margin: 20px 0 0;
	background: #fff;
	border: 1px solid #ddd;
}
.item .item-form input,
.item .item-form select,
.item .item-form textarea {
	margin: 0 0 15px;
}
.item .item-form select {
	height: auto;
}

/* items with images */
.item.item-with-image {
	min-height: 190px;
	padding: 20px 0 20px 170px;
	border-top: 1px solid #e5e5e5;
}
.item.item-with-image .item-image {
	position: absolute;
	top: 20px;
	left: 0;
	width: 150px;
}
.item.item-with-image .item-image img {
	display: block;
	width: 100%;
	border-radius: 4px;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.item.item-with-image .item-image img:hover {
	transform: scale(1.05);
}
.item.item-with-image .item-image.image-circle img {
	border-radius: 500px;
}
.item.item-with-image .item-icon {
	position: absolute;
	top: 20px;
	left: 0;
}
.item.item-with-image .item-icon > a {
	display: block;
	width: 75px;
	padding: 20px 0;
	font-size: 2em;
	text-align: center;
	text-decoration: none;
	border: 2px solid #ccc;
	border-radius: 300px;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.item.item-with-image .item-icon > a:hover {
	background: rgba(0, 0, 0, .1);
}

/* activity items */
.item-activity-list {
	position: relative;
}
.item-activity-list:before {
	content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: 1px;
    height: 100%;
    background: #ddd;	
}
.item.item-activity {
	min-height: 70px;
	padding: 15px 100px 15px 15px;
	margin: 0 0 20px 50px;
	border: 1px solid #ddd;
	border-radius: 5px;
}
.item.item-activity .item-icon {
	position: absolute;
	top: 7px;
	left: -50px;
	z-index: 50;
}
.item.item-activity .item-icon > a {
	display: block;
	width: 40px;
	padding: 10px 0;
	background: #fff;
	font-size: 1em;
	text-align: center;
	text-decoration: none;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.item.item-activity .item-icon > a:hover {
	background: rgba(0, 0, 0, .1);
}
.item.item-activity .item-desc {
	margin: 0;
}
.item.item-activity .item-action {
	top: 15px;
	right: 15px;
}
/* event items */
.item.item-event {
	min-height: inherit;
	padding: 15px 15px 15px 100px;
	margin: 0 0 15px;
}
.item.item-event .item-image {
	top: 15px;
	left: 0;
	width: 60px;
	height: 60px;
}
.item.item-event.item-with-image .item-image.image-icon a {
	padding: 15px 0;
	font-size: 1.5em;
	background: #151515;
}
.item.item-event.item-with-image .item-image.image-text {
	display: block;
	left: 0;
}
.item.item-event.item-with-image .item-image.image-text a {
	display: block;
	width: 80px;
	padding: 10px 0;
	color: #fff;
	background: #151515;
	text-align: center;
}
.item.item-event.item-with-image .item-image.image-text a:hover {
	background: #666;
	text-decoration: none;
}
.item.item-event.item-with-image .item-image.image-text .text-day {
	display: block;
	padding: 0 0 5px;
	margin: 0 0 5px;
	font-size: 1.2em;
	font-weight: 300;
	letter-spacing: -1px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.item.item-event.item-with-image .item-image.image-text .text-year {
	display: block;
	font-size: 1em;
	font-weight: 700;
}

/* list items */
.item.item-list {
	min-height: 70px;
	padding: 18px 0 14px 50px;
}
.item.item-list .item-icon {
	position: absolute;
	top: 15px;
	left: 0;
}
.item.item-list .item-title {
	padding-right: 120px;
}
.item.item-list .item-icon > a {
	display: block;
	width: 40px;
	padding: 10px 0;
	font-size: 1em;
	text-align: center;
	text-decoration: none;
	background: rgba(0, 0, 0, .05);
	border-radius: 4px;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.item.item-list .item-icon > a:hover {
	background: rgba(0, 0, 0, .15);
}
.item.item-list .item-child {
	min-height: inherit;
	padding: 10px 0 10px 40px;
	border: none;
}
.item.item-list .item-child .item-icon {
	top: 10px;
}
.item.item-list .item-child .item-icon > a {
	width: 30px;
	padding: 8px 0;
	font-size: .85em;
}
.item.item-list .item-child .item-title {
	padding-right: 0;
}
.item.item-list .item-utility {
	position: absolute;
	top: 18px;
	right: 0;
}
.item.item-list .item-utility .utility-link {
	display: block;
	padding: 7px 0;
	font-size: .8em;
	font-weight: bold;
}
/* list user items */
.item.item-list-user {
	min-height: 50px;
	padding: 0 0 0 50px;
	margin: 0 0 10px;
	border: none;
}
.item.item-list-user .item-image {
	top: 0;
	width: 40px;
}
.item.item-list-user .item-title {
	font-size: 1em;
	margin: 0;
}
.item.item-list-user .item-title .title-helper {
	display: inline-block;
	font-size: .8em;
	margin-left: 5px;
}
.item.item-with-image .item-image.image-circle img {
	max-height: 80px;
}
/* module items */
.item.item-module {
	padding: 15px 0 15px 70px;
	border-top: 1px solid #ddd;
}
.item.item-module .item-number {
	position: absolute;
	top: 15px;
	left: 0;
	width: 50px;
	height: 50px;
	padding: 15px 0;
	font-size: 1em;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	color: #0c253c;
	border: 2px solid;
	border-radius: 100px;
}
.item.item-module .item-action {
	position: static;
	text-align: left;
}
.item.item-module .item-action .btn {
	display: inline-block;
	width: auto;
	padding: 5px 15px;
	font-size: .8em;
}
.single-course .item.item-module .item-action .btn {
	display: none; /* hide these on single course views (too much UI) */
	width: auto;
	padding: 5px 15px;
	font-size: .8em;
}

/* image icons */
.item.item-with-image .item-image.image-icon a {
	display: block;
	padding: 20px 0;
	font-size: 2em;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	color: #666;
	border: 1px solid #ddd;
}
.item.item-with-image .item-image.image-icon a:hover {
	background: #eee;
	color: #1a1b21;
	border-color: #1a1b21;
}

/* items with numbers */
.item.item-with-number {
	padding: 20px 0 20px 65px;
}
.item.item-with-number .item-number {
	position: absolute;
	top: 20px;
	left: 0;
	width: 51px;
	padding: 12px 0;
	font-size: 1.2em;
	font-weight: 700;
	text-align: center;
	background: #333;
	color: #fff;
	border-radius: 100px;
}
.item.item-with-number .item-content p {
	font-size: .85em;
}
/* large items */
.item.item-large.item-with-image {
	min-height: 270px;
	padding-left: 320px;
}
.item.item-large.item-with-image .item-image {
	width: 300px;
}
/* small items */
.item.item-small.item-with-image {
	min-height: 120px;
	padding-left: 100px;
}
.item.item-small .item-image {
	width: 80px;
}
.item.item-small p {
	font-size: .85em;
}

/* item feed */
.item-feed .item:first-child,
.item-feed .item.item-with-image:first-child {
	padding-top: 0;
	border-top: none;
}
.item-feed .item.item-with-image:first-child .item-image {
	top: 0;
}

/* item with action */
.item.item-with-action {
	padding-right: 170px;
}
.item.item-with-action .item-action {
	position: absolute;
	top: 20px;
	right: 0;
	width: 150px;
	text-align: right;
}
.item .item-action .label {
	display: block;
	margin: 10px 0;
}

/* -------------------- lists -------------------- */
.list {
	list-style: square;
	margin: 0 0 20px 20px;
}
.list li {
	margin: 0 0 10px;
}
/* list sizes */
.list-small {
	font-size: .85em;
}
.list-large {
	font-size: 1.25em;
}
.list-xl {
	font-size: 1.5em;
}
/* standard list */
.list-standard {
	list-style: square;
	margin: 0 0 20px 20px;
}
.list-standard li {
	margin: 0 0 10px;
}

/* check list */
.list-check {
	list-style: none;
  padding: 0;
	margin: 0 0 20px;
}
.list-check li {
	position: relative;
	padding-left: 30px;
	margin: 0 0 15px;
}
.list-check li:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "\f058";
	font-family: FontAwesome;
}
.list-check.list-large li {
	padding-left: 35px;
}

/* icon list */
.list-icon {
	list-style: none;
	color: #333;
  padding: 0;
	margin: 0 0 20px !important;
}
.list-icon li {
	position: relative;
	padding: 0 0 0 30px;
	margin: 0 0 20px;
	line-height: 1.4;
}
.list-icon li i {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	font-size: 1.2em;
	text-align: center;
}
.list-icon.list-large li {
	padding: 0 0 0 40px;
}
.list-icon.list-large li i {
	top: 5px;
	width: 30px;
	font-size: 1em;
}
.list-icon.list-xl li {
	padding: 0 0 0 55px;
	letter-spacing: -1px;
}
.list-icon.list-xl li i {
	top: 7px;
	width: 35px;
	font-size: 1em;
}

/* -------------------- quotes -------------------- */
.quote figure { max-width: 700px; margin: 0 auto; }
.quote img {
  width: 150px; height: 150px; border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--red);
}
.quote blockquote {
  font-size: 1.5em;
  color: var(--white);
  font-weight: 300;
  line-height: 1.6;
}
.quote blockquote::before { content: '\201C'; font-size: 60px; color: var(--red); line-height: 0; vertical-align: -24px; margin-right: 4px; font-style: normal; }
.quote figcaption {
  margin-top: 18px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--yellow);
  text-transform: uppercase;
}

.quote.quote-small blockquote {
  font-size: 1.25em;
}

/* -------------------- steps -------------------- */
.step-list {
  max-width: 900px;
  margin: 0 auto;
}

.step {
	position: relative;
	padding-left: 70px;
	margin: 0 0 20px;
}
.step .step-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  font-size: 3em;
}
.step .step-number {
	position: absolute;
	top: 0;
	left: 0;
	width: 55px;
	height: 55px;
	padding: 15px 0;
	font-size: 1.5em;
	font-weight: 400;
	line-height: 1;
	text-align: center;
	background: #1a1b21;
	color: #fff;
	border-radius: 100px;
}
.step .step-number.number-active {
	background: #1a1b21;
}
.step .step-title {
	line-height: 1.2;
	padding: 10px 0 0;
	margin: 0 0 10px;
}

.step.step-with-user {
	padding-left: 120px;
}
.step.step-with-user .step-image {
	position: absolute;
	top: 0;
	left: 60px;
	width: 50px;
	height: 50px;
	overflow: hidden;
	border-radius: 100px;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.step.step-with-user .step-image:hover {
	transform: scale(1.10);
}

/* -------------------- tiles ----------- */
.tile {
	position: relative;
}
.tile a,
.tile:hover a {
	text-decoration: none;
}
.tile .tile-image {
	display: block;
	background: #000;
	overflow: hidden;
}
.tile .tile-image img {
	display: block;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.tile .tile-icon {
  display: inline-block;
	font-size: 2.5em;
	color: #fff;
	z-index: 10;
}
.tile .tile-status {
	position: absolute;
	top: 30px;
	left: 30px;
	padding: 5px 15px 7px 10px;
	background: rgba(0, 0, 0, .5);
	color: #fff;
	z-index: 10;
}
.tile .tile-status i {
	display: inline-block;
	font-size: 1.2em;
	vertical-align: top;
	margin: 2px 5px 0 0;
}
.tile .tile-status .status-text {
	display: inline-block;
	font-size: .8em;
	color: #fff;
}

.tile .tile-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 100px 30px 30px;
	background: linear-gradient(rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, .75));
	/*background: rgba(39, 43, 51, .7);*/
	color: #fff;
	z-index: 5;
}
.tile .tile-title {
	display: block;
	font-size: 1.5em;
	font-weight: 700;
	margin: 0 0 10px;
	color: #fff;
}
.tile .tile-title.title-small {
	font-size: 1.25em;
}
.tile .tile-meta {
	display: block;
	font-size: .85em;
	color: #fff;
}
.tile .tile-label {
	letter-spacing: 5px;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 15px;
}
.tile .tile-description {
	display: block;
	font-weight: 200;
	color: #fff;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.tile .tile-content .btn {
	width: 100%;
	font-size: .9em;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.tile .tile-description.js-content {
	height: 0;
	overflow: hidden;
}
.tile:hover img {
	opacity: .5;
	transform: scale(1.10);
}
.tile:hover .tile-content {
	background: none;
}
.tile:hover .tile-description.js-content {
	height: 50px;
	overflow: inherit;
}
/* small tiles */
.tile.tile-small .tile-content {
	padding: 50px 15px 15px;
}

/* -------------------- users -------------------- */
.user {
	position: relative;
	min-height: 80px;
	padding-left: 100px;
}
.user .user-avatar {
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	overflow: hidden;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}
.user .user-avatar:hover {
	transform: scale(1.10);
}
.user .user-avatar img {
	border-radius: 100px;
}
.user .user-label {
	display: block;
	font-size: .8em;
	margin: 0 0 10px;
}
.user .user-title {
	display: block;
	font-weight: 700;
	margin: 0 0 5px;
}
.user .user-title a {
	color: #1a1b21;
}
.user .user-title a:hover {
	color: #007bff;
}
.user .user-desc {
	display: block;
	font-size: .85em;
	font-weight: 300;
}
.user-rating {
	display: block;
	margin: 0 0 5px;
	color: #09c;
}
/* ----- user sizes ----- */
/* micro users */
.user.user-micro {
	padding-left: 65px;
	min-height: 60px;
}
.user.user-micro .user-avatar {
	width: 50px;
	height: 50px;
	overflow: hidden;
	border-radius: 100px;
}
/* small users */
.user.user-small {
	padding-left: 75px;
}
.user.user-small .user-avatar {
	width: 60px;
}
/* large users */
.user.user-large {
	min-height: 100px;
	padding-left: 120px;
}
.user.user-large .user-avatar {
	width: 100px;
}

/* xl users */
.user.user-xl {
	min-height: 200px;
	padding-left: 220px;
}
.user.user-xl .user-avatar {
	width: 200px;
}

/* inline users */
.user.user-inline {
	display: inline-block;
	margin: 0 20px 20px 0;
}

/* metric users */
.user.user-metric {
	margin-left: 15px;
}

/* user lists */
.user-list {
	margin: 0 0 10px;
}
.user-list .user {
	display: inline-block;
	width: 40px;
	min-height: 45px;
	padding-left: 40px;
	vertical-align: top;
	margin: 0;
}

/* -------------------- video -------------------- */
.video-container {
	position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    padding-bottom: 0;
    margin: 0 0 30px;
	background: #000;
}
.video-container img,
.video-container iframe {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 5;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.video-card {
  background: rgba(0,0,0,.5);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.video-card.card-square .video-thumb {
  padding-bottom: 100%;
}
.video-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--black);
}
.video-thumb img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  transition: background .22s ease;
}
.video-thumb:hover .video-thumb__play,
.video-thumb:focus-visible .video-thumb__play { background: rgba(0,0,0,.5); }
.video-thumb__play i {
  font-size: clamp(48px, 8vw, 64px);
  color: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
  transition: transform .22s ease;
}
.video-thumb:hover .video-thumb__play i,
.video-thumb:focus-visible .video-thumb__play i { transform: scale(1.08); }
.video-thumb:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.video-card-info { padding: 18px 20px; text-align: left; }
.video-card-info strong {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  color: var(--black);
  display: block;
  margin-bottom: 4px;
}
.video-card-info span { font-size: 13px; color: var(--mid-gray); }

.video-card .video-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.75) 100%);
  padding: 20px;
  z-index: 10;
}
.video-card .video-thumb-title {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 400;
  text-align: left;
  margin: 0 0 5px;
}
.video-card .video-thumb-subtitle {
  display: block;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 400;
  text-align: left;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal[hidden] { display: none; }
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.85);
  cursor: pointer;
}
.video-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  z-index: 1;
}
.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  opacity: .85;
  transition: opacity .2s ease;
}
.video-modal__close:hover,
.video-modal__close:focus-visible { opacity: 1; outline: none; }
.video-modal__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--black);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.video-modal__embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/***********************************
FRD SYSTEM Classes
================================================================== */

/* Display type */
.frd-display {
  font-family: var(--brand-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.frd-display-xl {
  font-size: clamp(2.75rem, 7.5vw, 5.75rem);
}

.frd-display-lg {
  font-size: clamp(2.1rem, 5vw, 3.75rem);
  line-height: 1.2;
}

.frd-display-md {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.4;
}

.frd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--brand-font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.frd-eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--frd-red), var(--frd-red-fire));
}

.frd-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--frd-text-muted);
  max-width: 38rem;
}

.frd-hero-accent {
  font-size: 0.75em;
  font-weight: 400;
}

/* Layout primitives */
.frd-section {
  padding-block: var(--frd-section-y);
  position: relative;
}

.frd-section--start {
  padding: 120px 0;
}

.frd-section--tight {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.frd-section--band {
  background:
    linear-gradient(135deg, rgba(150, 38, 38, 0.18), transparent 45%),
    linear-gradient(225deg, rgba(14, 123, 224, 0.16), transparent 40%),
    var(--frd-ink-2);
  border-block: 1px solid var(--frd-line);
}

.frd-section--red {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, 0.08), transparent 50%),
    linear-gradient(135deg, var(--frd-red-deep), #5c1010 55%, var(--frd-blue-deep));
}

.frd-section.section-slim {
  padding: 50px 0
}

.frd-section.section-header {
  padding: 100px 0 50px;
}

.frd-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--frd-line), transparent);
  border: 0;
  margin: 0;
}

.frd-panel {
  background: var(--frd-panel);
  border: 1px solid var(--frd-line);
  border-radius: var(--frd-radius);
}

.frd-panel--hover {
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.frd-panel--hover:hover {
  border-color: rgba(4, 224, 250, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  color: inherit;
}

.frd-panel.panel-bare {
  border: none;
  background: none;
}

.frd-panel.panel-card {
  padding: 0;
}
.frd-panel.panel-card .panel-content {
  padding: 25px;
}

.frd-panel.panel-compact {
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--frd-red-fire), var(--frd-blue)) 1;
  padding-top: 1.25rem;
}
.frd-panel.panel-compact .panel-body {
  padding: 20px 0;
}

.frd-panel .table tr th,
.frd-panel .table tr td {
  background: none;
}

.frd-panel .panel-image-16-9 {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--black);
}
.frd-panel .panel-image-16-9 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}

/* Full-bleed hero */
.frd-hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.frd-hero--compact {
  min-height: 600px;
}
.frd-hero--simple {
  min-height: 400px;
}

.frd-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.frd-hero__media > *,
.frd-hero__media .wp-block-embed,
.frd-hero__media .wp-block-embed__wrapper,
.frd-hero__media .fluid-width-video-wrapper,
.frd-hero__media figure {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  max-width: none;
  aspect-ratio: auto;
}

.frd-hero__media img,
.frd-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

/* Iframes ignore object-fit — scale a 16:9 player to cover the hero. */
.frd-hero__media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100%;
  min-width: 177.78vh; /* 16:9 */
  transform: translate(-50%, -50%);
  border: 0;
}

.frd-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 11, 18, 0.50) 0%, rgba(7, 11, 18, 0.75) 40%, rgba(7, 11, 18, 0.92) 100%),
    linear-gradient(90deg, rgba(150, 38, 38, 0.28), transparent 45%, rgba(14, 123, 224, 0.22));
  pointer-events: none;
}

.frd-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(4rem, 12vw, 8rem) 0 clamp(3rem, 8vw, 5rem);
}

.frd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.frd-hero__play {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
  text-decoration: none;
  font-family: var(--brand-font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.frd-hero__play-icon {
  width: 3.25rem;
  height: 3.25rem;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.frd-hero__play:hover .frd-hero__play-icon {
  background: var(--frd-red);
  border-color: var(--frd-red);
  transform: scale(1.06);
}

.frd-hero .hero-logo {
  display: block;
  width: 150px;
  height: auto;
  margin-bottom: 30px;
}

.frd-hero h1 {
  color: #fff;
}

.frd-hero .hero-content p {
  font-size: 1.25rem;
}

.frd-hero .hero-content.content-light p,
.frd-hero .hero-content.content-light ul,
.frd-hero .hero-content.content-light ol {
  color: #fff;
}

.frd-hero.hero-podcast .frd-hero__veil {
  background: rgba(0, 0, 0, 0.25);
}

/* Media / stats / tiers / episodes */
.frd-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--frd-radius);
  border: 1px solid var(--frd-line);
  aspect-ratio: 16 / 10;
}

button.frd-media {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

button.frd-media:focus-visible {
  outline: 2px solid var(--frd-red);
  outline-offset: 2px;
}

.frd-media img,
.frd-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.frd-media:hover img,
.frd-media:hover video {
  transform: scale(1.04);
}

.frd-media.media-circle {
  border: none;
}
.frd-media.media-circle img {
  border-radius: 500px;
}

.frd-media .media-title {
  font-size: 1.5rem;
  color: #fff;
  font-family: var(--brand-font-display);
  text-transform: uppercase;
  margin-bottom: 0;
}

.frd-media__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, transparent, rgba(7, 11, 18, 0.45));
}

.frd-media__play span {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  color: var(--frd-ink);
}

.frd-stat {
  border-left: 3px solid var(--frd-red);
  padding-left: 1.25rem;
}
.frd-stat.stat-metric {
  padding: 30px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(3px);
}

.frd-stat__num {
  font-family: var(--brand-font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.frd-stat__label {
  margin-top: 0.5rem;
  color: var(--frd-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  font-family: var(--brand-font-display);
}

.frd-pillar {
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--frd-red-fire), var(--frd-blue)) 1;
  padding-top: 1.25rem;
  height: 100%;
}

.frd-pillar .pillar-icon {
  display: block;
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Topic / pillar browse tiles */
.frd-topic-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 11rem;
  height: 100%;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  background: var(--frd-panel);
  border: 2px solid var(--frd-line);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--frd-red-fire), var(--frd-blue)) 1;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.frd-topic-tile:hover {
  color: inherit;
  transform: translateY(-3px);
  background: rgba(0, 0, 0, 0.85);
  border-color: var(--frd-red-fire);
  border-image: none;
}

.frd-topic-tile__icon {
  display: block;
  font-size: 3rem;
  color: var(--frd-red-fire);
  margin-bottom: 1rem;
  line-height: 1;
}

.frd-topic-tile .frd-display {
  font-size: 1.5rem;
  color: #fff;
}

.frd-topic-tile h3 {
  margin-bottom: 0.35rem;
}

.frd-topic-tile p {
  margin-bottom: 0;
  color: var(--frd-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.frd-topic-tile__cta {
  margin-top: 1rem;
  font-family: var(--brand-font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--frd-red-fire);
  font-weight: 600;
}

.frd-topic-tile.tile-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: 20px;
}
.frd-topic-tile.tile-item .frd-topic-tile__icon {
  position: absolute;
  top: 20px;
  left: 20px;
}
.frd-topic-tile.tile-item .frd-topic-tile__thumb {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  object-fit: cover;
  display: block;
}
.frd-topic-tile.tile-item .tile-item__number {
  display: block;
  font-family: var(--brand-font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--frd-red-fire);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.frd-topic-tile.tile-item.active {
  border-color: var(--frd-red-fire);
  border-image: none;
  background: rgba(150, 38, 38, 0.18);
  transform: none;
  cursor: default;
}
.frd-topic-tile.tile-item.active .frd-topic-tile__cta {
  color: #fff;
}

.frd-tier {
  height: 100%;
  padding: 40px;
  background: var(--frd-panel);
  border: 1px solid var(--frd-line);
  position: relative;
  display: flex;
  flex-direction: column;
}

.frd-tier--featured {
  border-color: var(--frd-red);
  background:
    linear-gradient(180deg, rgba(150, 38, 38, 0.12), transparent 40%),
    var(--frd-panel);
}

.frd-tier__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--frd-red);
  color: #fff;
  font-family: var(--brand-font-display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
}

.frd-card {
  display: block;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--frd-line);
  height: 100%;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.frd-card:hover {
  border-color: var(--frd-red-fire);
  transform: translateY(-3px);
  color: inherit;
}

.frd-card .card-content {
  padding: 30px;
}

.frd-card .episode-title {
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 10px;
}
.frd-card .episode-desc {
  font-size: 0.85em;
}

/* dark card styles */
.frd-card.frd-card--dark {
  background: rgba(0, 0, 0, 0.25);
}

.frd-card.frd-card--dark .episode-title,
.frd-card.frd-card--dark .frd-display {
  color: #fff;
}

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

.frd-card.frd-card--dark .frd-display::after {
  background: #fff;
}

.frd-card.frd-card--dark:hover {
  border-color: #fff;
}


.frd-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a101c;
}

.frd-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frd-card__body {
  padding: 30px;
}

/* featured card styles */
.featured .frd-card .episode-title {
  font-size: 2rem;
}
.featured .frd-card .episode-desc {
  font-size: 1.25rem;
}

/* ---------- frd chips ---------- */
.frd-chip {
  display: inline-block;
  font-family: var(--brand-font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  background: var(--frd-red);
  color: #fff;
}

/* ---------- frd subscribe button ---------- */
.frd-subscribe {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--frd-line);
  background: rgba(18, 26, 42, 0.75);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.frd-subscribe:hover {
  border-color: var(--frd-ice);
  background: rgba(14, 123, 224, 0.2);
  color: #fff;
}
.frd-subscribe .subscribe-icon {
  font-size: 2rem;
}

/* ---------- podcast subscribe / register modals ---------- */
.frd-subscribe-modal .modal-content,
.frd-register-modal .modal-content {
  background: var(--frd-panel);
  border: 1px solid var(--frd-line);
  border-radius: var(--frd-radius);
  color: var(--frd-text);
}

.frd-subscribe-modal .modal-header,
.frd-register-modal .modal-header {
  border-bottom-color: var(--frd-line);
}

.frd-subscribe-modal .btn-close,
.frd-register-modal .btn-close {
  filter: invert(1) grayscale(1);
  opacity: 0.7;
}

.frd-subscribe-modal .btn-close:hover,
.frd-register-modal .btn-close:hover {
  opacity: 1;
}

.frd-subscribe-modal__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.frd-subscribe-modal .frd-subscribe {
  width: 100%;
  background: rgba(7, 11, 18, 0.65);
}

.frd-subscribe-modal__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}


/* Episode audio player */
.frd-player {
  position: relative;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  margin-bottom: 2rem;
  background: var(--frd-panel);
  border: 1px solid var(--frd-line);
  border-radius: var(--frd-radius);
}

.frd-player__audio {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.frd-player__layout {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.frd-player__row {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  min-width: 0;
}

.frd-player__row--meta {
  align-items: flex-start;
}

.frd-player__row--primary {
  flex-wrap: nowrap;
}

.frd-player__row--secondary {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.65rem 1rem;
  padding-top: 0.15rem;
}

.frd-player__meta {
  flex: 1 1 auto;
  min-width: 0;
}

.frd-player__title {
  margin: 0;
  font-family: var(--brand-font-display);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--frd-light);
}

.frd-player__guest {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: var(--frd-muted);
}

.frd-player__transport {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.4rem;
}

.frd-player__btn {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--frd-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--frd-light);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.frd-player__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.frd-player__btn:focus-visible {
  outline: 2px solid var(--frd-red-fire);
  outline-offset: 2px;
}

.frd-player__play {
  position: relative;
  width: 3rem;
  height: 3rem;
  border: 0;
  background: var(--frd-red);
  color: #fff;
}

.frd-player__play:hover {
  background: var(--frd-red-fire);
  border-color: transparent;
}

.frd-player__play svg {
  margin-left: 2px;
}

.frd-player.is-playing .frd-player__play svg {
  margin-left: 0;
}

.frd-player__track {
  flex: 1 1 auto;
  min-width: 0;
}

.frd-player__bar {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  touch-action: none;
}

.frd-player__bar:focus-visible {
  outline: 2px solid var(--frd-red-fire);
  outline-offset: 3px;
}

.frd-player__buffer,
.frd-player__progress {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  width: 0;
  border-radius: inherit;
  pointer-events: none;
}

.frd-player__buffer {
  background: rgba(255, 255, 255, 0.18);
}

.frd-player__progress {
  background: linear-gradient(90deg, var(--frd-red-fire), var(--frd-blue));
}

.frd-player__times {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  color: var(--frd-muted);
}

.frd-player__speed {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem;
  border: 1px solid var(--frd-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.frd-player__speed-btn {
  min-width: 2.35rem;
  padding: 0.28rem 0.45rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--frd-muted);
  font-size: 0.72rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.frd-player__speed-btn:hover {
  color: var(--frd-light);
}

.frd-player__speed-btn.is-active,
.frd-player__speed-btn[aria-pressed="true"] {
  background: var(--frd-red);
  color: #fff;
}

.frd-player__volume {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.frd-player__volume-range {
  width: 5rem;
  height: 0.25rem;
  margin: 0;
  accent-color: var(--frd-red-fire);
  cursor: pointer;
}

.frd-player__download {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--frd-line);
  border-radius: var(--frd-radius);
  background: rgba(255, 255, 255, 0.03);
  color: var(--frd-light);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.frd-player__download:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.frd-player__download:focus-visible {
  outline: 2px solid var(--frd-red-fire);
  outline-offset: 2px;
}

.frd-player__live {
  margin: 0;
}

.frd-player__error {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: #ffb4b4;
}

.frd-player.is-loading .frd-player__play {
  opacity: 0.65;
}

.frd-player.is-loading .frd-player__play::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: frd-player-spin 0.7s linear infinite;
}

@keyframes frd-player-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 767.98px) {
  .frd-player__row--primary {
    flex-wrap: wrap;
  }

  .frd-player__track {
    flex: 1 1 8rem;
  }

  .frd-player__row--secondary {
    justify-content: space-between;
  }

  .frd-player__download {
    margin-left: 0;
  }

  .frd-player__volume-range {
    flex: 1;
    min-width: 0;
    max-width: 8rem;
  }
}

.frd-episode-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  color: var(--frd-muted);
  font-size: 0.9rem;
}

.frd-episode-meta__guest {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.frd-episode-meta__guest img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
}

.frd-episode-header {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--frd-line);
}
.frd-episode-header img {
  display: block;
  width: 100%;
}

.frd-section--page-start {
  padding-top: clamp(6.5rem, 11vw, 8.5rem);
}

.frd-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.frd-sidebar-list li + li {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--frd-line);
}

.frd-sidebar-list a {
  display: block;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.frd-sidebar-list a:hover {
  color: var(--frd-ice);
}

/* Archive filters */
.frd-filter-panel + .frd-filter-panel {
  margin-top: 1rem;
}

.frd-filter-panel__label {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--brand-font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--frd-muted);
}

.frd-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.frd-filter-list li + li {
  border-top: 1px solid var(--frd-line);
}

.frd-filter-list a {
  display: block;
  padding: 0.7rem 0;
  color: inherit;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.frd-filter-list a:hover {
  color: var(--frd-ice);
}

.frd-filter-list a.is-active {
  color: var(--frd-red-fire);
}

.frd-archive-header {
  max-width: 40rem;
}

.frd-archive-results {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--frd-muted);
}

/* Events hub + live landing */
.frd-event-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .frd-event-tabs {
    justify-content: flex-end;
  }
}

.frd-event-tabs .btn {
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
}

.frd-event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .frd-event-filters {
    justify-content: flex-end;
  }
}

.frd-event-filters .btn {
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
}

.frd-event-card {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  background: var(--frd-panel);
  border: 1px solid var(--frd-line);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.frd-event-card:hover {
  color: inherit;
  border-color: rgba(4, 224, 250, 0.35);
  transform: translateY(-3px);
}

.frd-event-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a101c;
}

.frd-event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frd-event-card__body {
  padding: 1.25rem 1.35rem 1.35rem;
}

.frd-event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--frd-text-muted);
}

.frd-event-card--featured {
  border-color: var(--frd-red);
  background:
    linear-gradient(180deg, rgba(150, 38, 38, 0.1), transparent 45%),
    var(--frd-panel);
}

.frd-event-title {
  font-weight: 400;
}

.frd-event-detail {
  padding: 1.5rem;
  background: var(--frd-panel);
  border: 1px solid var(--frd-line);
}

.frd-event-detail__label {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--brand-font-display);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--frd-red-fire);
}

.frd-event-detail hr {
  border-color: var(--frd-line);
  opacity: 1;
}

.frd-perk-box {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--frd-line);
  border-left: 3px solid var(--frd-red-fire);
  background: rgba(0, 0, 0, 0.15);
}

/* All-In landing */
.frd-allin-pillar h3 {
  margin-bottom: 0.35rem;
}

.frd-allin-pillar__tag {
  display: block;
  font-family: var(--brand-font-display);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.frd-allin-pillar__lead {
  font-family: var(--brand-font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.frd-allin-pillar__action {
  font-family: var(--brand-font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1rem;
}

.frd-commitment {
  height: 100%;
  padding: 2rem 1.5rem;
  background: var(--frd-panel);
  border: 1px solid var(--frd-line);
}

.frd-commitment__num {
  font-family: var(--brand-font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}

.frd-price-display {
  font-family: var(--brand-font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.frd-accordion .accordion-item {
  background: var(--frd-panel);
  border: 1px solid var(--frd-line);
  color: inherit;
}

.frd-accordion .accordion-item + .accordion-item {
  margin-top: 0.75rem;
}

.frd-accordion .accordion-button {
  background: transparent;
  color: #fff;
  font-family: var(--brand-font-display);
  font-weight: 400;
  line-height: 1.5;
  box-shadow: none;
  padding: 1.15rem 1.25rem;
}

.frd-accordion .accordion-button:not(.collapsed) {
  background: rgba(150, 38, 38, 0.12);
}

.frd-accordion .accordion-button::after {
  filter: invert(1);
  opacity: 0.65;
}

.frd-accordion .accordion-body {
  color: var(--frd-muted);
  line-height: 1.65;
  padding: 1.25rem;
}

.frd-quote {
  border-left: 3px solid var(--frd-blue);
  padding-left: 1.5rem;
}

.frd-quote p {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.45;
}

.frd-testimonial {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 0 50px;
}

.frd-testimonial__avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.25rem;
  margin-top: -75px;
  border: 2px solid var(--frd-line);
}

.frd-testimonial .frd-quote {
  margin-bottom: 1.25rem;
}

.frd-testimonial footer {
  margin-top: auto;
}

/* Team grid */
.frd-team-card {
  height: 100%;
}

.frd-team-card .frd-media {
  aspect-ratio: 1;
}

.frd-team-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

/* Story timeline */
.frd-timeline {
  position: relative;
  max-width: 64rem;
  margin-inline: auto;
}

.frd-timeline__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    rgba(150, 38, 38, 0.1),
    rgba(150, 38, 38, 0.65),
    rgba(150, 38, 38, 0.1)
  );
}

.frd-timeline__item {
  position: relative;
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.frd-timeline__item + .frd-timeline__item {
  margin-top: clamp(1.5rem, 3vw, 3rem);
}

.frd-timeline__item .row {
  --bs-gutter-x: clamp(2.5rem, 6vw, 5rem);
  --bs-gutter-y: 1.5rem;
}

.frd-timeline__item .col-sm-6 {
  padding-inline: clamp(1rem, 2.5vw, 2rem);
}

.frd-timeline__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--frd-red);
}

.frd-timeline__year {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.frd-timeline__copy h3 {
  font-family: var(--brand-font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.frd-timeline__copy p {
  color: var(--frd-grey);
  margin-bottom: 0;
  line-height: 1.65;
}

.prose-content p {
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.prose-content a {
  color: var(--frd-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose-content a:hover {
  color: #b93333;
}

.prose-content ul,
.prose-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.prose-content iframe {
  width: 100%;
  max-width: 100%;
  margin: 0 0 30px;
}

.prose-content .not-prose-box {
  color: var(--frd-text);
}

.prose-content .not-prose-box p {
  color: inherit;
}

/* Site header */
.frd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  width: 100%;
  background: rgba(0, 0, 0, .25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

#site-header {
  position: relative;
  z-index: 1040;
}

.frd-header__bar {
  position: relative;
  z-index: 2;
  transition: background-color 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.frd-header.is-scrolled .frd-header__bar,
.frd-header.is-open .frd-header__bar,
.frd-header--solid .frd-header__bar {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--frd-line);
}

.frd-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}

.frd-header__logo img {
  display: block;
  height: 2.5rem;
  width: auto;
}

.frd-header__nav {
  display: none;
  flex: 1;
  justify-content: center;
}

.frd-header__list {
  display: flex;
  align-items: center;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.frd-header__item--has-sub {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: -1rem;
}

.frd-header__link,
.frd-header__link--btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--brand-font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0.35rem 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.frd-header__link:hover,
.frd-header__link--btn:hover,
.frd-header__link.active,
.frd-header__link[aria-current="page"] {
  color: var(--frd-red-fire);
}

.frd-header__caret {
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.frd-header__item--has-sub.is-open .frd-header__caret,
.frd-header__item--has-sub:hover .frd-header__caret,
.frd-header__item--has-sub:focus-within .frd-header__caret {
  transform: rotate(180deg);
}

.frd-header__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 13rem;
  margin: 0;
  padding: 0.85rem 0 0.65rem;
  list-style: none;
  background: transparent;
  border: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.frd-header__sub::before {
  content: "";
  position: absolute;
  top: 0.85rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--frd-line);
  z-index: -1;
}

.frd-header__item--has-sub:hover .frd-header__sub,
.frd-header__item--has-sub:focus-within .frd-header__sub,
.frd-header__item--has-sub.is-open .frd-header__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.frd-header__sub a {
  display: block;
  position: relative;
  z-index: 1;
  padding: 0.55rem 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: var(--brand-font-body);
  font-size: 0.9rem;
  white-space: nowrap;
}

.frd-header__sub a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.frd-header__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.frd-header__cta {
  display: none;
  padding: 0.65rem 1.15rem !important;
  font-size: 0.75rem;
}

.frd-header__toggle {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  display: inline-grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  border-radius: var(--frd-radius);
}

.frd-header__toggle-lines,
.frd-header__toggle-lines::before,
.frd-header__toggle-lines::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
  position: relative;
}

.frd-header__toggle-lines::before,
.frd-header__toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.frd-header__toggle-lines::before { top: -6px; }
.frd-header__toggle-lines::after { top: 6px; }

.frd-header.is-open .frd-header__toggle-lines {
  background: transparent;
}

.frd-header.is-open .frd-header__toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.frd-header.is-open .frd-header__toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.frd-header__drawer {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 5.5rem 1.5rem 2rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.frd-header.is-open .frd-header__drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.frd-header__drawer[hidden] {
  display: block !important;
}

.frd-header__drawer-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.frd-header__drawer-list > li + li {
  border-top: 1px solid var(--frd-line);
}

.frd-header__drawer-list > li > a,
.frd-header__drawer-list summary {
  display: block;
  padding: 1.15rem 0;
  font-family: var(--brand-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  list-style: none;
}

.frd-header__drawer-list summary::-webkit-details-marker {
  display: none;
}

.frd-header__drawer-list details ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0 0 0 0.25rem;
}

.frd-header__drawer-list details a {
  display: block;
  padding: 0.55rem 0;
  color: var(--frd-muted);
  text-decoration: none;
  font-size: 1rem;
}

.frd-header__drawer-list details a:hover,
.frd-header__drawer-list > li > a:hover,
.frd-header__drawer-list > li > a.active {
  color: var(--frd-red-fire);
}

/* hide the header on the lead magnet pages */
.page-template-lead-magnet .frd-header {
  display: none;
}

body.frd-nav-lock {
  overflow: hidden;
}

/* -------------------- footer -------------------- */
.frd-footer {
  padding: 50px 0;
  background-color: #020617;
}
.frd-footer .footer-logo {
  display: block;
  width: 100px;
  height: auto;
  margin-bottom: 30px;
}
.frd-footer .footer-col-brand {
  padding-right: 30px;
}
.frd-footer .footer-social a {
  font-size: 2em;
  line-height: 1;
}

/* hide footer elements on the lead magnet pages */
.page-template-lead-magnet .frd-footer .footer-blurb,
.page-template-lead-magnet .frd-footer .footer-col-menu,
.page-template-lead-magnet .frd-footer .footer-col-cta {
  display: none;
}

/* Motion */
[data-animate] {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate="fade-up"] {
  transform: translateY(28px);
}

[data-animate="fade-in"] {
  transform: none;
}

[data-animate="scale-in"] {
  transform: scale(0.96);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

.frd-hero__content [data-animate] {
  transition-duration: 0.9s;
}


/* =========================================================================
   4. RESPONSIVE
   ========================================================================= */

.py-lg-6 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.pb-lg-6 {
  padding-bottom: 4.5rem !important;
}

@media (max-width: 1299px) {
  .frd-hero__content {
    padding: 50px;
  }
  .frd-section {
    padding: 50px;
  }
  .frd-section.section-header {
    padding: 100px 30px 30px;
  }
  .frd-section.section-slim {
    padding: 50px;
  }
  .frd-section.frd-section--start {
    padding: 120px 50px 50px;
  }

  .frd-footer {
    padding: 50px 30px;
  }
}

@media (max-width: 992px) {
  .headline-lg {
    font-size: 1.5rem;
  }
  
  .frd-hero,
  .frd-hero--compact,
  .frd-hero--simple {
    min-height: 100vh;
  }
}

@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .pb-lg-6 {
    padding-bottom: 6rem !important;
  }

  .frd-header__nav {
    display: flex;
  }

  .frd-header__cta {
    display: inline-flex;
  }

  .frd-header__toggle,
  .frd-header__drawer {
    display: none !important;
  }

  .frd-timeline__line,
  .frd-timeline__dot {
    display: block;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.5em;
  }
  h2 {
    font-size: 2.25em;
  }
  h3 {
    font-size: 2em;
  }
  h4 {
    font-size: 1.75em;
  }
  h5 {
    font-size: 1.5em;
  }
  h6 {
    font-size: 1.25em;
  }

  .frd-hero__content {
    padding: 30px;
  }
  .frd-section {
    padding: 50px 30px;
  }
  .frd-section.section-slim {
    padding: 30px;
  }
  .frd-section.frd-section--start {
    padding: 100px 30px 30px;
  }

  .frd-footer {
    padding: 30px;
  }

  /* ----- users ----- */
	/* large users */
	.user,
	.user.user-large {
		min-height: 65px;
		padding-left: 65px;
	}
	.user .user-avatar,
	.user.user-large .user-avatar {
		width: 50px;
	}
	.user.user-xl {
		padding-left: 120px;
	}
	.user.user-xl .user-avatar {
		width: 100px;
	}
}

@media (max-width: 600px) {
  .well {
    padding: 30px;
  }
  
  .frd-timeline__line,
  .frd-timeline__dot {
    display: none;
  }

  .frd-media .media-title {
    font-size: 1rem;
  }
}

/* ----- small screens ----- */
@media (max-width: 480px) {
  .frd-eyebrow {
    font-size: 0.8em;
  }
  .frd-hero h1 {
    font-size: 2.25em;
    line-height: 1.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate],
  .btn,
  .frd-panel--hover,
  .frd-card,
  .frd-media img {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
