/*filtri */
.posted-on a .updated {
	display: none;
}
/* Stili per il layout con sidebar */
.content-wrapper {
    display: flex;
    gap: 30px;
    max-width: 100% !important; 
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    flex: 1;
    min-width: 0;
}

.sidebar {
    flex: 0 0 300px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.sidebar h3 {
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #007cba;
    padding-bottom: 10px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    margin-bottom: 12px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 8px;
}

.sidebar li:last-child {
    border-bottom: none;
}

.sidebar a {
    text-decoration: none;
    color: #495057;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.sidebar a:hover {
    color: #007cba;
}

.category-count {
    background: #007cba;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        flex: none;
        position: static;
        order: 1;
    }
}
.filter-buttons {
    margin-bottom: 30px;
    text-align: center;
}

.filter-btn {
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px 20px;
    border: 2px solid #0073aa;
    background: white;
    color: #0073aa;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #0073aa;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,115,170,0.3);
}

/* Layout principale */
#posts-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    #posts-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    #posts-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Animazioni per i post items */
.post-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background: white;
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

.post-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Classi per le animazioni di filtro */
.post-item.fade-out {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.post-item.fade-in {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Animazione dell'immagine */
.post-thumbnail {
    overflow: hidden;
    height: 240px;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-thumbnail:hover img {
    transform: scale(1.1);
}

.post-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 240px);
}

.post-content h3 {
    margin: 0 0 15px 0;
    font-size: 1.2em;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.post-content h3 a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.post-content h3 a:hover {
    color: #0073aa;
    text-shadow: 0 1px 3px rgba(0,115,170,0.2);
}

.post-excerpt {
    display: none;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
    align-self: flex-start;
    transform: translateY(0);
}

.read-more-btn:hover {
    background: #005a87;
    color: white;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-thumbnail:hover img {
    transform: scale(1.05);
}

.post-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 240px); /* Aggiornato per la nuova altezza immagine */
}

.post-content h3 {
    margin: 0 0 15px 0;
    font-size: 1.2em;
    flex-shrink: 0;
}

.post-content h3 a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.post-content h3 a:hover {
    color: #0073aa;
}

/* Nascondi solo l'excerpt */
.post-excerpt {
    display: none;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s ease;
    text-align: center;
    margin-top: auto; /* Si posiziona in fondo */
    align-self: flex-start;
}

.read-more-btn:hover {
    background: #005a87;
    color: white;
}

/* Responsive per dispositivi molto piccoli */
@media (max-width: 480px) {
    .filter-btn {
        margin-right: 5px;
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .post-content {
        padding: 15px;
    }
    
    .post-thumbnail {
        height: 200px; /* Mantiene proporzioni su mobile */
    }
    
    .post-content {
        height: calc(100% - 200px);
    }
}

/* Tablet orizzontale */
@media (min-width: 768px) and (max-width: 1023px) {
    .post-content h3 {
        font-size: 1.1em;
    }
}

/* Desktop large */
@media (min-width: 1200px) {
    #posts-container {
        gap: 25px;
    }
    
    .post-content {
        padding: 25px;
    }
}
/* fine filtri */
/*	.betnero_section .betnero_section__container {
	padding-top: clamp(3.2rem, 1rem + 1vw, 6rem);
	flex-direction: column-reverse;
	display: flex;
}*/
.related_post li p a {
	display: contents;
}
.container-fluid.betnero_top-line__container {
	display: none;
}
.post-thumbnail img {
	max-height: 40vh !important;
}
.entry-meta {
	margin: 1em 0;
	background: #1b2746;
	padding: 10px;
}
.category-strategy {
	display: grid;
}
.related_post li p {
	display: grid;
	width: 100%;
}
.related {
	display: inline-block;
	background: #1B2746;
	padding: 20px 10px;
}
.game-content {
	text-align: left !important;
}
.game-description {
	line-height: 1.3em;
}
.game-description h3 {
  margin: 20px 0;
  border-bottom: 1px solid #fff4;
  padding: 4px 0;
  font-size: 20px;
}
.game-description {
  line-height: 1.3em;
}
.game-content h1 {
	margin: 30px 0 20px;
}
a.more-link {
	float: left;
	padding: 10px;
	text-decoration: none;
	background: #243156;
	margin: 10px 0;
	border-radius: 10px;
	max-width: 200px;
	position: absolute;
	bottom: 3em;
	display: grid !important;
}
a.related_title {
	padding: 20px 0 5px;
	display: block;
	font-size: 18px;
	line-height: 1.4em;
	text-decoration: none !important;
}
.related_post {
	width: 31%;
	float: left;
}
ul.related_post li div.post-thumbnail {
	width: auto;
	margin: 20px 0;
}
.related_post li {
	list-style: none;
}
.textWrapper p {
	padding: 20px 0 0 0 !important;
	font-size: 0.8rem;
}
.secuirtyIconsSection {
	display: flex;
	/* width: 93%; */
	margin-top: 0 !important;
	border-top: 1px solid #ffffff33;
	padding-top: 20px;
}
.paymentMethodsSection div > div {
	padding-top: 20px !important;
}
.paymentMethodsSection {
	width: 33% !important;
}
.paymentsAndSecurityWrapper img {
	max-width: 100px;
	max-height: 40px;
}
.entry-content h3 {
	font-size: 22px;
}
.entry-content h4 {
	font-size: 20px;
}
.entry-content h5 {
	font-size: 18px;
}
.entry-content a {
	font-weight: bold;
	text-decoration: underline;
}
.related_post .post-thumbnail img {
	height: auto;
	margin: 0 20px 20px 0;
	float: left;
	width: 100%;
}
.page-title h1 {
	display: none;
}
.footerCms ul li a {
	font-size: 0.8rem !important;
	font-weight: 500 !important;
}
ul li.Footertitle {
	font-size: 1.7rem !important;
}
.h2, h2 {
	font-size: 1.6rem !important;
}
.h1, h1 {
	font-size: 2rem !important;
}
.rev-btn.rs-layer.rs-waction.rs-wclickaction {
	background: #0F83E7 !important;
	color: white !important;
	border-radius: 4px !important;
}
ul li {
	list-style: disc;
}
.betnero_top-description__container {
	padding-top: 20px;
}
.betnero_games__filters__item {
	background-color: #1C2747;
	border-radius: 4px;
}
.betnero_promotions.betnero_promotions-small .betnero_bg-color-1::after {
	display: none;
}
.betnero_promo-card {
	background: #eee;
}
.betnero_promo-card__title, .betnero_promo-card__text {
	color: #3D4A71;
}
.betnero_promo-card__button {
	background: #0199ED;
	color: #fff;
}
.betnero_games__row_rubric {
	color: #3D4A71;
}
.betnero_games__thumbs .swiper::before, .betnero_games__thumbs .swiper::after {
	background: #eeeeee;
}

.betnero_bg-color-1::after, .betnero_bg-color-2::after {

	background-size: 101%;
}
.betnero_bg-color-2.betnero-color-light {
	background-color: #eee;
	color: #8C9FCD;
}
.betnero_bg-color-2.betnero-color-light::after {
	/*content: "";*/
	display: block;
	position: absolute;
	width: 100%;
	height: 49px;
	background: url("../img/bg-decor-1.svg") 0 0 no-repeat;
	z-index: 1;
}
.betnero_casino {
	padding: 0px;
}
.col-md-9.betnero_section__col-left.betnero_text01 {
	width: 70%;
	float: left;
}
.col-md-3.betnero_section__col-right.betnero_img01 {
	width: 30%;
}
.betnero_promotions__image img {
	width: 70%;
	max-width: 333px;
	float: right;
	max-height: 260px;
}
.betnero_promotions__row {
	padding: 0% 8% 0;
}
.betnero_section .betnero_section__text {
	margin-bottom: 30px;
}
.betnero_nuove .betnero_section__image img {
	max-width: 300px;
	max-height: 220px;
	margin-top: 0;
}
.betnero_section .betnero_button {
	background: #0199ED;
	border-radius: 3px;
	font-weight: 900;
	font-size: 15px;
	padding: 8px 30px 10px;
	color: white;
}

.betnero_section .betnero_section__container {
	padding-top: clamp(4rem, 1rem + 1vw, 6rem);
}
.betnero_section__content.betnero_bonus__content {
	margin: 3em 0 0;
}
.betnero_promotions.betnero_promotions-small .betnero_promotions__container {
	padding: 0;
}

.betnero_section .betnero_section__col-right {
	align-items: center;
	padding-top: 1em;
}
.betnero_promotions__col-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: right;
	-ms-flex-pack: right;
	justify-content: right;
	padding: 1em;
}

/*titolo*/
.betnero_bg-color-2 .betnero_section__title::before {
  content: ' ';
  display: block;
  background: #1C2747;
  width: 30px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -13px;
  transform: skew(-20deg);
  border-radius: 8px;
  z-index: -1;
}
.betnero_bg-color-2 .betnero_section__title::after {
  /*content: ' ';*/
        display: block;
        background: #1C2747;
        width: 36px;
        height: 100%;
        position: absolute;
        top: 0;
        right: -20px;
        transform: skew(-20deg);
        border-radius: 8px;
        z-index: -1;
}
/*fine titolo*/

.betnero_promotions__container {
	padding-top: 10px;
}
.betnero_scommesse .betnero_section__image img {
	max-width: 330px;
	max-height: 230px;
}
.card-text.betnero_bonus__text {
	max-width: 30ch;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	padding: 0 2em;
}
.swiper-slide .betnero_bonus__title {
	font-size: 16px;
	margin-bottom: 5px !important;
}
.swiper-slide .betnero_bonus__text {
	margin-bottom: 10px;
}
.card.betnero_bonus__card.swiper-slide .betnero_bonus__button {
	/*display: none;*/
}
.betnero_section__content.betnero_bonus__content {
	margin: 2em 0 0;
}
.betnero_promotions.betnero_promotions-small .betnero_promotions__button-registrati {
	font-size: 15px;
}

@media (min-width: 20em) and (max-width: 160em) {
  @supports (margin-bottom: clamp(0.0000000625rem, -1.1607142143rem + 5.8035713839vw, 8.125rem)) {
    .betnero_nuove .betnero_button {
      margin-bottom: clamp(0.0000000625rem, -1.1607142143rem + 3.8035713839vw, 8.125rem);
    }
  }
}
.betnero_section__content.betnero_bonus__content {
	margin: 3em 0;
}
@media (min-width: 47.9988em) {
	.betnero_section .betnero_section__title {
    line-height: 120%;
  }
  .betnero_bg-color-1 .betnero_section__title::before, .betnero_bg-color-1 .betnero_section__title::after {
    height: 37px;
  }
  .betnero_section .betnero_section__title {
    font-size: 30px;
  }
  .betnero_bg-color-2 .betnero_section__title::before, .betnero_bg-color-2 .betnero_section__title::after {
    height: 36px;
  }
	  .betnero_promotions__button-registrati {
    padding: 8px 40px 10px;
    margin: 0;
  }
	 .betnero_section .betnero_section__col-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
    padding: 30px 0 10px 15px;
  }
}
@media (min-width: 20em) and (max-width: 160em) {
	.col-md-9.betnero_section__col-left.betnero_text01 {
  width: 100%;
  float: left;
}
	.betnero_section__image {
	display: none;
}
  @supports (font-size: clamp(1.125rem, 1.0446428571rem + 0.4017857143vw, 1.6875rem)) {
    .betnero_promotions__button-registrati {
      font-size: 15px;
    }
  }
  .betnero_bonus .betnero_button {
    margin-top: 40px !important;
    margin-bottom: 10px !important;
  }
	.betnero_promotions.betnero_promotions-small .betnero_promotions__title {
      font-size: clamp(1rem, 0.6071428571rem + 1.9642857143vw, 1.75rem);
    }
  }
}
.betnero_casino .betnero_section__image img {
	max-width: 330px;
	max-height: 230px;
}
@media (max-width: 768px) {
	a.more-link {
	float: left;
	padding: 10px;
	text-decoration: none;
	background: #243156;
	margin: 10px 0;
	border-radius: 10px;
	max-width: 200px;
	position: inherit;
}
	.related_post {
	width: 98%;
	float: none;
}
	.betnero_wrapper > main {
	padding-bottom: 10px !important;
}
	.betnero_faq .accordion {
	padding: 50px 0 0 !important;
}
	.panelMenu {
	background: none !important;
}
	.accordionMenu {
	background: none !important;
}
	.accordionMenu::after {
		font-size: 2rem !important;
}
	.currentTab::after {
	top: 13px !important;
}
	.panelMenu ul li {
	padding-left: 10px !important;
}
	.secuirtyIconsSection > div:last-child {
	padding-top: 20px;
	margin: 0;
}
	.secuirtyIconsSection > div {
	display: flex;
	margin: 0 auto !important;
	text-align: center;
}
	.secuirtyIconsSection > div:first-child {
	padding-top: 20px;
	margin: 0 auto;
}
	.accordionMenu::after {
	right: 0;
	top: -28px;
}
	.paymentMethodsSection div > div {
	background: none !important;
	width: 100% !important;
}
	.paymentMethodsSection {
	width: 100% !important;
}
	.paymentMethodsSection > div:first-child {
	padding-top: 10px !important;
}
	
.accordionMenu.border-top, .accordionMenu {
	font-size: 0.8rem !important;
	padding: 3px 10px !important;
}
	.betnero_bg-color-1 .betnero_section__title::before, .betnero_bg-color-1 .betnero_section__title::after {
	height: 33px;
}
	.betnero_bg-color-2 .betnero_section__title::before, .betnero_bg-color-2 .betnero_section__title::after {
	height: 34px;
}
	  .betnero_section .betnero_section__title {
    font-size: 24px;
    line-height: 140%;
    letter-spacing: -1px;
  }
	
	  .betnero_promotions__description {
    margin-top: 1em;
  }
	.betnero_promotions__button-registrati {
	width: 120px;
}
	.betnero_header__button-login, .betnero_header__button-reg {
	height: 40px;
	width: 120px;
	font-size: 15px;
}
  .col.betnero_promotions__col-right {
	display: none;
}
	.betnero_promotions__slide.swiper-slide.swiper-slide-active {
	padding-top: 1em;
}
.betnero_nuove .betnero_section__image img {
	display: none;
}
	 .betnero_section .betnero_section__title {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: fit-content;
  }
	.betnero_promotions__button-registrati {
	margin: 0 auto;
}
	.betnero_promotions .swiper-button-prev, .betnero_promotions .swiper-button-next {
	top: calc(70% - 18px);
}
	.betnero_section .betnero_section__title {
	margin: 10px auto 10px;
}
	.betnero_section__content.betnero_bonus__content {
	margin: 1em 0;
}
	.betnero_nuove .container-fluid.betnero_section__container.betnero_bg-color-2 {
	flex-direction: column-reverse;
}
	.betnero_section .betnero_section__container {
	padding-top: clamp(3.2rem, 1rem + 1vw, 6rem);
	flex-direction: column;
	display: flex;
}
  .mobile-buttons {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    margin-top: 24px;
    margin-bottom: 20px;
  }
	.betnero_promotions__slider-mobile .betnero_promotions__col-left {
	padding-left: 25px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 65%;
	flex: 0 0 100%;
}
	.betnero_promotions__slide.swiper-slide.swiper-slide-active {
	padding-top: 0;
}
	.betnero_header .betnero_header__logo-mobile {
	padding-top: 20px;
}
	.betnero_promotions.betnero_promotions-small .betnero_promotions__container {
	padding: 30px 12px;
}
	.betnero_promotions.betnero_promotions-small .betnero_promotions__button-registrati {
	width: fit-content;
}
	.betnero_promotions.betnero_promotions-small .betnero_promotions__col-left {
display: none;
}
}
@media (min-width: 69.375em) {
  .betnero_section .betnero_section__text {
    padding-left: 10px;
  }
	  .betnero_section .betnero_button {
    margin: 20px 0 0 0;
    margin-bottom: 0px;
  }
  .betnero_section .betnero_section__title {
    margin: 0 auto 25px 70px;
  }
	  .betnero_section .betnero_section__title {
    margin: 0 auto 25px 40px;
  }
}
/*-- Carmelo code --*/
.betnero_section .betnero_section__title {
	font-size: 26px;
}
.betnero_section .betnero_section__title {
	line-height: 141%;
	text-transform: uppercase;
}
.betnero_section__content.betnero_bonus__content {
	margin: 0;
}
.betnero_section .betnero_section__text {
	font-size: 14px;
	padding-left: 85px;
}
 .wide-layout.game-category .show-more-button {
	font-weight: bold;
	font-size: 0.8rem !important;
}
.betnero_info-block__text-block_title {
	display: none;
}
.betnero_info-block__text-block li {
	margin-left: 20px;
	margin-bottom: 12px;
	text-align: left;
}
.betnero_show-more__content ul li {
	list-style: disc !important;
}
td {
	padding: 0.4em;
	border: 1px solid rgba(255,255,255,0.2);
}
.betnero_info-block__text-block h2
{
	margin-top: 1em;
	font-size: 22px;
}
 .betnero_info-block__text-block h3 {
	margin-top: 1em;
	font-size: 20px;
}
.betnero_info-block__text-block h4
{
	margin-top: 1em;
	font-size: 18px;
}

ul li.Footertitle {
	font-size: 1rem !important;
}
.ulListWrapper ul li a {
	font-size: 16px;
}
.filtr-controls.searchTerm {
	padding: 10px;
	border-radius: 4px;
}.page-id-29184 .entry-meta {
	display: none;
}
.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
	float: left;
	max-width: 400px;
	height: auto;
	margin: 0 20px 20px 0;
}

@media (max-width: 768px) {
.betnero_section .betnero_section__title {
	font-size: 24px;
	line-height: 141%;
	letter-spacing: -1px;
}
	  .secuirtyIconsSection {
    padding-top: 10px !important;
  }
	.betnero_section .betnero_section__text {
  padding: 10px;
}
	.post-thumbnail img {
	height: auto;
	margin: 0 20px 20px 0;
	float: left;
}
}
