/**
 * Component: Text
 * 
 * Styles for the Text component.
 *
 * @package SCDA-2025
 */

/* Basic component styling */
.text-component {
    margin-bottom: var(--spacing-sm);

    * {
        margin-top: 0;

        &:last-child {
            margin-bottom: 0;
        }
    }
    a {
        color: var(--color-scda-tan);
        transition: .2s ease-in-out;

        &:hover, &:focus-visible {
            text-decoration: none;
        }
    }
    .checklist {
        margin-top: calc(-1rem + 4px);
    }
}