/**
Theme Name: SAMBA Aesthetics
Author: Stormlabs
Author URI: https://stormlabs.be
Description: Custom Astra child theme for SAMBA Aesthetics
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: samba-aesthetics
Template: astra
Last updated: 2025-09-10 */
*/

ul.target-audience {
  list-style: none;
  margin: 0;
  padding: 0;
}

.target-audience li {
  display: inline-block;
  padding: 4px 10px;
  background: #f3f3f3;
  border-radius: 12px;
  font-size: 0.9em;
  text-decoration: none;
  color: #333;
  margin-right: 10px;
}

ol.toepassing li::marker {
	font-size: 2rem;
	color: var(--ast-global-color-7);
}

ul.wp-block-list {
	width: unset !important;
}

/* ticker */

.ticker-wrap {
  margin-top: 16px;
  overflow: hidden;
  position: relative;
  
}

.ticker {
	
  display: inline-flex;
  column-gap: 18px;
  display: flex;
  padding-left: 100%;
  white-space: nowrap;
  animation: samba-marquee 20s linear infinite;
}

.ticker__item {
	font-size: 22px;
	border-radius: 5px;
	border: solid 1px;
	padding: 10px;

}

.ticker__item > a {
		text-decoration: none !important;
}

.ticker__item:hover {
	background-color: var(--ast-global-color-0);
}

@keyframes samba-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-200%); } /* beweegt 1 volledige set naar links */
}
  




