:root {
	--blue: #001c47;
	--blue2: #00132f;
	--red: #d92127;
	--gold: #cca32d;
	--background: #e9e7e7;
	--background2: #ececed;
	--gray: #bbbbbb;
	--gray2: #dddddd;
	--grayDark: #636363;
	/* Removed extra # */
}

.historic-tabs {
	margin-bottom: 2%;
}

.historic-tabs .nav-link {
	padding: 8px 25px;
	color: var(--blue);
	border-radius: 40px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	background-color: var(--blue);
	color: white;
}

.nav-tabs .nav-link.active:hover {
	background-color: var(--blue2) !important;
}

.nav-tabs {
	border: none !important;
}

.historic-cups-title-masc {
	color: var(--blue);
	font-size: 24px !important;
	font-weight: bold;
	margin-bottom: 10px;
}

.historic-cups-title-fem {
	color: var(--red);
	font-size: 24px !important;
	font-weight: bold;
	margin-bottom: 10px;
}

.season-reviews {
	background-color: var(--background2);
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
	border-bottom: 5px var(--gold) solid;
}

.season-reviews__header {
	text-align: left;
	margin-bottom: 10px;
}

.season-reviews__heading {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--grayDark);
}


.reviews__wrap .fem {
	justify-content: end !important;
}

.reviews__image {
	width: 100%;
	max-width: 300px;
	height: 200px;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}

.reviews__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.reviews__details {
	display: flex;
	gap: 20px;
}

.champions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}


.female .champions__label {
	text-align: end;
}

.champions__label {
	margin: 0;
	font-size: 0.8rem;
	color: var(--grayDark);
}

.champions__name {
	margin: 0;
	font-weight: bold;
	font-size: 1.25rem;
}

.femenino {
	color: var(--red);
	text-align: end;
}

.masculino {
	color: var(--blue);
}

.historic-teams {
	margin-bottom: 10px;
	display: flex;
	gap: 10px;
	align-items: center;
	border-bottom: 5px var(--gold) solid;
}

.logo-team-wrapper {
	width: 6cap;
	/* Set the width for the image container */
	height: 60px;
	/* Set the height for the image container */
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	/* Ensure the image fits within the container */
}

.logo-team {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	/* Ensure the image maintains its aspect ratio */
}

.historic-teams h5 {

	font-size: 24px;
	font-weight: bold;
	margin-bottom: 0;
}

.masculino-cups .historic-teams h5 {
	color: var(--blue2);
}

.femenino-cups .historic-teams h5 {
	color: var(--red);
}

.teams-cups {
	font-size: 32px;
}

/* Responsive Styles only for screens between 768px and 1024px */
@media (max-width: 804px) {
	.reviews__details {
		flex-direction: row;
	}

	.female {
		justify-content: flex-start;
	}



	.season-reviews {

		padding: 10px;

	}

	.row {
		gap: 20px;
	}

	.reviews__image {
		max-width: 150px !important;
		max-height: 120px;
	}

	.reviews__details h4 {
		font-size: 12px;
	}

	.reviews__details h3 {
		font-size: 16px;
	}

	.season-reviews__heading {
		font-size: 1.25rem;
	}

	.historic-teams h5 {
		font-size: 28px;
	}

	.teams-cups {
		font-size: 36px;
	}
}