/*** styling of ic groups for index and side table ***/

.IC-group-box {
    background: url(../../../url);
    background-size: cover;
    background-position: center; /* or whatever else works for the image */
	border: 1px solid #363636;
	margin: 2em;
}

.IC-group-overlay {
	background: rgba(109, 109, 109, 0.8);
}

.IC-group-name {
	margin: 5px;
	padding: 10px;
	text-align: center;
	font-family: var(--sc-font);
	text-transform: lowercase;
    font-style: bold;
    font-size: 13px;
    letter-spacing: 1px;
}

.IC-group-rows {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    align-items: stretch;
}