@media (pointer: coarse) {
	.hamburger-menu {
		display: block;
	}
	.nav-bar {
		height: 100vh;
		width: 100%;
		max-width: 500px;
		position: fixed;
		top: 0;
		right: -500px;
		display: flex;
		background-color: var(--HEADER_BG);
		font-size: 2rem;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		text-align: left;
		transition: 300ms ease;
	}
	.nav-bar.active > * {
		margin-left: 30px;
	}
	.nav-bar.active {
		right: 0;
	}

	.header-section:nth-child(3) {
		margin-left: auto;
	}

	.header-section:nth-child(2) > *:last-child {
		display: block;
		margin-top: 30px;
		font-size: 1rem;
	}

	.dropdown-wrapper {
		all: unset;
		display: grid;
		grid-template-rows: auto 0fr;
		transition: grid-template-rows 450ms ease;
	}
	.dropdown-wrapper:has(div > button.active) {
		grid-template-rows: auto 1fr;
	}
	.dropdown-wrapper > div > button:has(p) {
		display: block;
		padding-right: 15px;
		font-size: 2rem;
		background: none;
		border: none;
	}
	.dropdown-wrapper > div > button > p {
		transition: 300ms ease;
	}
	.dropdown-wrapper > div > button.active > p {
		transform: rotate(90deg);
	}
	.dropdown-wrapper > div:not(:first-child) {
		all: unset;
		font-size: 1.5rem;
		overflow: hidden;
	}
	.dropdown-wrapper > div:not(:first-child) > a {
		padding: 10px;
		max-width: 90%;
	}
}
