.crs-head.expand--3 .expand--3-title {
	padding: 1rem 1rem;
	font-size: var(--font-size-L);
	font-weight: 600;
	color: var(--color-font--dark);
	opacity: 90%;
	text-align: center;
}

.crs-head.expand--3 .block--container {
	padding: 1rem 1rem;
	font-size: var(--font-size-M);
	font-weight: 300;
	text-align: right;
	color: var(--color-font--dark);

	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 2rem;
	row-gap: 2rem;
}

.crs-head.expand--3 .block {
	padding: 1rem 0;
	display: grid;
	grid-template-columns: 3fr 2fr;
	column-gap: 1rem;

	box-shadow: 0px 0px 6px 5px #88888810;
	border-radius: 5px;
}

.crs-head.expand--3 .block.hidden {
	display: none;
}

/* this is the css for score */
.crs-head.expand--3 .block p:nth-child(3) {
	font-weight: 700;
	font-size: var(--font-size-XL);
	color: green;
	opacity: 80%;

	/* .item {
  grid-area: <name> | <row-start> / <column-start> / <row-end> / <column-end>;
} */

	grid-area: 1 / 2 / 3 / 3;

	justify-self: start;
	align-self: start;
}

/* this is css for category names */
.crs-head.expand--3 .block p:nth-child(1) {
	justify-self: end;
	padding: 0rem 1rem;
	background-color: rgba(0, 0, 0, 0.1);
	color: rgb(0, 0, 0);
	font-weight: 400;
	border-radius: 1rem;
}
