/* ============================================
   "View ALL Badges" — Standalone Banner Styles
   ============================================ */

/* Hide the original link inside the description */
#de_page-content_703334-7297887 > p:last-of-type {
  display: none !important;
}

/* Standalone banner styling */
.view-all-badges-banner {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 20px auto;
  padding: 18px 24px;
  background-color: #e85e5e;
  color: #ffffff !important;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.view-all-badges-banner:hover {
  background-color: #d14545;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.22);
  color: #ffffff !important;
  text-decoration: none !important;
}

.view-all-badges-banner:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Arrow icon after the text */
.view-all-badges-banner::after {
  content: " →";
  font-size: 22px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .view-all-badges-banner {
    font-size: 16px;
    padding: 14px 16px;
    margin: 14px 10px;
    letter-spacing: 1px;
  }
}