:root {
  --gioco2-title-fontSize: 24px;
  --gioco2-title-fontWeight: 600;
  --gioco2-title-color: #fff;
  --gioco2-subtitle-fontSize: 16px;
  --gioco2-subtitle-color: #fff;
  --gioco2-controls-fontSize: 16px;
  --gioco2-link1-background: var(--color-real-button);
  --gioco2-link1-color: #000;
  --gioco2-link2-background: var(--color-fun-button);
  --gioco2-link2-color: #000;
  --gioco2-link1-color-hover: #fff;
  --gioco2-link2-color-hover: #fff;
}

.swiper{
	margin-bottom:12px;
}

.gioco2 {
  width: max-content;
  position: relative;
  width: 100%;
  height: 100%;
}
.gioco2__img {
  display: block;
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  max-height: 200px;
  width: 100%;
  border-radius:5px;
}
/* .gioco2__body {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 0;
  width: 54%;
  transform: translateY(-50%);
  padding: 0 0 0 30px;
}
 */
.gioco2__body {
  z-index: 2;
  position: absolute;
  left: 0;
  width: 54%;
  transform: translateY(-100%);
  padding: 0 0 0 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 12px;
}
.gioco2__body > *:not(:last-child) {
  margin-bottom: 8px;
}
.gioco2__title {
  font-size: var(--gioco2-title-fontSize);
  color: var(--gioco2-title-color);
  font-weight:var(--gioco2-title-fontWeight);
}
.gioco2__subtitle {
  font-size: var(--gioco2-subtitle-fontSize);
  color: var(--gioco2-subtitle-color);
  max-height: 40%;
  overflow-y: hidden;
  text-overflow: ellipsis;
}
.gioco2__controls {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  width:70%;
}
.gioco2__controls > * {
  flex: 1 1 auto;
}
.gioco2__controls > *:not(:last-child) {
  margin-right: 8px;
}
.gioco2__link {
  text-transform: none;
  text-decoration: none;
  border-radius: 5px;
  width: max-content;
  display: block;
}
.gioco2__link--1 {
  background: var(--gioco2-link1-background);
  color: var(--gioco2-link1-color);
}
.gioco2__link--2 {
  background: var(--gioco2-link2-background);
  color: var(--gioco2-link2-color);
}
.gioco2__link--2:hover{
	color:inherit;
	cursor:pointer;
}
.gioco2__link--1:hover{
	color:inherit;
	cursor:pointer;
}
.gioco2__link > span {
  padding: 8px 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--gioco2-controls-fontSize);
  text-decoration: none;
  min-width: 80px;
  max-width: 130px;
  box-sizing: border-box;
  font-weight:600;
}

.gioco2__badge {
  border-radius: 4px;
  padding: 2px 8px;
  max-width: 170px;
  overflow: hidden;
}
.gioco2__badge__text {
  font-weight: 500;
  font-size: 11px;
  line-height: 13.75px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.gioco2__badge__container {
  position: absolute;
  display: flex;
  top: 20px;
  left: 24px;
}
.gioco2__badge__container > *:not(:last-child) {
  margin-right: 4px;
}
