/*
/assets/css/kemoku.css
Kemoku plugin.
sportsbook (Reviews) custom post type.
Above-the-fold
*/

/* Hero
=====================================================================================================================*/

/* Layout */
.sb-hero {
  overflow: hidden;
	padding: 2rem;
	height: 100%;
}

.sb-hero > span {
  z-index: 1;
}

div .sb-hero.sb-hero__cols-2 {
  grid-template-columns: 45% 55%;
  padding-top: 7rem;
  position: relative;
}

/* Title */
.sb-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  position: absolute;
  text-align: left;
  top: 1rem;
}

/* Image */
.sb-hero--image a img {
  position: relative;
width: 300px;
  z-index: 1;
}

/* Rating position */
div .sb-hero>span.sb-hero--rating {
  grid-column: 1/2;
  grid-row: 2/3;
}

div .sb-hero>span.sb-hero--rating>span.sb-hero--rating--stars {
  margin-bottom: 0.5rem;
}

/* Button position */
.sb-hero--button {
  grid-column: 2/3;
  grid-row: 1/4;
}

/* Background */
.hero-bg img {
  bottom: 0;
  filter: opacity(0.5);
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  width: 100%;
}

/* Notice */
.sb-hero .illegal-notice {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 1rem;
  text-align: left;
}

.illegal-warning-image {
    width: 60px; /* Ajuste o tamanho da imagem */
    height: auto;
    margin-right: 8px; /* Espaço entre a imagem e o texto */
    vertical-align: middle; /* Alinha a imagem ao texto */
}

@media only screen and (max-width: 768px) {
/* Notice */

	.sb-hero .illegal-notice {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 2rem;
  text-align: left;
}
	
	.illegal-warning-image {
    width: 25px;
    height: auto;
    margin-right: 3px; 
    vertical-align: middle;
}	

  /* Layout */
  div .sb-hero.sb-hero__cols-2 {
    display: flex;
    flex-flow: column;
    padding: 0.9rem;
  }
  
  /* Logo */
  .sb-hero--image a img {
    max-width: 100%;
    width: 300px;
	margin-bottom: -1.5rem;
  }
  
  /* Title */
  .sb-hero .sb-hero-title {
	font-size: 1.3rem;
    margin-bottom: 2rem;
    position: relative;
  } 
  
  /* Button */
  div .sb-hero > span.sb-hero--button .sb-hero--button--button {
    padding: 0.5rem 3rem;
	margin-bottom: 1rem;
  }
}