.brand-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.brand-list li {
  display: inline;
  white-space: nowrap; /* keep brand + bullet together */
  margin-right: 5px;
}

.brand-list li::before {
  content: "•\00a0"; /* bullet + non-breaking space */
  color: #EC1B24; /* your red */
  font-weight: bold;
}


.comic-headline {
    font-family: "Bangers", system-ui, sans-serif;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #ffffff;
    font-size: 3.5rem;
    position: relative;
    transform: rotate(-1deg) skewY(-1.5deg);
    margin-top: 0.5em;
    text-align: center;
}

/* Subtitle inside the headline */
.comic-headline .sub {
    display: block;
    font-size: .65em;
    margin-top: 1.75rem;
    color: #ffffff;
    line-height: 1.2em;
    text-align: center;
}
/* Subtitle inside headline */
.comic-headline span {
    display: block;
    font-size: 0.35em;
    margin-top: 0.2rem;
    color: #ffffff; letter-spacing: .01em;     line-height: 1.2em;
}

/* Tablet & Mobile adjustments */
@media (max-width: 960px) {
  .comic-headline {
    font-size: 2.2rem;
    transform: none;
    line-height: 1.1;
  }

  .comic-headline span {
    font-size: 0.65em;
    text-shadow: none; /* keep it clean for readability */
  }
.comic-headline .sub {
    margin-top: 0.75rem;
  }
}

/* Extra small screen (phones) */
@media (max-width: 480px) {
  .comic-headline {
    font-size: 1.8rem;
    
  }
  .comic-headline span {
    font-size: 0.7em;
    -webkit-text-stroke: 0; /* no stroke at all */
    text-shadow: none;
  }
}


/* Comic Style CTA Button */
.comic-btn a.uk-button-primary {
  background: none; /* remove YOOtheme gradient image */
  background-color: #EC1B24; /* primary red */
  color: #fff !important;
  font-family: "Bangers", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.75rem 1.8rem;
  border-radius: 0.5rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.25s ease;
  
  box-shadow: 4px 4px 0 #FFE935; /* yellow offset comic border */
  line-height: 1.2;
  border: none;
}

/* Hover effect */
.comic-btn a.uk-button-primary:hover {
  background-color: #FFE935;
  color: #EC1B24 !important;
 
  box-shadow: 6px 6px 0 #EC1B24;
  transform: translate(-2px, -2px);
}

/* Active/Pressed state */
.comic-btn a.uk-button-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #0b1220;
}

/* Comic Style CTA Button 2 (clean white pill button) */
.comic-btn2 a.uk-button-primary {
  background: #ffffff !important;
  color: #004aad !important;      /* blue text */
  font-family: "Bangers", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 30px;            /* pill shape */
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #222;         /* bold outline */
  transition: all 0.25s ease;
  box-shadow: none;               /* no comic offset shadow */
  line-height: 1.2;
}

/* Hover effect */

.comic-btn2 a.uk-button-primary:hover {
    background: #e9e9e9 !important;
    color: #000000 !important;
    border-color: #004aad;
    transform: translateY(-2px);
    box-shadow: 0 4px 0 #222;
}

/* Active/Pressed state */
.comic-btn2 a.uk-button-primary:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 #222;
}


/* Mobile adjustments */
@media (max-width: 480px) {
  .comic-btn a.uk-button-primary, .comic-btn2 a.uk-button-primary {
    font-size: 1rem;
    padding: 0.6rem 1.4rem;
    box-shadow: 3px 3px 0 #dfdfdf;
  }
}
