/* === Share block layout === */
.starter-share-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  margin: 3rem auto;
  gap: 2rem;
  border: 0.5px solid #ffffff;
  border-radius: 15px;
  padding: 1.5rem 1rem;
}

.recommend-character-dialogue-picture {
  display: flex;
  justify-content: center;
  margin: 1rem auto;
  flex-shrink: 0;
  width: 160px;
}

.recommend-character-dialogue-picture img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  display: block;
}

.share-columns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.share-friends-wrapper,
.share-gift-wrapper {
  flex: 1 1 100%;
}

.share-friends-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.share-gift-wrapper {
  display: flex;
  flex-direction: column;
}

.share-poster-button-wrapper {
  display: flex;
  justify-content: center;   /* horisontaalne tsentreerimine */
  align-items: center;       /* vertikaalne tsentreerimine */
}

.share-poster-button-wrapper .wp-block-shortcode,
.share-poster-button-wrapper button {
  display: inline-block;
}


.share-gift-wrapper .giftcard-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  margin-top: 2rem;
  gap: 1rem;
}

.gift-button-wrapper {
  display: flex;
  justify-content: center;
}

.recommend-character-dialogue {
  padding: 0rem 1rem;
  border-radius: 1rem;
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 600px;
  flex: 1;
}

.recommend-character-dialogue p {
text-align: center;
}


.giftcard-button img {
  width: 24px;
  height: 24px;
}

.giftcard-button button {
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 1rem 2rem;
}

.share-heading p {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  width: 100%;
}

.recommend-dialogue-icon {  
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem;
}

.recommend-dialogue-icon img{  
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem;
  width: 100px;
  height: 50px;
}



/* === Desktop layout overrides === */
@media (min-width: 768px) {
  .share-columns {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .share-friends-wrapper,
  .share-gift-wrapper {
    flex: 1 1 50%;
    height: 300px;
  }

  .share-friends-wrapper {
    padding-right: 1rem;
  }

  .share-gift-wrapper {
    padding-left: 1rem;
  }
} 

