header {
	margin: 42px auto;
	color: var(--wf-yellow);
	
	.logo {
		font-size: 56px;
		
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 20px;
		
		strong {
			font-weight: 700;
		}
		
		img {
			height: 80px;
		}
	}
	
	a {
		color: inherit;
		text-decoration: none;
		max-width: 280px;
		margin: 0 auto;
		display: block;
	}
}

.article {
	max-width: 600px;
	margin: 44px auto 62px;
	padding: 0 24px;
	
	h1 {
		text-align: center;
		margin: 28px 0;
	}
	
	h3 {
		margin: 24px 0 -12px;
	}
	
	p {
		line-height: 1.4;
		
		&.secondary {
			background-color: rgba(0,0,0,0.05);
			padding: 14px 22px;
			border-radius: 14px;
			color: rgb(17, 17, 17, 0.6);
			margin: 26px 0;
			text-align: center;
			
			@media (prefers-color-scheme: dark) {
				background-color: rgba(255, 255, 255, 0.07);
				color: rgb(255, 255, 255, 0.8);
			}
		}
		
		&.lead {
			font-size: 20px;
		}
		
		&.caption {
			text-align: center;
			max-width: 400px;
			margin-left: auto;
			margin-right: auto;
			font-size: 14px;
			font-style: italic;
			color: rgba(0, 0, 0, 0.5);
			
			@media (prefers-color-scheme: dark) {
				color: rgba(255, 255, 255, 0.3);
			}
		}
	}
	
	a {
		color: var(--wf-yellow);
		
		&.button {
			background-color: var(--wf-yellow);
			color: #FFF;
			padding: 10px 18px;
			text-decoration: none;
			font-weight: 600;
			border-radius: 12px;
			font-size: 20px;
			display: block;
			margin: 44px auto 88px;
			text-align: center;
			width: 130px;

			&.inline {
				margin-bottom: 22px;
			}
		}
	}
	
	.question {
		padding: 36px 0;
		border-top: 1px solid var(--base-border);
		
		h2 {
			margin: 0 auto;
			font-size: 22px;
		}
		
		p.answer {
			margin: 12px auto;
		}
		
		ul, ol {
			padding-left: 1.5em;
		}
		
		li {
			line-height: 1.4;
			margin: 18px 0;
			padding-left: 4px;
			
			em {
				opacity: 0.6;
			}
		}
		
		.navigation {
			display: flex;
			justify-content: center;
			margin: 32px 0 0;
			
			a.top {
				--color: rgb(17, 17, 17, 0.3);
				
				padding: 3px 8px;
				border: 1px solid var(--color);
				border-radius: 6px;
				text-align: right;
				color: var(--color);
				text-decoration: none;
				
				&:hover {
					background-color: var(--color);
					color: var(--default-background);
				}
				
				@media (prefers-color-scheme: dark) {
					--color: rgb(255, 255, 255, 0.3);
					
					&:hover {
						--color: rgb(255, 255, 255, 0.5);
					}
				}
				
				transition: all 0.1s ease-out;
			}
		}
	}
	
	.index {
		margin: 44px 0;
		
		ul {
			padding: 0 0 0 20px;
			line-height: normal;
			
			li {
				margin: 6px 0;
				padding-left: 2px;
				
				a {
					text-decoration: none;
					
					&:hover {
						text-decoration: underline;
					}
				}
			}
		}
	}
	
	ul, ol {
		line-height: 1.8;
		padding-left: 1.5em;
		
		img.screenshot, picture.screenshot img {
			max-width: 240px;
			border-radius: 10px;
			display: inline-block;
			margin: 2px 0 6px;
			box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
		}
	}

	.infobox {
		max-width: 400px;
		background-color: rgba(0,0,0,0.05);
		padding: 24px 22px;
		border-radius: 14px;
		color: rgb(17, 17, 17, 0.6);
		margin: 54px auto 26px;
		text-align: center;
		
		@media (prefers-color-scheme: dark) {
			background-color: rgba(255, 255, 255, 0.07);
			color: rgb(255, 255, 255, 0.8);
		}

		.title {
			display: flex;
			gap: 10px;
			justify-content: center;
			align-items: center;

			svg {
				width: 40px;
				height: 40px;
				opacity: 0.7;
				
				@media (prefers-color-scheme: dark) {
					filter: invert(100%) hue-rotate(180deg);
					opacity: 0.6;
				}
			}

			h3 {
				margin-top: 0;
				margin-bottom: -4px;
			}
		}
		
		a {
			text-decoration: none;
			
			img {
				height: 52px;
			}
		}
	}
}
