html, body {
	background-color: var(--bgcolor);
	color: var(--foregroundPrimary);
	padding: 0;
	margin: 0;
	font-family: var(--bodytext);
	font-size: var(--bodyFontSize);
    scroll-behavior: smooth;
}

* {
	box-sizing: border-box;
	max-width: 100%;
}

a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

img.tree {
  width: 150px;
}

.episodeWrapper {
		display: flex;
		flex-direction: row;
		width: 100%;
		border-bottom: solid 1px #333;
		margin-bottom: 30px;
		gap: 20px;
	}
	.episodeImage {
		max-width: 200px;
		width: 200px;
		aspect-ratio: 1/1;
		overflow: hidden;
		flex: 0 0 100%;
	}
	.episodeImage img {
		width: 100%;
	}
	.episodeDetail {
		flex-grow: 1;
		overflow-wrap: anywhere;
	}
	


#footer {
	background-color: var(--blue);
	padding: 30px 20px;
  text-align: left;
  position: relative;
  clear: both;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  color: #fff;
  font-size: 14px;
  z-index: 1;
}

#footer > .center,
#footer > .right,
#footer > .left {
	min-width: 75px;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	background-color: unset;
}

#footer > .center {
	text-align: center;
}

#footer > .right {
	text-align: right;
}

.button-founders {
  background: linear-gradient(135deg, #3366cc, #003366);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 23px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.button-founders:hover {
  background: linear-gradient(135deg, #003366, #3366cc);
  transform: scale(1.05);
}

.button-founders-glass {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-founders-glass:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.6);
}

.padded {
		margin: 0; padding: 0 20px;
		}

.callout {
	margin: 25px;
	padding: 20px;
	border: solid 1px #009;
	border-radius: 10px;
	background-color: #8bf;
}

.columns {
	display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.columns .callout {
	width: calc(50% - 50px);
}

.columns .callout h3 {
	margin-top: 0;
}

.sublime {
	font-size: 14px;
	font-style: italic;
}
.splash {
	width: 100%;
	background: url('/studio.jpg') center/cover no-repeat;
	aspect-ratio: 2500/863;
	max-height: 188px;
}

.toplogo {
  height: 70%;
  aspect-ratio: 1/1;
  background: url('/sits.png') center/cover no-repeat;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 101;
}

.logo {
  width: 120px;
  margin: 0 10px;
}

.bigMenu.inverseheader {
  display: flex;
  flex-direction: row;
  gap: 0px;
  font-family: var(--bodytext);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  padding: 0;
  color: white;
  border-bottom: unset;
  border-collapse: unset;
  line-height: 30px;
  z-index: 102;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
 }


.inverseheader a, .inverseheader a:visited, .inverseheader a:active {
  color: #fff;
  text-decoration: none;
 }

.inverseheader a:hover {
  color: #fff;
  text-decoration: underline;
 }
 
 
.bigMenu > a,
.bigMenu > div {
	padding: 5px 12px;
}

.bigMenu a,
.bigMenu a:visited,
.bigMenu a:active {
	color: #fff;
	text-decoration: none;
}

.bigSubMenu:hover .subItems a,
.bigSubMenu:hover .subItems a:visited,
.bigSubMenu:hover .subItems a:active {
	color: #333;
	/* background-color:#633; */
}
.bigMenu a:hover {
	color: #fff;
	/* background-color:#633; */
	text-decoration: underline;
	
}
.bigSubMenu {
	position: relative;
}

.bigSubMenu:hover {
	/* color: #fff; */
	/* background-color:#633; */
	text-decoration: underline;
}
.bigSubMenu .subItems-content {
	display:none;
	flex-direction: column;
	position:absolute;
	left: 0;
	top: 36px;
	z-index: 100;
	background-color: #fff;
	border: solid 1px #333;
	box-shadow: 3px 3px 5px #999;
	white-space: nowrap;
}

.subItems:hover .subItems-content,
.subItems-content:hover,
.bigSubMenu:hover .subItems-content {
	display:flex;
}

.bigMenu .subItems-content a, .bigMenu .subItems-content a:visited, 
.subItems-content a {
	color: #333;
	padding: 5px 20px;
}
.subItems-content a:hover {
	/* color: #fff; */
	/* background-color: #633; */
	text-decoration: underline;
}


.links.menuBurger {
	display: none;
	padding-right: 15px;
}


.mobileMenu {
	position: absolute;
	top: 60px;
	right: 0;
	color: #fff;
	background-color: rgba(0,0,0,0.75);
	padding: 10px 40px 10px 20px;
	border: solid 1px #fff;
	border-right: none;
	border-radius: 6px 0 0 6px;
	z-index: 2000;
	max-height: calc(100vh - 80px);
	overflow-y: scroll;
	
}

.mobileMenu.closed {
	display: none;
}
.mobileMenu.open {
	display: flex;
	flex-direction: column;
}



.mobileMenu a,
.mobileMenu a:visited,
.mobileMenu a:active,
.mobileMenu a:hover {
	color: #fff;
	font-size: 14px;
	padding: 5px 0;
	text-decoration: none;
	font-family: var(--bodytext);
}

.mobileSub-content {
	padding-left: 10px;
	display: flex;
	flex-direction: column;
}

.mobileMenu .mobileSubTitle, 
.mobileMenu .mobileSubTitle a,
.mobileMenu .mobileSubTitle a:hover,
.mobileMenu .mobileSubTitle a:visited,
.mobileMenu .mobileSubTitle a:active {
	font-size: 16px;
	font-family: "Poppins";
	color: #fff;
	padding: 10px 0 5px 0;
	text-decoration: underline;
}

 
 #rltopwords #menu {
	position: relative;
	padding: 10px;
	flex-grow: 1;
	text-align: right;
}

#menu #dropdown {
	position: absolute;
	right: 10px;
	width: 200px;
	top: 11px;
	background-color: #fff;
	border: 1px solid #900;
	
}

#menu #dropdown {
	position: absolute;
	right: 10px;
	width: 200px;
	top: 11px;
	background-color: #fff;
	border: 1px solid #900;
	
}

 
#rltopwords .leftside {
  display: flex;
  align-items: center;
  flex-direction: row;
}

#footer .logo {
	width: 90px;
}



.menu .link {
	font-size: 20px;
	padding: 10px 15px;
}

.link a,
.link a:visited {
	color: #663333;
	text-decoration: none;
}
.link a:hover {
	color: #663333;
	text-decoration: underline;
}

.links {
	display: flex;
	flex-direction: row;
}

#rltopwords {
	position: fixed;
	top:0;
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.blackheader {
	display: none;
}

.topspacer {
	display: block;
	width: 100%;
  aspect-ratio: 2500/863;
  max-height: 188px;
}
#footer .links {
	justify-content: flex-end;
	gap: 12px;
}

#footer a, #footer a:visited, #footer a:hover {
	color: #fff;
}

.episodeDetail a, a:visited {
	color: #fff;
}

.intro {
	display: flex;
	width: 100%;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 30px;
	line-height: 1.2;
	text-align: center;
	color: var(--titleColor);
	position: relative;
	z-index: 20;
}

.white {
	color: var(--titleColor);
}

.fat input,
.fat textarea {
  background-color: #fff;
  padding: 6px;
  border-radius: 3px;
  color: #000;
  box-sizing: border-box;
  border: none;
  font-size: 20px;	
}

.bluebutton {
	display: flex;
	padding: 6px 20px;
	flex-basis: content;
	width: max-content;
	background-color: #009;
	color: #fff;
	font-size: 20px;
	border: none;
	border-radius: 10px;
}

.bluebutton:hover {
	background-color: #00C;
}
 
.address {
	display: flex;
	color: #fff;
	float: right;
	margin-right: 10px;
	font-size: 14px;
	min-width: 147px;
	
}

.podIntro {
		display:flex;  justify-content: flex-start; width: 100%; gap: 20px;
	}   

h1 {
	color: #333;
  display: inline-block;
  font-weight: 700;
  font-family: var(--titletext);
  font-size: var(--titleFontSize);
  line-height: 26px;
  
}