/* About Page Custom Styles */
.about__container--custom {
	display: flex;
	gap: 3rem;
	align-items: flex-start;
	flex-wrap: wrap;
}
.about__img--large img {
	width: 220px;
	height: 220px;
	object-fit: cover;
	border-radius: 50%;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
	border: 4px solid #fff;
	background: #f5f5f5;
}
.about__info {
	flex: 1 1 320px;
	max-width: 600px;
}
.about__subtitle {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.about__subtitle--alt {
	font-size: 1.2rem;
	font-weight: 400;
	color: #888;
}
.about__text {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	line-height: 1.7;
}
.about__section {
	margin-bottom: 2rem;
}
.about__section-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.7rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #3a6cf6;
}
.about__list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.about__list li {
	margin-bottom: 1.2rem;
	background: #f9f9f9;
	padding: 1rem 1.2rem;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.about__date {
	display: block;
	font-size: 0.95rem;
	color: #666;
	margin-top: 0.2rem;
}
.about__location {
	display: inline-block;
	font-size: 0.95rem;
	color: #888;
	margin-left: 0.5rem;
}
.about__desc {
	margin: 0.5rem 0 0 0;
	font-size: 1rem;
	color: #444;
}
.about__img-icon {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	padding: 8px;
	font-size: 2rem;
	color: #3a6cf6;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: background 0.2s, color 0.2s;
}
.about__img-icon:hover {
	background: #3a6cf6;
	color: #fff;
}
.about__img--large {
	position: relative;
}
@media (max-width: 900px) {
	.about__container--custom {
		flex-direction: column;
		align-items: center;
	}
	.about__img--large {
		display: inline-block;
		margin-bottom: 1.5rem;
	}
	.about__img--large img {
		display: block;
	}
	.about__info {
		max-width: 100%;
	}
	.about__img-icon {
		bottom: 10px;
		right: 10px;
		/* font-size and padding removed to match desktop */
		/* Removed margin for proper alignment */
	}
}
/* Dark mode styles */
.dark-mode .about__img--large img {
	border: 4px solid #222;
	background: #222;
}
.dark-mode .about__list li {
	background: #23272f;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.dark-mode .about__section-title {
	color: #7faaff;
}
.dark-mode .about__subtitle--alt {
	color: #bbb;
}
.dark-mode .about__date,
.dark-mode .about__location {
	color: #aaa;
}
.dark-mode .about__desc {
	color: #ddd;
}
.dark-mode .about__img-icon {
	background: #23272f;
	color: #7faaff;
}
.dark-mode .about__img-icon:hover {
	background: #7faaff;
	color: #23272f;
}
