/* stili per pattern dell'emblema */

.emblem-container {
  width: 3.5rem;
  /* w-14 */
  height: 3.5rem;
  /* h-14 */
  background-color: var(--wp--custom--color--primary);
  /* bg-primary */
  z-index: 10000000;


}

.emblem-container .icon-container {
  display: flex;
  /* flex */
  align-items: center;
  /* items-center */
  justify-content: center;
  /* justify-center */
}

/* Medium screens and up */
@media (min-width: 768px) {
  .emblem-container {
    width: 5rem;
    /* md:w-20 */
    height: 5rem;
    /* md:h-20 */
  }
}


/* Mobile styles */
.wp-block-outermost-icon-block svg.emblem-svg {
  height: 2.75rem;
  width: 2.75rem;
}

/* Medium screens and up */
@media (min-width: 768px) {
  .wp-block-outermost-icon-block svg.emblem-svg {
    height: 4rem;
    /* md:h-16 */
    width: 4rem;
    /* md:w-16 */
  }
}

#emblem {
  stroke: var(--wp--custom--color--primary-content);
  fill: transparent;
}

html[data-theme='dark'] #emblem {
  stroke: transparent;
  fill: var(--wp--custom--color--primary-content);
}