/*!
 * VENDOR DIRECTORY STYLING
 * - Flex layout and image/icon alignment
 * - Typography for names + links
 * Used on dedicated vendor listings or footers
 */




 
 /*! VENDOR LIST STYLES */
 
 .vendorListContainer {
   display:flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 10px 24px;
   padding-inline: 10%;
   text-align: center;
   font-family: 'Abel', sans-serif;
 }
 
 .individualVendor {
   display: inline-flex;
   align-items: center;
   gap: 10px;
 }
 
 .individualVendor strong {
   font-family: 'Abel', sans-serif;
   font-weight: bold;
   font-size: 15px;
 }
 
 .individualVendor a {
   font-family: 'Open Sans', sans-serif;
   text-decoration: none;
   font-size: 12px;
   text-transform: uppercase;
 }
 
 .individualVendor img {
   width: 12px;
   height: 12px;
 }