// =============================================================================
// :: WYSIWYG - default
// =============================================================================
.s-wysiwyg-default {

	.s-wysiwyg-default__text {

		h2,
		h3 {
			margin: 5rem 0 1.5rem;

			&:first-child {
				margin-top: 0;
			}
		}

		h4,
		h5,
		h6 {
			margin: 3rem 0 1rem;
		}

		a {
			position: relative;

			color: $text-color-highlight;

			&::after {
				content: "";

				position: absolute;
				left: 0;
				bottom: 0;

				width: 100%;
				height: 0.1rem;

				background-color: $background-color-pink;

				transform: scale(0);
				transform-origin: center;

				transition: transform 0.2s ease-in-out;
			}

			&:hover {

				&::after {
					transform: scale(1);
				}
			}
		}

		strong {
			display: block;
		}

		ul {
			@include extend-list-clear();

			margin: 2rem auto;

			li {
				position: relative;

				padding-left: 3rem;

				&::before {
					content: "-";

					position: absolute;
					top: 0;
					left: 0;

					display: block;

					color: $text-color-highlight;
				}
			}
		}

		ol {
			margin: 2rem auto;
			padding: 0;

			list-style: none;
			counter-reset: ordered-list-counter;

			li {
				counter-increment: ordered-list-counter;

				&::before {
					content: counter(ordered-list-counter) ". ";

					font-family: $font-family-primary;
					font-weight: $font-weight-medium;

					color: $text-color-highlight;
				}
			}
		}
	}
}
