/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */
/* BOOK AUTHOR */
.book-authors{
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 32px;
}

.book-authors img{
	border-radius:12px;
	margin-bottom:12px;
	height: 300px;
    width: 100%;
    object-fit: cover;
}

.book-authors h2{
	font-size:24px;
	line-height:32px;
}


@media screen and (max-width:768px) {
	.book-authors{
		grid-template-columns: 1fr 1fr;
		grid-gap: 24px;
	}
}

@media screen and (max-width:480px) {
	.book-authors{
		grid-template-columns: 1fr 1fr;
		grid-gap: 16px;
	}
}