.brand-logo {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: cover;
  border-radius: 13px;
  box-shadow: 0 5px 15px rgba(52, 24, 71, 0.18);
}

.store-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.store-badge {
  display: inline-flex;
  line-height: 0;
  border-radius: 11px;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.store-badge:focus-visible {
  outline: 3px solid #56d5c2;
  outline-offset: 4px;
}

.store-badge img {
  display: block;
  width: auto;
  height: 56px;
}

.article-cta .store-badges {
  justify-content: flex-start;
}

.challenge-actions {
  margin-bottom: 18px;
}

@media (max-width: 600px) {
  .brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .store-badge img {
    height: 50px;
  }

  .article-cta .store-badges {
    justify-content: center;
  }
}
