/*
 * Copyright (c) 2025 TechDivision GmbH
 * All rights reserved
 *
 * This product includes proprietary software developed at TechDivision GmbH, Germany
 * For more information see https://www.techdivision.com/
 *
 * To obtain a valid license for using this software please contact us at
 * license@techdivision.com
 */

.text-box {
  padding: var(--spacing-half) var(--spacing-simple);
  color: var(--color-white);

  p:last-child {
    margin-bottom: 0;
  }
}

.text-box.red a,
.text-box.blue a,
.text-box.orange a {
  color: var(--color-white);
}

.text-box.red {
  background-color: var(--color-red);
}

.text-box.blue {
  background-color: var(--color-blue);
}

.text-box.orange {
  background-color: var(--color-orange);
}
