/*
 Theme Name:  Divi Child Theme
 Theme URI:    https://divilife.com
 Description:  Child Theme for Divi
 Author:       Tim Strifler
 Author URI:   https://divilife.com
 Template:     Divi
 Version:      1.0.0
*/

/*****Add any custom CSS below this line*****/

/*style the Divi blog link text as a button*/
.et_pb_post a.more-link {
  color: #ffffff;
	background: #CF5248;
	border: 2px solid #51CFC8;
	padding: .7em 1.3em;
	margin-top: 20px;
	border-radius: 50px;
	text-transform: capitalize;
	display: inline-block;
	transition: all 0.3s ease-in-out;
}
/*style the Divi blog link text as a button on hover*/
.et_pb_post a.more-link:hover {
	background: transparent;
	color: #CF5248;
	border: 2px solid #51CFC8;
	transition: all 0.3s ease-in-out;
}
/*add an icon to the Divi blog read more button*/
.et_pb_post .more-link:after {
	content: "\24";
	font-family: ETModules;
	vertical-align: middle;
	margin-left: 10px;
}