/* 
GN Page UI Audit - Minimal Fix Patch
Version: v1.0.0
Layunin: mabilis na ayusin ang mga common issues na lumabas sa audit (tap targets, contrast, clipping, reduced-motion, defensive ad overlay).
NOTE: Kung may side effects ang "adsbygoogle" rule, i-comment out muna ang section #5.
*/

/* 1) Palakihin tap target ng logo link */
header.site-header a.custom-logo-link{
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  line-height: 1;
}

/* 2) Active nav contrast: ihiwalay ang fg vs bg tint */
header.site-header a.active-link{
  /* mas readable: darker text, lighter tint */
  color: rgb(15, 23, 42);
  background-color: rgba(14, 165, 233, 0.14);
}

/* 3) Search submit: iwas clipping (lalo na focus ring / icon) */
header.site-header button.search-submit{
  overflow: visible;
}

/* 4) Reduced motion guard sa CTA */
@media (prefers-reduced-motion: reduce){
  a.cta-button{
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* 5) Defensive: ad container should not overlay hero/cta (use with caution) */
ins.adsbygoogle.adsbygoogle-noablate{
  position: static !important;
  z-index: auto !important;
  display: block;
  margin: 16px auto;
  clear: both;
}
