br {display: initial;}
form h4 {
	color: var(--red);
	font-size: initial;
	margin-left: -.5rem;
	opacity: 0.5;
	text-align: left;
}

#brand {
    margin: 2rem auto;
    margin-top: 0;
	overflow: hidden;
	position: relative;
    text-align: center;
}

#brand::before {
	background-image: url('/images/logo-red.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	height: 100%;
	left: 0;
	opacity: 0.15;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}

#brand h4 {color: gray;}
#brand h2, #brand h4 {
    margin: 0.5rem 0;
	position: relative;
	z-index: 1;
}

#reasons {
    margin: 2rem auto;
    margin-top: 0;
	overflow: hidden;
	position: relative;
    text-align: center;
    max-width: 500px;
}
#reasons p {
    margin: 1rem auto;
    text-align: center;
}
#reasons h5 {
    color: var(--red);
    margin: 1rem auto;
    text-align: center;
}
#reasons li {
    color: #999;
    font-size: 70%;
    margin-bottom: 1rem;
}
#reasons strong {
    color: #000;
}

.cost {color: #cccccc;}
/* Checkbox row: slightly smaller, tighter */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: 1.5rem;      /* smaller text */
    line-height: 1.35;
    margin: .5rem 0 1rem;    /* a bit tighter */
}
.form-check input[type="checkbox"] {
    margin: .2rem .25rem 0 0;  /* aligns box with first line of text */
}

/* Checkbox row */
.form-check {
    display: block;
    margin: 0.75rem 0;
}
.form-check input[type="checkbox"] {
    margin-right: .5rem;
    vertical-align: middle;
}

.icon {
	width: 30px;
	height: auto;
	margin: -4px .5rem 0 0;
	flex-shrink: 0;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 37px;
	height: 26px;
	background-color: rgba(255, 0, 0, 0.8); /* YouTube red with transparency */
	border-radius: 15%; /* Make it a circle */
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translate(-50%, -50%);
	transition: transform 0.3s;
}

.play-button::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 10px solid white; /* Triangle play icon */
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}

.price {
	color: var(--gold);
	font-weight: bold;
}
.sample-container {
	display: none;
	margin-top: 10px;
}

.sample-gallery {
	display: none; /* hidden by default */
	overflow-x: auto;
	white-space: nowrap;
	margin-top: 10px;
	padding-bottom: 10px;
	gap: 1rem;
}

.sample-item {
	display: inline-block;
	width: 150px;
	text-align: center;
	margin-right: 1rem;
}
.sample-item p {
	font-size: 0.8rem;
	color: var(--tan);
	margin-top: 5px;
	cursor: pointer;
}

.sample-thumbnail {
	width: 150px;
	max-width: 100%;
	height: auto;
	cursor: pointer;
	border-radius: 5px;
	transition: transform 0.3s;
}
.sample-thumbnail:hover {
	transform: scale(1.05);
}

.sample-video-thumbnail {
	width: 150px;
	height: 84px;
	object-fit: cover;
	border-radius: 5px;
}

.sponsor {
	align-items: flex-start;
	background-color: #f2f2f2;
	border-radius: 10px;
    box-sizing: border-box;
	display: flex; /* Make content flex for side-by-side */
	flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem auto;
	max-width: 95%;
    padding: 1rem;
    padding-bottom: 2rem;
	position: relative;
	transition: background-color 0.3s ease;
	width: 500px;
}

.sponsor > div {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: flex-start;
}

.sponsor:hover {
	background-color: #e6e6e6;
}

.sponsor p[onclick*="openSample"],
.sponsor p[onclick*="openCarousel"] {
	margin-left: auto;
	text-align: right;
	width: auto;
	white-space: nowrap;
}

.sponsor-content {
	max-height: none;
	overflow: visible;
	transition: none;
}

.sponsor-content ul,
.sponsor-content li {
    font-size: 1.5rem;
	-webkit-text-size-adjust: none; /* prevent Safari auto-scaling */
}
.sponsor-content ul ul {
	list-style: none;
	padding-left: 2rem;
}
.sponsor-content ul ul li {
	color: #555;
	font-size: 1.2rem;
	list-style: none;
}

.sponsor-content ul ul li::before {
	content: "– ";
	color: #555; /* or a theme color */
}
.sponsor-main {
	flex: 1;
	min-width: 0;
}

.sponsor-main a {
	color: var(--tan) !important;
}

.sponsor-title {
	color: var(--red);
    font-size: 1.75rem;
	margin-bottom: 1rem;
	text-align: left;
}

.sponsor .sample-container {
	margin-left: auto;
	align-self: flex-start;
	text-align: right;
}

.sponsor .sample-thumbnail {
	width: 150px;
}

.sponsor .sample-container,
.sponsor .sample-gallery,
.sponsor .sample-thumbnail,
.sponsor p[onclick*="openCarousel"],
.sponsor p[onclick*="openSample"] {
	flex-shrink: 0;
	white-space: nowrap;
}

.tap-hint {
	position: absolute;
	bottom: 10px;
	left: 15px;
	font-size: 1.25rem;
	color: var(--red);
	opacity: 0.6;
	font-style: italic;
	margin: 0;
	pointer-events: none; /* So it doesn't interfere with clicks */
}

.text-cream {color: var(--cream);}

.video-thumbnail-container {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

.video-thumbnail-container:hover .play-button {
	transform: translate(-50%, -50%) scale(1.1); /* Slightly enlarge on hover */
}

@media screen and (max-width: 768px) {
	h1 {
		font-size: 2.5rem;
	}

	.sample-container {
		text-align: center;
		width: 100%;
	}

	.sample-thumbnail {
		width: 100%;
		max-width: 300px;
	}

	.sponsor-content ul {margin-left: -2rem;}

}
@media (max-width: 420px) {
}