/**
 * Trustbox button styling
 */

/* Content styling */
.trustbox-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.trustbox-title {
  font-size: 18px;
  font-weight: bold;
  margin-left: 0.25em;
}

.trustbox-subtext {
  font-size: 12px;
  opacity: 0.7;
  line-height: 1.2;
  margin-top: 4px;
}

/* Responsive styling */
@media (max-width: 600px) {
  .trustbox-title {
    font-size: 16px;
  }

  .trustbox-subtext {
    font-size: 10px;
  }
}

/* Ultra-small screen styling */
@media (max-width: 320px) {
  .trustbox-title {
    font-size: 12px;
    margin-left: 0.1em;
  }

  .trustbox-subtext {
    font-size: 8px;
    line-height: 1.1;
  }
}
