.cell {
    --h: auto;
    height: var(--h);
    width: calc(var(--h) * sqrt(3/4));

    display: grid;
    place-items: center;
    position: relative;
    font-size: var(--fs-xl);
    --worker-size: 1.4em;
}

.cell:hover {
    cursor: pointer;
}

.cell-img {
    max-width: 100%;
}

.cell .honey-container {
	position: absolute;
	top: 10%;
	padding: 5%;
	color: var(--beige);
	display: flex;
	place-items: center;
	height: 1vmin;
	text-align: center;
}

.cell .honey-container .honey {
    border-radius: 50%;
    padding: 0.1vmin;
    z-index: 1;
    box-shadow: var(--raised-shadow);
}

.cell .bonus {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: calc(var(--board-height) * 0.05);
    font-size: calc(var(--board-height) * 0.25);
    --icon-size: 1em;
}

.cell .infection-container {
  position: absolute;
  display: flex;
  gap: calc(var(--board-height) * 0.05);
  flex-wrap: wrap;
  max-width: calc(var(--board-height) * 1.2);
  justify-content: center;
  align-items: center;
}

.cell .infection-container .infection {
  border-radius: 50%;
  background-color: var(--green);
  height: calc(var(--board-height) * 0.2);
  aspect-ratio: 1;
  border: 1px solid var(--grey);
  box-shadow: var(--raised-shadow);
}
