* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-family: Viga, Arial, sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #F7F7F7;
}
.container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding: 10px;
	max-width: 1200px; /* Centers layout on larger screens */
	width: 100%;
}
.container-no-gap {
	gap: 0px;
}

.purple {
	background-color: #6415AA !important;
}

.box {
	background-color: #6415AA;
	padding: 20px;
	text-align: left;
	flex: 1 1 calc(33.33% - 20px); /* 3 columns with gap */
	min-width: 200px; /* Ensures responsiveness */
	padding: 35px;
	color: white;
}

.box-on-page {
	background-color: white;
	text-align: left;
	flex: 1 1 calc(66.66% - 20px); /* 3 columns with gap */
	min-width: 200px; /* Ensures responsiveness */
	padding: 35px;
	color: white;
}

.box-small-padding {
	padding: 10px;
}

.box-on-overons {
	background-color: white;
	text-align: left;
	flex: 1 1 calc(66.66% - 20px); /* 3 columns with gap */
	min-width: 200px; /* Ensures responsiveness */
	color: white;
}

.box-link-above {
	padding-top: 15px !important;
	padding-bottom: 10px !important;
	background-color: transparent;
}

.header {
	text-align: left;
	padding: 20px;
	font-size: 24px;
	flex: 1 1 100%; /* Stacks items on smaller screens */
}

.logo {
	font-size: 2.5em;
	color: #6415AA;
}

.episode-title {
	font-size: 2.1em;
	font-weight: 400;
}

.episode-title-larger {
	font-size: 2.4em;
	font-weight: 400;
}

.episode-meta {
	font-size: 20px;
	margin-bottom: 10px;
}

.episode-list-for-person {
	font-size: 20px;
	margin: 15px;
	margin-bottom: 50px;
}

li {
	margin-top: 25px;
	margin-bottom: 25px;
}

.episode-audio {
	margin-top: 50px;
	margin-bottom: 0px;
}

.episode-description {
	font-size: 23px;
	margin-bottom: 20px;
	color: black;
	text-align: left;
}

.episode-people {
	font-size: 22px;
	margin-bottom: 20px;
	color: #50504e;
	text-align: left;
	font-style: italic;
}

.praatmee {
	font-size: 22px;
	color: black;
	margin-bottom: 20px;
	text-align: left;
	margin-left: 20px;
}

.margin-left-50 {
	margin-left: 50px;
}

a {
  color: white;
}

a:hover {
  color: white;
  text-decoration: none;
}

.purple-link {
	color: #6415AA;
}

.purple-link:hover {
  color: #6415AA;
  text-decoration: none;
}


.shownotes-button {
  background-color: black;
  color: white;
  text-decoration: none;
  padding: 15px;
  text-align: right;
  display: inline-block;
}

.header-info {
	margin-top: 10px;
	margin-bottom: 10px;
	color: black;
	font-size: 25px;
}

h4 {
	color: black;
	margin: 15px;
	padding-top: 15px;
}

h1 {
	display: none; 
}

.timestamp {
  background-color: #6415AA;
  padding: 15px 15px 0px 15px;
  font-size: 22px;
}

.transcript-line {
  background-color: #6415AA;
  padding: 15px;
  margin-bottom: -15px;
  font-size: 22px;
  
}

@media (max-width: 1024px) {
	.box, .header {
		flex: 1 1 calc(50% - 20px);
	}
}
@media (max-width: 768px) {
	
	body {
		margin-top: 15px;
		margin-left: 5px;
		margin-right: 5px; 
	}
	
	.box, .header {
		flex: 1 1 100%;
	}
	
	.logo {
		font-size: 1.676em;
	}
	
	.header-info {
		font-size: 22px;
	}
	
	.episode-title {
		font-size: 1.9em;
		font-weight: 500;
	}

	.episode-title-larger {
		font-size: 2.2em;
		font-weight: 500;
	}
	
	.episode-description {
		font-size: 21px;
	}
	
	.episode-people {
		font-size: 19px;
	}
	
	.praatmee {
		font-size: 19px;
	}
	
}
