/* Rude Academy — About widget. Extracted verbatim from source index.html. */

.about__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.about__copy p {
	font-size: 17px;
	line-height: 1.65;
	color: #333;
	margin-bottom: 20px;
}
.about__copy p:last-child { margin-bottom: 0; }

.about__card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 36px;
}
.about__card-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line);
}
.about__card-name {
	font-family: "Archivo Black", sans-serif;
	font-size: 32px;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.about__card-role {
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 28px;
}

.credits {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.credit {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 16px;
	font-size: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line);
}
.credit:last-child { border-bottom: none; padding-bottom: 0; }
.credit__k { color: var(--muted); font-weight: 500; }
.credit__v { color: var(--ink); font-weight: 600; }

@media (max-width: 860px) {
	.about__grid { grid-template-columns: 1fr; gap: 48px; }
}
