/* Styles for Scobe Blog Scraper */
.sbs_container {
	display:flex;
	flex-direction: column;
	justify-content: space-between;
	width:100%;
	padding:0;
}
.sbs_card {
	padding:0;
    width: 100%;
    position: relative;
    z-index: 1;
    border: 1px solid #e3e3e3;
    -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 13%), 0 3px 6px rgb(0 0 0 / 10%);
    box-shadow: 0 3px 6px rgb(0 0 0 / 13%), 0 3px 6px rgb(0 0 0 / 10%);
    display: block;
    background-color: #fff;
	margin-bottom:2em;
}
a.sbs_entry_container {	
	position: relative;
	/*display:block;*/
	text-decoration: none;
	text-align: center;
	display:flex;
	flex-direction: column;
	justify-content:space-between;
}
a.sbs_entry_container:is(:hover,:active:focus) h3,
a.sbs_entry_container:is(:hover,:active:focus) small.sbs_dateline,
a.sbs_entry_container:is(:hover,:active:focus) img.sbs_image {
	text-decoration: none;
	opacity: 1; /* Theme conflict */
}

.sbs_img_container {
	background-image:url("../img/scope-logo-placeholder.png");
	background-position: center;
	background-size: 80%;
	background-repeat:no-repeat;
	aspect-ratio: 451 / 226;
	margin:0;
	overflow: hidden;
}
.sbs_image {
	object-fit: cover;
	object-position: center center;
	margin:0;
	min-width: 100%;
}
.sbs_text_container {
	width:100%;
	padding:0.3em 1em 1em 1em;
	text-align: left;
}
small.sbs_dateline {
	font-size:0.8em;
	margin-bottom:0.2em;
	padding:0;
	text-decoration: none;
	display:block;
	color:#7F7776; /* Stanford Stone */
}
.sbs_container .sbs_entry_container h3 {
	font-size: 1em;
	margin-top:0.3em;
	margin-bottom:0.3em;
	text-decoration: none;
}
.sbs_goto_source_link {
	display:inline-block;
	padding:6px 8px;
	text-decoration: none;
	margin:0 auto 0.3em auto;
	font-weight: normal;
	white-space: nowrap;
	background-color:#008566; /* Digital Green */
	color:#ffffff;
}
.sbs_goto_source_link:is(:hover,:active:focus) {
	background-color:#006F54; /* Dark Digital Green */
	text-decoration: underline;
}


/* Transitions */
.sbs_goto_source_link {	
	transition: background-color 500ms ease;
}


@media (min-width:650px){
	.sbs_container {
		flex-direction: row;
	}
	a.sbs_entry_container {
		max-width:32%;
		display:flex;
		flex-direction: column;
		justify-content:space-between;
	}
	.sbs_text_container {
		
	}
	.sbs_goto_source_link {
		
	}
}