.details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 45%, 600px), 1fr));
	gap: 1rem;
	padding: 2rem 5%;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
	align-items: start;
}

@media (aspect-ratio: 1/1),
(max-aspect-ratio: 1/1) {
	.details {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
	}
}

.guitar-image {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: white;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	padding: 3rem;
	width: 100%;
	height: max(60vw, 40vh);
	cursor: pointer;
}

.description {
	color: darkslategray;
	font-size: clamp(0.5rem, 3vw, 1.25rem);
}

img {
	height: 100%;
	width: auto;
	object-fit: cover;
}

.guitar-description {
	display: inline-block;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	height: auto;
	width: 100%;
	box-sizing: border-box;
}

.guitar-description h3 {
	text-align: left;
}

.genre-name {
	display: inline-block;
	margin-left: 0.75vw;
}

.guitar-genres {
	display: flex;
	margin: 0;
	height: inherit;
	width: 10%;
}

.guitar-genres h3 {
	margin: 0;
	display: inline;
	margin-bottom: 0.5rem;
}

.guitar-image.large {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1.01);
	z-index: 1000;
	width: 80%;
	height: 90%;
	background-color: white;
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

a {
	text-decoration: inherit;
}