/* Logo boyutunu kesin şekilde kontrol et */
.header .site-branding .site-logo a,
.header .site-branding .site-logo { display: inline-flex; align-items: center; }

.header .site-branding .site-logo img,
.header .site-branding img.logo-img {
  display: block;
  height: auto !important;
  width: auto;
  max-height: none !important;   /* 80px / 2.5rem sınırlarını iptal et */
  max-width: var(--logo-max-width, 200px); /* ihtiyaca göre 220–280px */
}

@media (max-width: 768px) {
  .header .site-branding .site-logo img,
  .header .site-branding img.logo-img {
    max-width: var(--logo-max-width-mobile, 160px);
  }
}
