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

/* Basic component styling */
.full-width-text {
    .full-width-text-content {
        margin-bottom: -1rem;

        &.mobile-center {
            @media screen and (max-width: 576px) {
                text-align: center;
            }
        }
        a {
            color: var(--color-scda-tan);
            transition: .2s ease-in-out;

            &:hover, &:focus-visible {
                text-decoration: none;
            }
        }
    }
}