/**
 * [casino_box] shortcode — shared with articles; kept in theme so promotii match without Top Items CSS only.
 */
.casino-box {
	margin: 20px 0;
	border-radius: 8px;
	padding: 20px;
	background: rgb(191, 22, 21);
	background: linear-gradient(119deg, rgba(191, 22, 21, 1) 11%, rgba(151, 21, 18, 1) 11%, rgba(191, 22, 21, 1) 100%);
	border-top-left-radius: 15px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
	border-top-right-radius: 50px;
}

.casino-box_wrap {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

.casino-box_entry {
	display: flex;
	align-items: center;
	gap: 15px;
}

.casino-box_logo {
	min-width: 130px;
	max-width: 130px;
	min-height: 100px;
	display: flex;
	align-items: center;
	background: #fff;
	padding: 5px;
	border-radius: 20px;
}

.casino-box_logo img {
	width: 100%;
}

.casino-box_title h2 {
	font-size: 20px;
	color: #fff;
	font-weight: bold;
}

.casino-box_title p {
	font-size: 10px;
	margin: 0;
	color: #fff;
}

.casino-box_bonus {
	text-align: center;
}

.casino-box_bonus p {
	font-size: 20px;
	text-align: center;
	line-height: 26px;
	margin-bottom: 0;
	color: #fff;
	font-weight: bold;
}

.casino-box_button a {
	background: #fff;
	width: 100%;
	max-width: 280px;
	margin: 0 auto;
	display: flex;
	padding: 18px;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	color: #000 !important;
	text-decoration: none !important;
	font: normal normal bold 16px/22px Open Sans, sans-serif;
	letter-spacing: 0;
	text-transform: uppercase;
}

.casino-box_button a:hover {
	opacity: 0.9;
}

.entry-content .content-here-promotie--full {
	width: 100%;
	float: none;
	clear: both;
}

@media screen and (max-width: 768px) {
	.casino-box_wrap {
		grid-template-columns: 1fr;
	}

	.casino-box_entry {
		justify-content: center;
		display: block;
	}

	.casino-box_title p {
		text-align: center;
	}

	.casino-box_logo {
		margin: 0 auto;
	}

	.casino-box_title h2 {
		display: none;
	}
}
