
/*==================================
  ROOT VARIABLES
==================================*/
:root {
  /* Font families for consistent typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Merriweather', serif;
  
  /* Layout measurements */
  --logo-size: 66px;
  
  /* Tab-specific styling variables */
  --tab-border-width: 2px;
  --tab-border-radius: .375rem;
  --tab-backdrop-filter: blur(1px);
}
/*==================================
  HEADING STYLES
==================================*/
/* Apply Merriweather font to the greeting */
.information-widget-logo + .information-widget-greeting span {
  font-family: var(--font-secondary) !important;
  font-weight: 700 !important;
}

/* Logo size and positioning */
.information-widget-logo img {
  width: var(--logo-size) !important;  
  height: var(--logo-size) !important;
  max-width: none;   
  max-height: none;     
  margin-left: var(--spacing-lg);
}
