<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* todo Set this up for SCSS */
/* todo Set scss Variables */
.suggested_queries {
  position: relative;
  
  .suggested_queries__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: center;
  }

  .suggested_queries__heading{
    margin: 0;
    color: #002663;
    font-family: urw-din, Arial, sans-serif;
    font-size: clamp(20px, 3vw, 24px);
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
  }



  .suggested_queries__heading bold{
    font-weight: 500;
  }

  .suggested_queries__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .suggested_queries__link{
    padding: 5px 10px;
    display: flex;
    gap: 8px;
    align-items: center;
    background-color: #F1F1F1;
    color: #002663;
    font-family: urw-din, Arial, sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  .suggested_queries__link:hover, 
  .suggested_queries__link:focus {
    background-color: #002663;
    color: #F1F1F1 ;
  } 

  /* override the Ais-hits */
  .suggested_queries__item {
    padding:0;
  }
  .suggested_queries__item::before{
    display:none;
  }

}</pre></body></html>