.hero--custom {
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
}

.hero--custom .hero__inner {
  max-width: 48rem;
}

.hero--custom .hero__title {
  margin: 0 0 1rem;
}

.hero--custom .hero__subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.th-hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.th-hero .container {
  width: 100%;
}

.th-hero__content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  /* color: #fff; */
  /* color: var(--th-blue); */
  color: var(--th-orange);
  text-shadow: 0 2px 10px rgba(20, 30, 45, 0.35);
}

.th-hero__kicker {
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  /* color: rgba(255, 255, 255, 0.85); */
  color: var(--th-orange);
}

.th-hero__title {
  margin: 0 0 1rem;
  /* color: #fff; */
  /* color: var(--th-blue); */
  color: var(--th-orange);
}

.th-hero__text {
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0 0 1.75rem;
  /* color: rgba(255, 255, 255, 0.9); */
  /* color: var(--th-blue); */
  color: var(--th-orange);
}

.th-hero__cta .button {
  padding: 0.85rem 1.5rem;
}

.th-hero__overlay {
  position: absolute;
  inset: 0;
  /* background: #000; */
  background: var(--th-slate-blue);
  z-index: 1;
}

.has-hero #header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: transparent;
}

.has-hero #header .navbar {
  background: transparent;
}

.has-hero #header .navbar a,
.has-hero #header .navbar .lang-item,
.has-hero #header .navbar .lang-item.active {
  /* color: #fff; */
  /* color: var(--th-blue); */
  color: var(--th-orange);
}

.has-hero #header .login-status-wrapper,
.has-hero #header .login-status-wrapper a,
.has-hero #header .login-status-wrapper i {
  /* color: var(--th-blue); */
  color: var(--th-orange);
}

.has-hero #header .logo img {
  filter: none;
}

#header .logo img {
  height: 112px;
  filter: drop-shadow(0 2px 10px rgba(20, 30, 45, 0.35));
}

.mobile-logo img {
  height: 96px;
}

body.header-fixed.header-animated #header.scrolled .logo img {
  height: 72px;
}

.lang-switch {
  margin-left: 0.75rem;
  display: inline-flex;
  gap: 0.25rem;
}

.lang-item {
  text-decoration: none;
  font-weight: 600;
}

.active-lang {
  opacity: 0.6;
  cursor: default;
  text-decoration: none;
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-link {
  font-weight: 600;
  text-decoration: underline;
}

.manifesto .section-body {
  max-width: 54rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.cta {
  background: #0e1726;
  color: #fff;
  border-radius: 12px;
}

.cta .section-title {
  color: #fff;
}

.cta .section-body {
  max-width: 38rem;
  line-height: 1.6;
}

.form-embed {
  margin-top: 1.5rem;
}

.episodes .episode-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.episode-card {
  background: #ffffff;
  border: 1px solid #e6e8ed;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.episode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.episode-card a {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
}

.episode-thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.episode-meta {
  padding: 1rem 1.25rem 1.25rem;
}

.episode-title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.episode-excerpt {
  margin: 0 0 0.75rem;
  color: #5d6470;
}

.episode-date {
  font-size: 0.9rem;
  color: #8a92a3;
}

.episode-page h1 {
  margin-bottom: 0.5rem;
}

.episode-page .episode-date {
  color: #8a92a3;
  margin-bottom: 1rem;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin: 1.5rem 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer {
  padding: 2.5rem 0;
  background: #0e1726;
  color: #cfd6e4;
}

.footer a {
  color: #cfd6e4;
  text-decoration: none;
  margin-left: 1rem;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
}

.footer-links {
  display: inline-flex;
  gap: 1rem;
  margin-left: 1.5rem;
}
.th-hero,
.th-hero__content,
.th-hero__title,
.th-hero__kicker,
.th-hero__text {
  /* Old palette reference:
     #ffffff, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9) */
}

:root {
  /* Palette (active) */
  --th-orange: #FABA88;
  --th-slate-blue: #6F859E;
  --th-blue: #B2C8E5;
  --th-finn: #692D54;
}
