/* Style do wspólnych elementów strony */
/* Text */
#template .hero-page h1{
  text-transform: none;
}
#template .speech-bubble{
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 2px 2px 21px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7f2;
}
#template .speech-bubble.no-mascot{
  margin-top: 10px;
  margin-bottom: 40px;
}
#template .speech-bubble:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 87%;
    width: 0;
    height: 0;
    border: 27px solid transparent;
    border-top-color: #fff;
    border-bottom: 0;
    border-right: 0;
    margin-left: -13.5px;
    margin-bottom: -27px;
}
#template .speech-bubble.no-mascot:after{
  display: none;
}
#template .woocommerce-MyAccount-content .speech-bubble:after{
  left: 81%;
}
#template .speech-bubble h2 {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 10px;
    line-height: 26px;
    text-align: center;
    box-shadow: none;
    font-weight: normal;
    text-transform: none;
}
@media (max-width:768px) {
  #template .speech-bubble h2{
    font-size: 15px;
  }
  #template .speech-bubble:after{
    left: 55%;
  }
}

#template .speech-bubble + img {
    float: right;
    margin-top: 15px;
    margin-left: auto;
    max-width: 160px;
}

.tag-cloud-seo {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin: 24px 0;
  justify-content: center;
}

/* Tagi */
.tag-cloud-seo .tag-item {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  background: #f7f7fb;
  color: var(--theme-dark);
  padding: 5px 10px 5px 10px;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 2px 6px 0 rgba(0,35,90,0.07);
  transition: all 0.16s cubic-bezier(.4,0,.2,1);
  font-weight: 500;
  border: 1px solid #e0e5ef;
  position: relative;
}

.tag-cloud-seo .tag-item span {
  color: #7b8da5;
  font-size: 0.93em;
  margin-left: 8px;
}

.tag-cloud-seo .tag-item:hover,
.tag-cloud-seo .tag-item:focus {
  background: var(--theme-purple);
  color: #fff;
  box-shadow: 0 3px 12px 0 rgba(34,86,227,0.11);
  border-color: var(--theme-purple);
  text-decoration: none;
}

.tag-cloud-seo .tag-item:hover span,
.tag-cloud-seo .tag-item:focus span {
  color: #fff;
}

@media (max-width: 600px) {
  .tag-cloud-seo {
    gap: 10px 10px;
  }
  .tag-cloud-seo .tag-item {
    font-size: 0.97rem;
    padding: 6px 13px 6px 10px;
  }
}
