/* BASICS */

:root {
	--neutral-lowest: #FFFFFF;  /* white */
	--neutral-lower: #F3F4F6;   /* 100 */
	--neutral-low: #D1D5DB;     /* 300 */
	--neutral-medium: #9CA3AF;  /* 400 */
	--neutral-high: #4B5563;    /* 600 */
	--neutral-higher: #374151;  /* 700 */
	--neutral-highest: #000000; /* black */

	--primary-50: #FFF1F2;
	--primary-300: #FDA4AF;
	--primary-400: #F43F5E;

	--secondary-50: #EFF6FF;
	--secondary-low: #93C5FD;
	--secondary-medium: #3B82F6;
	--secondary-high: #1D4ED8;
	--secondary-higher: #1E3A8A;

	--transparent-dark: rgba(9, 9, 11, 0.1);
	--transparent-light: rgba(255, 255, 255, 0.1);
}

@font-face {
    font-family: Funtonalie;
    src:
    	local("Funtonalie"),
    	url("fonts/Funtonalie.otf") format("opentype"),
    	url("fonts/Funtonalie.ttf") format("truetype");
}
/* Satoshi */
@font-face {
    font-family: Satoshi;
    src:
    	local("Satoshi"),
    	url("fonts/Satoshi-Regular.otf") format("opentype");
    font-style: normal;
    font-weight: 200;
}
@font-face {
    font-family: Satoshi;
    src:
    	local("Satoshi"),
    	url("fonts/Satoshi-Light.otf") format("opentype");
    font-style: normal;
    font-weight: 100;
}
@font-face {
    font-family: Satoshi;
    src:
    	local("Satoshi"),
    	url("fonts/Satoshi-Medium.otf") format("opentype");
    font-style: normal;
    font-weight: 300;
}
@font-face {
    font-family: Satoshi;
    src:
    	local("Satoshi"),
    	url("fonts/Satoshi-Bold.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
}
@font-face {
    font-family: Satoshi;
    src:
    	local("Satoshi"),
    	url("fonts/Satoshi-Black.otf") format("opentype");
    font-style: normal;
    font-weight: 500;
}
@font-face {
    font-family: Satoshi;
    src:
    	local("Satoshi"),
    	url("fonts/Satoshi-Italic.otf") format("opentype");
    font-style: italic;
    font-weight: 200;
}
@font-face {
    font-family: Satoshi;
    src:
    	local("Satoshi"),
    	url("fonts/Satoshi-LightItalic.otf") format("opentype");
    font-style: italic;
    font-weight: 100;
}
@font-face {
    font-family: Satoshi;
    src:
    	local("Satoshi"),
    	url("fonts/Satoshi-MediumItalic.otf") format("opentype");
    font-style: italic;
    font-weight: 300;
}
@font-face {
    font-family: Satoshi;
    src:
    	local("Satoshi"),
    	url("fonts/Satoshi-BoldItalic.otf") format("opentype");
    font-style: italic;
    font-weight: 400;
}
@font-face {
    font-family: Satoshi;
    src:
    	local("Satoshi"),
    	url("fonts/Satoshi-BlackItalic.otf") format("opentype");
    font-style: italic;
    font-weight: 500;
}


body {
    color: var(--neutral-highest);
    padding: 10px 45px 0 45px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 200;
    font-size: 16px;
    line-height: 24px;
    margin: auto;
}

@media (max-width: 609px) {
	body {
		padding: 10px 10px;
	}
}


/* GENERAL & UTILITIES */

b {
	font-weight: 400;
}

p {
	margin: 0;
}
p + p {
	margin-top: 16px;
}

h1 {
	font-family: 'Funtonalie', serif;
	font-size: 80px;
	line-height: 80px;
	color: var(--neutral-highest);
	margin: 0;
}
@media (max-width: 539px) {
	h1 {
		font-size: 40px;
		line-height: 40px;
	}
}

.hidden {
	display: none !important;
}

a {
    text-decoration: none;
    color: inherit;
}
p a.btn-link {
	color: var(--primary-400);
	text-decoration: underline;
}

#site-header nav a.btn,
a.btn {
	font-family: "Satoshi", sans-serif;
	padding: 8px 16px;
	border-radius: 8px;
	background: var(--neutral-lowest);
	color: var(--neutral-highest);
	display: flex;
	align-items: center;
	justify-content: center;
	height: fit-content;
	white-space: nowrap;
	font-size: 16px;
}
#site-header nav a.btn.btn-primary,
.btn.btn-primary {
	background-color: var(--primary-400);
	color: var(--neutral-lowest);
}
#site-header nav a.btn.btn-secondary,
.btn.btn-secondary {
	background-color: var(--primary-50);
	color: var(--primary-400);
}
.btn.btn-tertiary {
	background: var(--neutral-lowest);
	border: 1px solid var(--neutral-medium);
}
#site-header nav a.btn.btn-icon,
a.btn.btn-icon,
.btn.btn-icon {
	padding: 8px 8px 8px 8px;
}
.btn.btn-icon .icon {
	padding-right: 0;
}
.btn .icon {
	height: 20px;
	width: 20px;
	padding-right: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn.btn-light {
	background: var(--transparent-light);
	color: var(--neutral-lowest);
}

.btn-row {
	display: flex;
	align-items: center;
	gap: 12px;
}
.btn-row.fill .btn {
	width: 100%;
	box-sizing: border-box;
}

ul {
	margin: 0;
}

.color-secondary {
	color: var(--secondary-medium);
}

.glassy-tag {
	padding: 8px 12px;
	border-radius: 8px;
	background-color: var(--transparent-dark);
	color: var(--neutral-lowest);
	width: fit-content;
}
.glassy-tag h1,
.glassy-tag h2,
.glassy-tag h3,
.glassy-tag h4,
.glassy-tag h5 {
	margin: 0;
}

@keyframes infiniteScroll {
  from {transform: translateX(0) }
  to {transform: translateX(calc(0px - 50%));}
}

.scrolling-text-banner {
	text-transform: uppercase;
	font-family: "Satoshi", sans-serif;
	font-size: 14px;
	font-weight: 24px;
	font-weight: 500;
	letter-spacing: 0.1em;
	display: flex;
	/*animation-name: infiniteScroll;*/
  	animation-duration: 20s;
  	animation-iteration-count: infinite;
  	animation-timing-function: linear;
}
.scrolling-text-banner .scrolling-text {
	white-space: nowrap;
	display: flex;
}


.row {
	display: flex;
	align-items: center;
	gap: 20px;
}
.row + .row {
	margin-top: 20px;
}
.spaced-row {
	justify-content: space-between;
}
.column {
	gap: 20px;
	display: flex;
	flex-direction: column;
}
.row > .column {
	align-self: stretch;
}

.bento-grid {
	align-items: flex-start;
	gap: 40px;
}
.bento-grid .column {
	width: 100%;
	gap: 40px;
}
.bento-grid section {
	width: 100%;
	margin-top: 0;
}

@media (max-width: 869px) {
	.bento-grid {
		flex-direction: column;
	}
}

.row .bento {
	align-self: stretch;
}
.column > .bento {
	height: 100%;
}
.bento {
	border-radius: 12px;
	background: var(--neutral-lower);
	padding: 20px;
	color: var(--neutral-highest);
	width: 100%;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 20px;
	box-sizing: border-box;
}
.bento + .bento {
	margin-top: 12px;
}
.row > .bento + .bento,
.column > .bento + .bento {
	margin-top: 0;
}
.icon-bento {
	flex-direction: row;
}
.icon-bento .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: -40px;
}
.bento h4 {
	font-weight: 500;
	font-size: 20px;
	line-height: inherit;
	color: inherit;
	margin: 0 0 16px 0;
	display: flex;
	align-items: center;
	color: var(--primary-400);
}
.bento h4 img {
	height: 24px;
	margin-right: 8px;
}
.bento hgroup .spaced-row h4 {
	margin-bottom: 0;
}
.bento hgroup .spaced-row {
	margin-bottom: 16px;
}
.bento p + p {
	margin-top: 0;
}
.bento.bento-colored {
	font-weight: 300;
}
.bento.bento-colored b {
	font-weight: 500;
}

.bento-title {
	display: flex;
	align-items: flex-end;
	width: 100%;
	color: var(--neutral-highest);
	gap: 20px;
	margin-bottom: 8px;
}
.bento-title h2 {
	display: flex;
	align-items: flex-end;
	width: fit-content;
	margin: 0;
	font-family: "Funtonalie", serif;
	font-size: 48px;
	line-height: 48px;
}

#main-wrapper {
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}

section {
	margin-top: 40px;
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}
section.alt {
	background: var(--neutral-lower);
	margin-left: -45px;
	margin-right: -45px;
	padding: 40px 45px;
	box-sizing: border-box;
	max-width: 100vw;
}

@media (max-width: 609px) {
	section.alt {
		margin-left: -10px;
		margin-right: -10px;
		padding: 40px 10px;
	}
}

.section-header {
	border-bottom: 1px solid var(--neutral-lower);
	margin-bottom: 40px;
}
.section-header > div {
	background: var(--neutral-lower);
	padding: 4px 16px;
	text-transform: uppercase;
	color: var(--neutral-medium);
	width: fit-content;
	border-radius: 20px;
	font-size: 11px;
	font-weight: bold;
	margin: 0 0 -16px 60px;
	letter-spacing: 0.5px;
}

.section-title {
	display: flex;
	align-items: flex-end;
	width: 100%;
	color: var(--neutral-highest);
	gap: 20px;
	margin-bottom: 40px;
}
.section-title h2 {
	display: flex;
	align-items: flex-end;
	width: fit-content;
	margin: 0;
}
.section-title h2 .serif {
	font-family: "Funtonalie", serif;
	font-size: 48px;
	line-height: 48px;
}
.section-title h2 .sans-serif {
	font-size: 30px;
	line-height: 36px;
	white-space: nowrap;
}
.section-title:after {
	content: '';
	width: 100%;
	height: 4px;
	background: var(--secondary-high);
	border-radius: 100px;
	margin-bottom: 16px;
}

section.alt .section-title {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}
section.alt .section-title:after {
	display: none;
}
section.alt .section-title h2 {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: "Funtonalie", serif;
	font-size: 48px;
	line-height: 48px;
	color: var(--secondary-high);
}
section.alt .section-title .subtitle {
	font-size: 20px;
	line-height: 28px;
	color: var(--neutral-highest);
	font-weight: 300;
}

@media (max-width: 539px) {
	.section-title {
		flex-wrap: wrap;
	}
	.section-title h2 {
		flex-direction: column;
		align-items: flex-start;
	}
	.section-title h2 .serif,
	section.alt .section-title h2,
	.bento-title h2 {
		font-size: 28px;
		line-height: 28px;
	}
	.section-title h2 .sans-serif {
		font-size: 20px;
		line-height: 20px;
	}
	.section-title:after {
		width: 100%;
	}
	.bento-title {
		gap: 8px;
	}
	.bento-title .icon {
		max-width: 25px;
		max-height: 25px;
	}
}

.page-header {
	margin-top: 40px;
	display: flex;
	align-items: center;
	gap: 40px;
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}
.page-header .subtitle {
	font-size: 30px;
	line-height: 36px;
	text-transform: uppercase;
	font-weight: 500;
	display: flex;
	white-space: nowrap;
	align-items: center;
	color: var(--secondary-high);
	gap: 12px;
}
.page-header .subtitle:after {
	content: '';
	width: 100%;
	height: 16px;
	background: var(--secondary-high);
	border-radius: 100px;
}
.page-header .cover {
	align-self: stretch;
	width: 100%;
	background-image: url('images/gradients/secondary-gradient-2.png');
	border-radius: 12px;
	background-size: cover;
	background-position: center right;
}
@media (max-width: 539px) {
	.page-header .cover {
		display: none;
	}
	.page-header > .column {
		width: 100%;
	}
}


/* HEADER */

#site-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 40px;
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}
#site-header #logo {
	width: 150px;
}
#site-header nav,
#site-header nav #nav-links,
#site-header nav #nav-buttons {
	display: flex;
	gap: 32px;
	align-items: center;
}
#site-header nav a {
	color: var(--neutral-highest);
	font-size: 24px;
	line-height: 32px;
	font-family: 'Funtonalie', serif;
	height: fit-content;
}

#site-header nav a#language-flag .icon {
	width: auto;
	height: auto;
}

#site-header nav #portfolio {
	color: var(--primary-300);
}

#menu-button-open {
	display: none;
}

@media (max-width: 1129px) {
	#site-header .mobile-hide {
		display: none;
	}
}
@media (max-width: 539px) {
	#site-header {
		flex-direction: column;
		gap: 0px;
		padding-bottom: 20px;
	}
	#design-portfolio #site-header nav {
		width: 100%;
	}
	#site-header nav #nav-links,
	#site-header nav #nav-buttons {
		gap: 12px;
		width: 100%;
	}
	#site-header nav #nav-buttons a.btn {
		width: 100%;
	}
	.mobile-burger-button {
		position: fixed;
		top: 16px;
		right: 16px;
	}
	.mobile-burger-button	a.btn {
		border-radius: 100%;
		width: fit-content;
		height: fit-content;
		box-shadow: 0px 0px 4px var(--neutral-low);
	}
	#mobile-burger-menu {
		background-color: var(--neutral-lowest);
		width: 100vw;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		display: flex ;
		flex-direction: column;
		font-size: 24px;
		line-height: 32px;
		font-family: 'Funtonalie', serif;
		padding: 20px 20px 20px;
		box-sizing: border-box;
		gap: 16px;
	}
	#mobile-burger-menu a.btn-link {
		width: 100%;
		box-sizing: border-box;
		text-align: center;
		padding: 4px 0;
		color: inherit;
	}
	#mobile-burger-menu a.btn-link + a.btn-secondary {
		margin-top: 16px;
	}
	#mobile-burger-menu a.btn-secondary + a.btn-primary {
		margin-top: 12px;
	}
	#main-disciplines .bento h4 {
		font-size: 16px;
	}
	#menu-button-open {
		display: block;
	}
}


/* LANDING PAGE */

#hero {
	background-image: url('images/gradients/mesh-gradient-1.png');
	background-position: center left;
	background-size: cover;
	border-radius: 20px;
	height: 584px;
	position: relative;
	overflow: hidden;
	max-width: 1440px;
	margin: auto;
}
#hero hgroup {
	padding: 60px 0 0 80px;
}
#hero h1 {
	color: var(--neutral-lowest);
	font-family: 'Funtonalie', serif;
	font-size: 80px;
	line-height: 80px;
	font-style: regular;
	margin: 0 0 12px 0;
}
#hero h2 {
	font-family: "Satoshi", sans-serif;
	font-weight: 500;
	font-size: 24px;
	line-height: 28px;
	text-transform: uppercase;
}
#hero h2 span {
	color: var(--primary-300);
	font-family: "Funtonalie", serif;
	text-transform: uppercase;
	font-size: 28px;
	letter-spacing: 1px;
}
#hero .scrolling-text-banner {
	position: absolute;
	bottom: 20px;
	width: 100%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
#hero .scrolling-text-banner .scrolling-text {
	color: var(--neutral-lowest);
}
#hero .scrolling-text-banner span {
	color: var(--secondary-low);
}
#hero img {
	position: absolute;
	right: -40px;
	top: -40px;
}

#main-disciplines .bento.ui-design {
	background-image: url('images/gradients/primary-gradient-1.png');
	color: var(--neutral-lowest);
	font-weight: 300;
}
#main-disciplines .bento.ux-design {
	background-image: url('images/gradients/primary-gradient-2.png');
	color: var(--neutral-lowest);
	font-weight: 300;
}
#main-disciplines .bento.illustration {
	color: var(--neutral-lowest);
	font-weight: 300;
	background-image: url('images/gradients/secondary-gradient-1.png');
	box-sizing: border-box;
	justify-content: space-between;
	max-width: 45%;
}
#main-disciplines .bento.ui-design h4,
#main-disciplines .bento.ux-design h4,
#main-disciplines .bento.illustration h4 {
	color: var(--neutral-lowest);
}
@media (max-width: 999px) {
	#design-portfolio #site-header {
		flex-direction: column;
	}
	#site-header nav {
		margin-top: 30px;
	}
	#hero {
		height: auto;
	}
	#hero > img {
		display: none;
	}
	#hero .scrolling-text-banner {
		position: relative;
		margin-top: 80px;
		margin-bottom: 20px;
	}
	#hero .scrolling-text-banner .scrolling-text div {
		white-space: wrap;
		max-width: 400px;
		text-align: center;
	}
	#hero .scrolling-text-banner .scrolling-text div span:last-child {
		display: none;
	}
	#hero .scrolling-text-banner .scrolling-text div + div {
		display: none;
	}
	#main-disciplines > .row {
		flex-direction: column;
	}
	#main-disciplines .bento.illustration {
		max-width: 100%;
	}
	#main-disciplines > .row + .row {
		flex-direction: column-reverse;
	}
}
@media (max-width: 779px) {
	#design-portfolio #site-header nav {
		flex-direction: column-reverse;
	}
	#hero hgroup {
		padding: 68px 0 0 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	#hero h1 {
		font-size: 50px;
		text-align: center;
	}
	#hero h2 {
		font-size: 18px;
	}
	#hero h2 span {
		font-size: 22px;
	}
}
@media (max-width: 539px) {
	#site-header nav #nav-links {
		display: none;
	}
	#hero h1 {
		font-size: 40px;
		margin-bottom: 0;
	}
	#hero h2 {
		font-size: 14px;
	}
	#hero h2 span {
		font-size: 16px;
	}
	#hero hgroup {
		padding: 20px 0 0 0;
	}
	#hero .scrolling-text-banner .scrolling-text {
		font-size: 12px;
		max-width: 220px;
	}
	#main-disciplines {
		margin-top: 20px;
	}
	#main-disciplines .bento > .icon {
		display: none;
	}
}


/* PORTFOLIO */

.project-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	column-gap: 20px;
	row-gap: 20px;
}
.project-thumb {
	background: var(--neutral-lower);
	border-radius: 20px;
	padding: 20px;
	box-sizing: border-box;
	width: 100%;
	align-self: stretch;
}
.project-thumb .thumbnail {
	border-radius: 16px;
	background-position: center center;
	background-size: cover;
	width: 100%;
	aspect-ratio: 1.8;
}
.project-thumb h3 {
	margin-bottom: 8px;
}
.project-thumb p {
	font-size: 14px;
	margin-bottom: 14px;
}
.project-thumb .row {
	gap: 8px;
	flex-wrap: wrap;
}
.project-thumb .tag,
.tag {
	padding: 0px 10px;
	border-radius: 100px;
	background: var(--neutral-lowest);
	font-size: 10px;
	letter-spacing: 1px;
	color: var(--neutral-medium);
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	white-space: nowrap;
}
.project-thumb .tag.design,
.tag.design {
	color: var(--primary-400);
}
.project-thumb .tag.illustration,
.tag.illustration {
	color: var(--secondary-medium);
}

@media (max-width: 999px) {
	.project-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr 1fr;
	}
}
@media (max-width: 779px) {
	.project-grid {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
}
@media (max-width: 449px) {
	.project-thumb {
		padding:12px;
	}
}


/* PROJECT PAGE */

.project-banner {
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	height: 40vw;
	position: relative;
	overflow: hidden;
	max-width: 1440px;
	margin: auto;
}
.project-banner hgroup {
	position: absolute;
	bottom: 30px;
	left: 30px;
}
.project-banner h2 {
	font-family: "Satoshi", sans-serif;
	font-weight: 500;
	font-size: 24px;
	line-height: 28px;
	text-transform: uppercase;
}
.project-banner h2 span {
	color: var(--primary-50);
	font-family: "Funtonalie", serif;
	text-transform: uppercase;
	font-size: 28px;
	letter-spacing: 1px;
}

#project-contents {
	margin-bottom: 40px;
}
#project-contents .bento#project-date {
	background-image: url('images/gradients/primary-gradient-1.png');
	color: var(--neutral-lowest);
	font-weight: 300;
}
#project-contents .bento#project-role {
	background-image: url('images/gradients/primary-gradient-1.png');
	color: var(--neutral-lowest);
	font-weight: 300;
}
#project-contents .bento#project-tools > .row {
	justify-content: center;
}
#project-contents #project-date > .row,
#project-contents #project-role > .row,
#project-contents #project-tools > .row {
	gap: 8px;
}

#project-description > div:first-child {
	gap: 8px;
	border-bottom: 1px solid var(--neutral-lowest);
	padding-bottom: 12px;
	margin-bottom: 8px;
	flex-wrap: wrap;
}

#project-contents .row .column:first-child .bento {
	gap: 8px;
	padding: 16px;
	height: fit-content;
	width: 100%;
	white-space: nowrap;
}
#project-contents .bento h3 {
	margin: 0 0 0 0;
}

#project-contents p span,
#project-contents ul span {
	color: var(--primary-400);
}

#project-section {
	max-width: 800px;
}

#project-contents .row.img-row {
	justify-content: center;
	width: 100%;
	flex-wrap: wrap;
}
#project-contents .row.img-row img {
	border-radius: 16px;
	max-height: 250px
}
#project-contents section {
	width: 100%;
}

@media (max-width: 999px) {
	#project-contents > .row:first-child {
		flex-direction: column;
	}
	#project-contents > .row:first-child > .column:first-child {
		flex-direction: row;
		flex-wrap: wrap;
	}
	#project-contents > .row:first-child > .column:first-child > .bento {
	}
	#project-contents #project-date,
	#project-contents #project-role {
		flex-direction: row-reverse;
		justify-content: flex-end;
		gap: 20px;
		width: fit-content;
	}
	#project-contents #project-tools {
		align-self: stretch;
	}
}
@media (max-width: 609px) {
	#project-contents .row.img-row img {
		max-height: auto;
		max-width: 300px;
	}
	.project-banner {
		height: 50vw;
	}
}


/* COMMISSIONS */

section#commissions-intro {
	display: flex;
	align-items: center;
}
section#commissions-intro .bento-colored {
	background-image: url('images/gradients/secondary-gradient-1.png');
	color: var(--neutral-lowest);
	padding-right: 200px;
	box-sizing: content-box;
}
section#commissions-intro .bento-colored p + p {
	margin-top: 8px;
}
section#commissions-intro .bento h4 {
	color: var(--neutral-lowest);
}
section#commissions-intro > img {
	width: 400px;
	margin-left: -200px;
}
section#commissions-intro a.underlined {
	border-bottom: 1px solid var(--neutral-lowest);
}
section#commissions-intro > .column {
	margin-left: -40px;
	width: min-content;
}
section#commissions-intro > .column .bento {
}

@media (max-width: 1399px) {
	section#commissions-intro {
		flex-wrap: wrap;
	}
	section#commissions-intro .bento-colored {
		padding-right: 20px;
		flex-direction: row;
		gap: 40px;
		justify-content: space-between;
		padding-bottom: 48px;
		margin-bottom: -16px;
	}
	section#commissions-intro .bento-colored hgroup {
		width: 100%;
		max-width: 600px;
	}
	section#commissions-intro .bento-colored .btn-row.fill {
		flex-direction: column;
		align-items: flex-end;
	}
	section#commissions-intro > img {
		margin-left: 4%;
	}
}
@media (max-width: 869px) {
	section#commissions-intro .bento-colored {
		flex-direction: column;
	}
	section#commissions-intro .bento-colored .btn-row.fill {
		flex-direction: row;
	}
	section#commissions-intro > img {
		display: none;
	}
	section#commissions-intro .column {
		margin: auto;
		width: 100%;
		align-items: center;
	}
}
@media (max-width: 539px) {
	section#commissions-intro .bento-colored .btn-row.fill {
		flex-direction: column;
	}	
}

.btn.p3-btn {
	background: var(--secondary-50);
	padding: 0 0 0 0;
	width: fit-content;
	height: fit-content;
	border-radius: 0;
	gap: 4px;
	white-space: nowrap;
	color: var(--secondary-higher);
}
.btn.p3-btn.active {
	background: var(--neutral-lower);
	cursor: default;
}
.btn.p3-btn::before {
	content: '✦';
	margin-left: -28px;
	font-size: 24px;
	color: var(--secondary-low);
}
.btn.p3-btn .sans-serif {
	font-size: 32px;
	line-height: 48px;
	font-weight: 500;
	font-style: italic;
	text-transform: uppercase;
	letter-spacing: -2px;
	color: var(--secondary-low);
}
.btn.p3-btn.active .sans-serif {
	font-size: 40px;
	line-height: 60px;
	color: var(--neutral-medium);
}
.btn.p3-btn .serif {
	font-family: 'Funtonalie', serif;
	font-size: 48px;
	line-height: 48px;
	padding-bottom: 8px;
}
.btn.p3-btn.active .serif {
	font-size: 60px;
	line-height: 60px;
}

@media (max-width: 539px) {
	.btn.p3-btn .serif {
		font-size: 38px;
		line-height: 28px;
	}
	.btn.p3-btn .sans-serif {
		font-size: 30px;
		line-height: 30px;
	}
	.btn.p3-btn::before {
		content: '';
		margin-left: -4px;
	}
}

section#sketch .row,
section#lineart .row,
section#rendered .row,
section#other-styles .row {
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}
section#other-styles .row {
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}
section#sketch .row img,
section#lineart .row img,
section#rendered .row img,
section#other-styles .row img {
	max-height: 350px;
	max-width: 400px;
}
@media (max-width: 1399px) and (min-width: 870px) {
	section#sketch .row img,
	section#lineart .row img,
	section#rendered .row img,
	section#other-styles .row img {
		max-height: 250px;
		max-width: 300px;
	}
}
@media (max-width: 869px) {
	section#sketch .row img,
	section#lineart .row img,
	section#rendered .row img,
	section#other-styles .row img {
		max-height: 200px;
		max-width: 250px;
	}
	section#commissions-intro + #main-wrapper {
		margin-top: 40px;
	}
}

section#commissions-intro + * li::marker {
	color: var(--secondary-medium);
}
section#commissions-intro + * a {
	color: var(--secondary-high);
	border-bottom: 1px solid var(--secondary-high);
	font-weight: 400;
}
section#sketch .row a,
section#lineart .row a,
section#rendered .row a,
section#other-styles .row a {
	border-bottom: none;
}