/* custom-styles.css */

.advertiser-disclosure {
    position: relative; /* Establish positioning context for the tooltip */
}

/* --- MOBILE STYLES --- */
@media (max-width: 768px) {
    /* 
      On mobile, the tooltip is positioned relative to the full-width
      .advertiser-disclosure bar, not the .disclosure-link span itself.
    */
    .disclosure-link {
        position: static; /* This ensures the tooltip ignores the link for positioning */
    }
}
