/* Blockquotes */
blockquote {
    border-#{$left}: 5px solid #eee;
    margin: 0 0 1rem 0;
    padding: 0.5rem 1rem;
	font-size: 1em;

	&.with-borders {
		border-radius: 6px;
		border-top: 1px solid #DFDFDF;
		border-bottom: 1px solid #DFDFDF;
		border-#{$left}: 1px solid #ECECEC;
		border-#{$right}: 1px solid #ECECEC;
		box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.04);
		padding: 1.3rem;
	}

	&.blockquote-reverse {
		text-align: #{$right};
		border-#{$right}: 5px solid #eee;
		border-#{$left}: 0px !important;
	}
}

/* Small */
small, .small {
	font-size: 70%;
}

/* Paragraphs */
p {
	color: var(--default);
	line-height: 26px;
	margin: 0 0 20px;
	&.featured {
		font-size: 1.6em;
		line-height: 1.5em;
	}
	&.lead {
		line-height: 1.8rem;
	}
	.alternative-font {
		display: inline-block;
		margin-top: -15px;
		position: relative;
		top: 3px;
		margin-bottom: -6px;
	}
}

/* Lead */
.lead {
	letter-spacing: -.05em;
    font-size: 1.2rem;
}

.lead-2 {
    font-size: 1.12rem;
}

/* Links */
a {
	color: var(--primary);
	&:hover {
		color: var(--primary--100);
	}
	&:focus {
		color: var(--primary--100);
	}
	&:active {
		color: var(--primary-100);
	}
}

/* Drop Caps */
p.drop-caps {
	&:first-letter {
		float: $left;
		font-size: 75px;
		line-height: 60px;
		padding: 4px;
		margin-#{$right}: 5px;
		margin-top: 5px;
		font-family: Georgia;
	}

	&.drop-caps-style-2:first-letter {
		background-color: var(--grey-500);
		color: var(--light);
		padding: 6px;
		margin-#{$right}: 5px;
		border-radius: var(--border-radius);
	}
}

/* Default Font Style */
.default-font {
	font-family: $font-primary !important;
}

/* Alternative Font Style */
.alternative-font {
	font-family: $font-secondary !important;
	font-size: 1.6em;
}

.alternative-font-2 {
	font-family: $font-tertiary !important;
}

.alternative-font-3 {
	font-family: 'Handlee', cursive !important;
}

.alternative-font-4 {
	font-family: 'Poppins', Arial, sans-serif !important;
}

.alternative-font-5 {
	font-family: 'Open Sans', Arial, sans-serif !important;
}

.alternative-font-6 {
	font-family: 'Montserrat', Arial, sans-serif !important;
}

.alternative-font-7 {
	font-family: 'Jost', sans-serif !important;
}

.alternative-font-8 {
	font-family: 'Cormorant', serif !important;
}

/* Gradient Text */
.gradient-text-color {
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
}

.no-backgroundcliptext .gradient-text-color {
	background: transparent !important;
}

/* Small Sup style */
.sup-text-small {
	font-size: 0.5em;
	font-weight: 500;
	top: -.7em;
}

/* Text Color Default */
.text-default,
.text-color-default {
	color: var(--default) !important;
}

/* Marquee */
.marquee {
	overflow: hidden;
	white-space: nowrap;
}

/* Mark */
.mark {
	&.mark-gradient {
		position: relative;
		z-index: 0;
		&:before {
			content: '';
			height: 30%;
			width: 100%;
			bottom: 15%;
			position: absolute;
			left: -2%;
			z-index: -1;
		}
	}
}

@each $name, $var in $colors-list {
    .mark.mark-gradient {
        &.mark-gradient-#{$name} {
            &::before {
                background: var(--#{$name});
                background: linear-gradient(90deg, var(--#{$name}) 0%, rgba(255, 255, 255, 0) 100%);
            }
        }
    }
}