.md-header__ellipsis .md-header__topic:last-child .md-ellipsis {
	display: none;
}

.md-header__topic {
	opacity: 1 !important;
  transform: none !important;
}

.md-main__inner {
  max-width: 62rem;
}

.legal-banner {
  display: none;
}

.md-sidebar--secondary {
  display: none !important;
}

@media screen and (min-width: 76.25em) {
  .md-sidebar {
    display: none !important;
  }
}

.subtitle {
	margin: .25rem 0;
	color: var(--md-primary-bg-color);
	line-height: 1;
  text-align: center;
}

.hero {
	background: var(--md-footer-bg-color--dark);
}

.hero .content {
	display: flex;
	align-items: center;
  max-width: 60rem;
	padding: 3rem 0;
	margin-left: auto;
  margin-right: auto;
}

.hero .left {
  flex: 1;
	width: 50%;
}

.hero .right {
  flex: 1;
  text-align: right;
	width: 50%;
}

.hero .right video {
	width: 100%;
	height: 100%;
	max-height: 405px;
	background: black;
}

@media screen and (max-width: 2000px) {
	.hero .right video {
		max-height: 371.25px;
	}
}

@media screen and (max-width: 930px) {
	.hero .content {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.hero .left {
		width: 100%;
	}

	.hero .right {
		text-align: center;
		margin-top: 2.5rem;
		width: 100%;
	}

	.hero .right video {
		width: 90%;
	}
}

.hero h1 {
  font-size: 3rem;
	font-weight: 900;
	color: var(--md-primary-bg-color);
	letter-spacing: -.01em;
	line-height: 1;
	margin: 0;
}

.hero p {
  font-size: 1rem;
  line-height: 1.6;
	color: var(--md-primary-bg-color);
  overflow-wrap: break-word;
  margin: .75rem 0;
}

.md-content h2 {
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--md-primary-bg-color);
	text-align: center;
	margin: 0;
}

@media screen and (max-width: 1220px) {
	.hero .content {
		padding-inline: 1rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.md-content h2 {
		font-size: 1.5rem;
	}
}

.category-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
	margin: 1.5rem 0 4rem;
}

.category-box {
	background: var(--md-footer-bg-color--dark);
	border: 1px solid #484848;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	max-width: 360px;
	height: fit-content;
	flex: 1 1 280px;
	display: flex;
	flex-direction: column;
	transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out !important;
}

.category-box:hover {
	transform: translateY(-4px);
	box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.category-box img {
	width: 100%;
	min-height: 180px;
	max-height: 180px;
	object-fit: cover;
}

.category-box h3 {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 600;
	margin: .75rem 0;
}

.category-box p {
	margin: .75rem .5rem;
	color: var(--md-primary-bg-color);
	line-height: 1.4;
}

.explainer-container {
	background: var(--md-footer-bg-color--dark);
	width: 100vw;
	margin-left: 50%;
	transform: translateX(-50%);
}

.explainer-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
  max-width: 60rem;
  margin: auto;
	margin-bottom: 4rem;
	padding: 3rem 1.5rem;
}

.explainer-grid h3 {
	font-size: 1.25rem;
  font-weight: 600;
	color: var(--md-primary-bg-color);
	margin: 0;
}

.explainer-grid p {
	color: var(--md-primary-bg-color);
	margin: 0;
}

@media screen and (max-width: 570px) {
	.explainer-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

.category-grid.small {
	gap: .75rem;
	margin: 1rem 0 4rem;
}

.small-box {
	padding: 0.5rem 1rem;
	border: 1px solid white;
	border-radius: 8px;
	background: var(--md-footer-bg-color--dark);
	transition: transform 0.1s ease-in-out !important;
}

.small-box:hover {
	transform: translateY(-2px);
}

.small-box h3 {
	text-align: center;
	font-size: 1rem;
	font-weight: 600;
	margin: .25rem 0;
}