/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* Hide images or featured image on mobile only */
@media only screen and (max-device-width: 500px) {
	.hide-on-mobile {
		display: none;
		visibility: hidden;
		size: 0;
		padding: 0;
		margin: 0;
	}
	
	/*Hide single posts featured image only on mobile*/
	.featured-image {
		display: none;
		visibility: hidden;
		size: 0;
		padding: 0;
		margin: 0;
	}
}

/* Make the post entry meta and breadcrumb small */
.entry-meta, .rank-math-breadcrumb {
	font-size: 12px;
}

/* Show last updated date */
.posted-on .updated {
    display: inline-block;
}

/* Add spacing between updated and published */
.posted-on .updated {
	margin-right: 0.5em;
}

/* Add text before updated date */
.posted-on .updated:before {
    content: "Updated: ";
	
}

/* Add spacer between updated and published dates */
.posted-on .updated:after {
    content: ", ";
	
}

/* Add text before published date */
.posted-on .published:before {
	content: "Published: ";
}
