body {
    /* bodge */
    width: 100%;
    position: relative;
    background-color: var(--color-bg-dark);
    color: var(--color-text)
}

.content-container {
    padding-right: 5rem;
    position: relative;
}


.list-content {
    position: fixed;
    bottom: 10rem;

	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 1rem;
	padding: 6rem 0;
    padding-right: 5rem;
	font-size: 2.4rem;
	background-size: cover;
	background-position: center;
}

.list-content h1 {
	font-size: 7.2rem;
}

/* ARTICLES LIST */
.list-containers {
	display: flex;
    flex-direction: row;
	justify-content: space-between;
    padding: 0 10rem;
    margin: 0 auto;
    gap: 2rem;
    height: 100%;
    max-height: fit-content;
    width: 100%;
    max-width: 200rem;
    margin: 0 auto;
    overflow-y: auto;
}

.article-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
    grid-auto-rows: max-content;
	gap: 4rem;
	max-width: 100rem;
    height: auto;
	padding: 10rem 3rem;
	justify-content: space-around;
    flex: 1;
    /* background-color: var(--color-bg-light); */
}

/* GALLERY LIST */
.gallery-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
    grid-auto-rows: max-content;
	gap: 0.5rem;
	max-width: 100rem;
    height: auto;
	padding: 10rem 3rem;
	justify-content: space-around;
    flex: 1;
    /* background-color: var(--color-bg-light); */
}