/* ======= Ikony małe w nagłówku ======= */
.top-icon img {
  width: 50px !important; /* wymuszamy nadpisanie inline width */
  height: auto !important;
  vertical-align: middle;
}

/* Znak po prawej stronie */
.icon-znak {
  width: 160px !important;
  height: 200px !important;
  max-width: 100%;
  float: right; /* zachowujemy float inline */
}

/* Kontener dla numeru telefonu i e-mail */
.top-info {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-family: Verdana, sans-serif;
  justify-content: flex-start; /* zmień na flex-end jeśli chcesz w prawo */
  margin: 0; /* nadpisanie ewentualnych inline */
  padding: 0;
}

/* Numer telefonu */
.topTel {
  font-family: Verdana, sans-serif;
  color: #FFEA00 !important;
  font-size: 1.5em !important;  /* odpowiada font size="6" */
  line-height: 1.2;
  text-decoration: none !important;
}

/* E-mail */
.top-info a[href^="mailto:"] {
  font-family: Verdana, sans-serif;
  color: #FFEA00 !important;
  font-size: 1.5em !important;
  line-height: 1.2;
  text-decoration: none !important;
}

/* Responsywność */
@media (max-width: 768px) {
  .top-icon img { width: 40px !important; }
  .icon-znak { width: 120px !important; height: auto !important; }
  .topTel, .top-info a[href^="mailto:"] { font-size: 1.2em !important; }
}

@media (max-width: 480px) {
  .top-icon img { width: 30px !important; }
  .icon-znak { width: 100px !important; height: auto !important; }
  .topTel, .top-info a[href^="mailto:"] { font-size: 1em !important; }
}
