.medals-container {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 0 20px;
	width: 100%;
}

.medals-section {
	background: #2a2a2a;
	border-radius: 10px;
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	text-align: center;
}

.medals-section h2 {
	color: #cc5200;
	margin-bottom: 2rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid rgba(204, 82, 0, 0.3);
	font-size: 1.8rem;
	text-align: center;
}

.orden-images {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	margin-bottom: 3rem;
	padding: 2rem;
}

.orden-image {
	max-width: 866px;
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	background: rgba(255, 255, 255, 0.6);
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.member-name {
	font-weight: bold;
	color: #f0f0f0;
	font-size: 1rem;
}

.clickable-member {
	transition: all 0.3s ease;
	padding: 0.5rem;
	border-radius: 6px;
	text-align: center;
}

.clickable-member:hover {
	background: rgba(204, 82, 0, 0.1);
	box-shadow: 0 2px 8px rgba(204, 82, 0, 0.2);
}

.clickable-member:active {
	transform: scale(0.98);
}

.member-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 2rem;
	align-items: center;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
}

.modal-content {
	background: #2a2a2a;
	margin: 5% auto;
	padding: 2rem;
	border-radius: 15px;
	width: 90%;
	max-width: 600px;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	position: absolute;
	right: 1rem;
	top: 1rem;
	cursor: pointer;
}

.close:hover,
.close:focus {
	color: #cc5200;
	text-decoration: none;
}

.modal-member-name {
	color: #cc5200;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	text-align: center;
}

.modal-medal-image {
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: 10px;
	margin-bottom: 1rem;
}
