.showView {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	grid-auto-rows: minmax(15px, auto);
	gap: 1em;
	overflow: hidden;

	/* > div {
        background-color: aqua;
    } */

	h1 {
		font-size: 3.5rem;

		/* padding: 0; */
		margin-bottom: 0;
	}

	h2 {
		padding: 0;
		margin: 0;
		font-size: 1.75rem;
	}
}

.titleBlock {
	grid-column: span 7;

}

.writers-Block {
	grid-column: span 3;
}

.photoTitle {
	grid-column: span 7;
}

/* #hyphen {
    display: none;
} */

/* Underlines any mention of Andrew Marcus in green */
.self {
	border-bottom: 2px solid var(--accent-green);
	border-radius: 3px;
}

.null {
	display: none;
}

.infoBlock {
	grid-column: span 3;
	/* line-height: 1.75rem * 2.5; */

}

.hero-image {
	grid-column: 4 / span 4;
	grid-row: 2/4;
	/* background: goldenrod; */
	text-align: right;
	margin-right: 2rem;

	img {
		/* width: 60vw; */
		border-radius: 25px;
	}
}

#photographer {
	font-size: 0.8rem;
	display: inline;
	padding-right: 15px;
}

.image-gallery {
	grid-column: span 7;
	display: inline;
}

.gridItem {
	/* margin-bottom: 0.3rem; */
}

.pagination {
	margin-top: 15px;
	display: flex;
	width: 100%;
	/* background: red; */
	justify-content: space-between;
}

.next,
.previous {
	display: flex;
	align-items: center;
	position: relative;
	padding: 8px;

	h2,
	h3,
	a {
		margin: inherit;
		display: inline;
		font-weight: 550;
		font-size: 1.2rem;
	}

	h2 {
		font-size: 2.5rem;
	}
}

.next:hover,
.previous:hover {
	cursor: pointer;
}

#next,
#previous {
	position: relative;
	width: fit-content;
}

#next::after,
#previous::after {
	content: '';
	background: var(--accent-green);
	border-top-right-radius: 100px;
	border-bottom-right-radius: 100px;
	position: absolute;
	height: 4px;
	width: 0%;
	transform: translateY(5px);
	bottom: 0;
	transition: width 200ms ease;
}

#next::after {
	left: 0;
}

#previous::after {
	right: 0;
}

.next:hover #next::after,
.previous:hover #previous::after {
	width: 100%;
}



@media screen and (max-width: 850px) {
	.hero-image {
		grid-row: 2/2;
	}

	.infoBlock {
		grid-column: span 7;
	}
}

@media screen and (max-width: 680px) {
	.titleBlock {
		grid-column: span 7;
		grid-row: 1;
		text-align: center;
	}

	.writers-Block {
		grid-column: span 7;
		grid-row: 2;
		justify-items: center;
		line-height: normal;
	}

	.companyBlock {
		display: inline-flex;

		#hyphen {
			display: inline;
		}
	}

	.hero-image {
		grid-column: span 7;
		grid-row: 3;
		margin-right: 0rem;
	}

	.infoBlock {
		grid-column: span 7;
		grid-row: 4;
	}

	.image-gallery {
		grid-column: span 7;
		grid-row: 6;
	}
}