/* Page-specific About styles go here */

body {
	margin: 0;
	background-color: #000;
}

.panel-content {
	width: min(1180px, 100%);
	margin: 0 auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	box-sizing: border-box;
}

.about-quote-section {
	min-height: 100vh;
	background-position: 30%;
}

.about-quote-overlay {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.45rem;
	max-width: min(90%, 1100px);
}

.about-quote-title {
	margin: 0;
	text-align: left;
	line-height: 1;
}

.about-quote-author {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1;
}

.about-dropdowns {
	background: #fff;
	padding: 4rem 1.5rem 5rem;
}

.about-dropdowns-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	gap: 1rem;
}

.about-item {
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	padding: 0.2rem 0;
}

.about-item-title {
	list-style: none;
	cursor: pointer;
	font-family: 'Anton', sans-serif;
	font-size: clamp(2rem, 5vw, 4rem);
	letter-spacing: 1px;
	line-height: 1;
	color: #000;
	padding: 1rem 0;
}

.about-item-title::-webkit-details-marker {
	display: none;
}

.about-item-title::after {
	content: '';
	float: right;
	width: clamp(1.2rem, 2vw, 1.6rem);
	height: clamp(1.2rem, 2vw, 1.6rem);
	margin-top: 0.45rem;
	background-image: url('../../Icons/caret-down-fill.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transition: transform 0.2s ease;
	opacity: 0.85;
}

.about-item[open] .about-item-title::after {
	transform: rotate(180deg);
}

.about-item-content {
	padding: 0 0 1.1rem;
	max-width: 900px;
}

.about-item-content p {
	margin: 0;
	color: rgba(0, 0, 0, 0.88);
	font-size: 1.05rem;
	line-height: 1.65;
}

@media (max-width: 768px) {
	.about-quote-overlay {
		max-width: 95%;
		gap: 0.5rem;
		flex-wrap: wrap;
	}

	.about-quote-author {
		font-size: 0.95rem;
	}

	.about-dropdowns {
		padding: 2.75rem 1rem 3.5rem;
	}

	.about-item-title {
		padding: 0.75rem 0;
	}

	.about-item-content p {
		font-size: 0.95rem;
		line-height: 1.55;
	}
}
