/***
 * Copyright © 2025 Bible Scholastic / Timothy A. Lee. All rights reserved.
 */
.blog_background {
	display: table;
	margin: auto;
	background-color: white;
	color: black;
	height: 100%;
}
.night .blog_background {
	background-color: black;
	color: white;
}
.wrapper-left {
	max-width: 200px;
	min-width: 120px;
}
.wrapperOuter {
	/*width: 900px;*/
	
}
.wrapper-right {
	padding-left: 10px;
	max-width: 300px;
	min-width: 200px;
}
.rightMenuItem {
	background-color: #FFFFFF;
}
.wrapper-bottom {
	color: #aaaaaa;
	background-color: #000020;
}
.footer {
	color: #aaaaaa;
	background-color: #202020;
}
/* Menu Bar */
.menuBar {
	background-color: white;
	width:100%;
	border-bottom: 1px solid lightgrey;
}
/*nav menu*/
ul.menuBarButtons {
	list-style: none;
	background-color: white;
	list-style: none;
	display: flex;
	margin: auto;
	max-width: 880px;
	padding: 4px;
}
.menu-top::after {
    color: rgb(116, 119, 121);
    content: "▼";
    margin-left: 5px;
}
.menu-right::after {
	color: rgb(116, 119, 121);
    content: "►";
    margin-left: 5px;
}
ul.menuBarButtons li a {
    color: black;
    padding: 10px 20px;
    text-decoration: none;
	border:none;
}
ul.menuBarButtons li a:hover:not(.active) {
	color: red;
	}

/* Sub Menus */
.menu-1 {
	position: absolute;
	display: none;
    padding: 8px 2px;
	margin: 0;
	background-color: white;
}
.list-0:hover .menu-1 {
	position: absolute;
	display: block;
}
.list-0 {
	display: inline-block;
}
.list-1 {
	display: block;
}
.list-2 {
	display: block;
}
.list-1:hover .menu-2 {
	display: inline-table;
	background-color: white;
}
.menu-2 {
	position: absolute;
	display: none;
	padding: 8px 0px;
	margin: -8px 0px;
}
div.centre {
    text-align: center;
}
.blogResult {
	padding: 8px 4px;
	overflow: hidden;
}
.groupImageContainer {
	text-align: center;
}
.groupImageContent {
	max-width: 150px;
	max-height: 150px;
	padding: 0px 20px;
	float: left;
}
/*Notes */
.blogHeader {
	font-size: 3em;
	font-family: sans-serif;
}
.blogHeaderText {
	text-align: center;
}

.blog-sub-header {
	text-align: center;
}
/*Header*/
.blogTitle {
	color: white;
	text-shadow: -1px 0 grey, 0 1px grey, 1px 0 grey, 0 -1px grey;
	vertical-align: top;
	display: inline;
	margin-bottom: 0;
	font-size: 5em;
}
.blog-subtitle {
	color: white;
	text-shadow: -1px 0 grey, 0 1px grey, 1px 0 grey, 0 -1px grey;
	vertical-align: top;
	display: inline;
	margin-bottom: 0;
	font-size: 2em;
}
.blogTime {
}
.author {
	text-align: center;
}
.blogContent {
	color: #444444;
	/*font-family: serif;*/
	line-height: 1.6em;
}
.tabSection {
}
.tabSection ::selection {
  background: #BBDDBB;
}
.tabSection ::-moz-selection {
  background: #BBDDBB;
}
.note-list {
	border: solid 1px #ccccdd;
	background-color: #eeeeff;
	color: grey;
	margin: 4px 0px;
	border-radius: 2px;
	font-size: 13pt;
	cursor: pointer;
	padding: 5px;
	display: flex;
	max-width: 240px;
}
.note-list:hover {
	color: navy;
}
.list-number {
	color: red;
	font-weight: bold;
}
.blog-link {
	border: solid 1px #ccccdd;
	background-color: #eeeeff;
	color: grey;
	margin: 4px 0px;
	border-radius: 2px;
	font-size: 11pt;
	cursor: pointer;
	padding: 5px;
}
.blog-link:hover {
	color: navy;
}
.bible-item-link {
	border: solid 1px #ccccdd;
	background-color: #eeeeff;
	color: grey;
	margin: 4px 0px;
	border-radius: 2px;
	cursor: pointer;
	padding: 4px;
}
.bible-item-link:hover {
	color: navy;
}
/*Tags & Categories*/
.tag {
	background-color: #eeeeff;
	margin: 2px;
	padding: 4px;
	border: solid 1px #ccccdd;
	border-radius: 	3px;
}
.tag:hover {
	color: navy;
}
.category {
	color: grey;
	background-color: #eeeeff;
	margin: 2px;
	padding: 4px;
	border: solid 1px #ccccdd;
	border-radius: 	3px;
}
.category:hover {
	color: navy;
}
/*Comments*/
.commentsBoxLink {
	cursor: pointer;
	width:95%;
	background-color: #aabbaa;
	text-align: center;
    padding: 8pt;
    border: 1px solid grey;
}
.commentsBoxLink{
	background-color: #bbccbb;
}
.continueReading::before {
    content: "... Continue reading";
}
.continueReading {
	color: #228800;
}
.groupDisplayName {
		text-align: center;
}

.bio-photo {
	float: left;
	padding: 1em;
}
/*Media Queries */
@media screen and (min-width: 640px) {
	.blogContent {
		font-size: 1.3em;
	}
}
@media screen and (max-width: 400px) {
	.menu-1 {
		display: none;
	}
	.menu-1:hover {
		display: block;
		position: initial;
		width: 100vw;
		left: 0px;
		box-sizing: border-box;
	}
	.menu-2 {
		display: block;
		position: initial;
		width: 100vw;
		box-sizing: border-box;
	}
	ul.menuBarButtons li a {
		padding: 8px;
	}
	.blogTitle {
		font-size: 3em;
	}
	.blogHeader {
		font-size: 2em;
	}
}