/*
Theme Name: Delaware Call
Author: Karl Stomberg
Author URI: https://delaware-call.org
Description: This is the theme for the Delaware Call site
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: 
Text Domain: call

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents
 *
 * 1.0 - General Styles
 *     - 1.1 - Normalize
 *     - 1.2 - Typography
 *     - 1.3 - Elements
 *     - 1.4 - General Content
 * 2.0 - Header
 * 3.0 - Specific Pages
 *     - 3.1 - Home Page
 *     - 3.2 - Plain Posts
 *     - 3.2 - Plain Page
 *     - 3.4 - Author Page
 *     - 3.5 - Search Results
 * 4.0 - Sidebar Styling
 * 5.0 - Navigation
 * 6.0 - Menus
 * 7.0 - Accessibility
 * 8.0 - Alignments
 * 9.0 - Clearings 
 * 10.0 - Footer
 * 11.0 - Media
 *
 */


/* 1.1 - Normalize - Normalizing styles have been helped along thanks to the fine work of Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/ */

html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
    margin: 0px;
    background-color: #FFF;
}

body {
	margin: 0;
}

div#wpadminbar{
    display: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: 700;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0;
}

hr {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

code,
kbd,
pre,
samp {
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

select {
	text-transform: none;
}

button {
	overflow: visible;
}

button,
input,
select,
textarea {
	max-width: 100%;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
	opacity: .5;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input[type="checkbox"],
input[type="radio"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-right: 0.4375em;
	padding: 0;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-outer-spin-button,
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-outer-spin-button,
input[type="week"]::-webkit-inner-spin-button,
input[type="week"]::-webkit-outer-spin-button,
input[type="month"]::-webkit-inner-spin-button,
input[type="month"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #d1d1d1;
	margin: 0 0 1.75em;
	min-width: inherit;
	padding: 0.875em;
}

fieldset > :last-child {
	margin-bottom: 0;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

optgroup {
	font-weight: bold;
}

/* 1.2 - Typography */

body,
button,
input,
select,
textarea {
	color: #1a1a1a;
	font-family: jubilat, Georgia, serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-weight: 700;
	margin: 0;
	text-rendering: optimizeLegibility;
}

p {
	margin: 0 0 1.75em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

address {
	font-style: italic;
	margin: 0 0 1.75em;
}

code,
kbd,
tt,
var,
samp,
pre {
	font-family: Inconsolata, monospace;
}

pre {
	border: 1px solid #d1d1d1;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.3125;
	margin: 0 0 1.75em;
	max-width: 100%;
	overflow: auto;
	padding: 1.75em;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

code {
	background-color: #d1d1d1;
	padding: 0.125em 0.25em;
}

abbr,
acronym {
	border-bottom: 1px dotted #d1d1d1;
	cursor: help;
}

mark,
ins {
	background: #007acc;
	color: #fff;
	padding: 0.125em 0.25em;
	text-decoration: none;
}

big {
	font-size: 125%;
}

.entry-title{
    font-family: jubilat, serif;
    color: #000;
}

.entry-summary p{
    font-family: jubilat, serif;
    color: #999;
    font-weight: 500;
}

.entry-writer a, .entry-writer span{
    font-family: proxima-nova-condensed, "Helvetica Neue", sans-serif;
    color: #000;
    text-transform: uppercase;
}


/* 1.3 - Elements */

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	background: #1a1a1a;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #d1d1d1;
	border: 0;
	height: 1px;
	margin: 0 0 1.75em;
}

ul,
ol {
	margin: 0 0 1.75em 1.25em;
	padding: 0;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
	margin-left: 1.5em;
}

li > ul,
li > ol {
	margin-bottom: 0;
}

dl {
	margin: 0 0 1.75em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 0 1.75em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
	vertical-align: middle;
}

del {
	opacity: 0.8;
}

table,
th,
td {
	border: 1px solid #d1d1d1;
}

table {
	border-collapse: separate;
	border-spacing: 0;
	border-width: 1px 0 0 1px;
	margin: 0 0 1.75em;
	/* Prevents HTML tables from becoming too wide */
	width: 100%;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

th {
	border-width: 0 1px 1px 0;
	font-weight: 700;
}

td {
	border-width: 0 1px 1px 0;
}

th,
td {
	padding: 0.4375em;
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
	color: #686868;
	font-family: jubilat, serif;
}

:-moz-placeholder {
	color: #686868;
	font-family: jubilat, serif;
}

::-moz-placeholder {
	color: #686868;
	font-family: jubilat, serif;
	opacity: 1;
	/* Since FF19 lowers the opacity of the placeholder by default */
}

:-ms-input-placeholder {
	color: #686868;
	font-family: jubilat, serif;
}


/* 1.4 - General Content */

.site {
	background-color: #fff;
}

.site-inner {
	margin: 0 auto;
	max-width: 1400px;
    min-height: 70vh;
    padding: 0px 60px;
	position: relative;
}

.site-content {
	word-wrap: break-word;
    margin-top: 200px;
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

.site-main {
	margin-bottom: 3.5em;
}

.site-main > :last-child {
	margin-bottom: 0;
}


/* 2.0 - Header - Including the masthead and the menu right below */

.site-header {
	width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
    background-color: #000;
}

.site-header-main {
	width: 100%;
    background-color: #000;
    max-width: 1280px;
    margin: auto;
}

.site-header-main .header-top{
    display: flex;
    width: 90%;
    margin: auto;
}

.site-header-main .header-top #hamburger{

    display: none;
    
}

.header-top .site-branding {
	width: 100%;
    display: block;
	overflow: hidden;
    padding: 16px 0px 16px 0px;
}

.header-top .site-branding img{
    display: inline-block;
    height: 48px;
    width: auto;
    transition: .2s ease-in all;
}

.site-branding a {
	color: #FFF;
}

.site-branding a:hover {
	color: #FFF;
}

.site-title {
	font-family: jubilat, serif;
    text-transform: uppercase;
	font-size: 48px;
	font-weight: 700;
	line-height: 48px;
    text-align: left;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    font-weight: 600;
    transition: .2s ease-in all;
}

.header-top .header-right{
    margin-top: 24px;
}

.header-top .header-right .search-form {
	position: relative;
    margin-top: 0px;
}

.header-top .header-right input[type="search"].search-field {
	border-radius: 16px;
    width: 250px;
    height: 32px;
    background-color: #000;
    border: #DDD solid 1px;
    padding-left: 16px;
    font-size: 16px;
    font-family: proxima-nova-condensed, "Helvetica Neue", sans-serif;
    color: #999;
}

.header-top .header-right input[type="search"].search-field:focus{
    
    background-color: #DDD;
    color: #333;
    
}

.header-menu{
    
    width: 100%;
    
}

.header-menu #menu-header-links{
    
    margin: 0px;
    margin-top: 8px;
    padding: 0px;
    display: flex;
    
}

.header-menu #menu-header-links li{
    
    list-style: none;
    flex: 1;
    margin: 0px 8px;
    border-top: #FFF 1px solid;
    
}

.header-menu #menu-header-links li a{
    
    display: block;
    width: 100%;
    padding: 8px 16px;
    text-align: center;
    font-family: proxima-nova-condensed, "Helvetica Neue", sans-serif;
    color: #FFF;
    text-transform: uppercase;
    font-size: 20px;
    transition: .2s linear all;
    
}

.header-menu #menu-header-links li a:hover{
    
    background-color: #333;
    
}



/* 3.1 - Home Page Specifics */

.featured-container .featured-story{
    
    width: 100%;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    padding-bottom: 60px;
    border-bottom: 2px dotted #000;
    margin-bottom: 60px;
    
}

.featured-container .featured-story .featured-thumbnail{
    
    width: 50%;
    display: block;
    align-self: stretch;
    background-size: cover;
    background-position: center;
    background-color: #999;
    
}

.featured-container .featured-story .featured-info{
    
    flex: 1;
    padding: 60px 40px;
    
}

.featured-container .featured-story:hover a{
    
    text-decoration: underline;
    
}

.featured-container .featured-story .featured-info .entry-title{
 
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1em;
    
}

.featured-container .featured-story .featured-info .entry-title a{
    
    color: #000;
    
}

.featured-container .featured-story .featured-info .entry-summary{
 
    font-size: 24px;
    line-height: 1em;
    
}

.featured-container .featured-story .featured-info .entry-writer{
    
    display: block;
    margin-top: -16px;
    
}

.featured-container .featured-story .featured-info .entry-writer a{
    
    font-size: 24px;
    text-decoration: underline;
    
}

.featured-container .featured-story .featured-info .entry-writer span{
    
    font-size: 24px;
    
}

.featured-container .featured-story .featured-info .entry-writer .category-type{
    
    display: inline-block;
    padding: 0px 10px;
    height: 38px;
    margin-right: 2px;
    
}

.featured-container .featured-story .featured-info .entry-writer .category-type span{

    color: #FFF;
    margin: 0px;
    padding: 0px;
    display: inline-block;
    
}

.featured-container .featured-story .featured-info *{
 
    hyphens: none;
    
}

.posts .article-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.posts .article-list .status-publish{
    
    width: 380px;
    margin-bottom: 60px;
    
}

.posts .article-list .status-publish:hover a{
    
    text-decoration: underline;
    
}

.posts .article-list .status-publish .entry-thumbnail{
    
    display: block;
    width: 380px;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #999;
    
}

.posts .article-list .status-publish .entry-info{
    
    padding: 0px;
    margin-top: 6px;
    
}

.posts .article-list .status-publish .entry-info *{
 
    hyphens: none;
    
}

.posts .article-list .status-publish .entry-title{
    
    text-align: left;
    font-size: 24px;
    max-width: inherit;
    margin-top: 4px;
    margin-bottom: 0px;
    line-height: 1em;
    
}

.posts .article-list .status-publish .entry-title a{
    
    color: #000;   
    
}

.posts .article-list .status-publish .entry-summary p{
    
    text-align: left;
    font-size: 24px;
    max-width: inherit;
    margin-bottom: 0px;
    
}

.posts .article-list .status-publish .entry-writer a{
    
    text-decoration: underline;
    font-size: 16px;
    
}

.posts .article-list .status-publish .entry-writer span{
    
    font-size: 16px;
    
}

.posts .article-list .status-publish .entry-writer .category-type{
    
    display: inline-block;
    padding: 0px 10px;
    height: 24px;
    transform: translateY(2px);
    margin-right: 2px;
    
}

.entry-writer .uncategorized{
    
    background-color: #000;
    
}

.entry-writer .articles{
    
    background-color: #00B;
    
}

.entry-writer .audio{
    
    background-color: #090;
    
}

.entry-writer .commentary{
    
    background-color: #B00;
    
}

.posts .article-list .status-publish .entry-writer .category-type span{

    color: #FFF;
    margin: 0px;
    padding: 0px;
    transform: translateY(-2px);
    display: inline-block;
    
}


/* 3.2 - Plain Posts */

.single .post{
    
    display: block;
    
}

.single #commentary-disclosure {
    
    font-size: 16px;
    text-align: center;
    max-width: 1200px;
    background-color: #F99;
    margin: auto;
    line-height: 1.2em;
    padding: 1em;
    display: block;
    margin-bottom: 2em;
    font-family: Georgia, serif;
    
}

.single .entry-title{
    
    font-size: 64px;
    text-align: center;
    max-width: 800px;
    margin: auto;
    hyphens: none;
    line-height: 1em;
    margin-bottom: 8px;
    
}

.single .entry-summary p{
    
    font-size: 32px;
    line-height: 1em;
    text-align: center;
    margin: auto;
    hyphens: none;
    margin-top: 8px;
    margin-bottom: 8px;
    
}

.single .entry-writer{
    
    text-align: center;
    margin-top: 16px;
    margin-bottom: 16px;
    
    
}

.single .entry-writer a{
    
    font-size: 24px;
    text-decoration: underline;
    
}

.single .entry-writer span{
    
    font-size: 24px;
    
}

.single .post-thumbnail img{
    
    max-width: 800px;
    height: auto;
    display: block;
    margin: auto;
    margin-top: 16px;
    
}

.single .post-thumbnail .ccfic{
    
    padding: 10px 10px 10px 10px;
    color: #999;
    text-align: center;
    font-size: 14px;
	max-width: 800px;
	margin: auto;
    
}

.single .post-thumbnail .ccfic-source:before{
	
	content: " | ";
	
}

.single .post-thumbnail .ccfic-source::before{
	
	content: " | ";
	
}

.single .entry-content{

	margin-top: 48px;

}

.single .entry-content .wp-block-columns{
    
    display: flex;
    
}

.single .entry-content .wp-block-column{
    
    flex: 1;
    
}

.single .entry-content .wp-block-column:first-of-type{
    
    padding-right: 36px;
    border-right: 1px solid #000;
    
}

.single .entry-content .wp-block-column:last-of-type{
    
    padding-left: 36px;
    
}

.single .entry-content p{
    
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: Georgia, serif;
    font-size: 18px;
    
}

.single .entry-content ul{
    
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2em;
    font-family: Georgia, serif;
    font-size: 18px;
    
}

.single .entry-content h1{
    
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: jubilat, Georgia, serif;
    font-size: 48px;
    line-height: 1em;
    margin-top: 16px;
    margin-bottom: 16px;
    
}

.single .entry-content h2{
    
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: jubilat, Georgia, serif;
    line-height: 1em;
    font-size: 32px;
	margin-top: 2em;
    margin-bottom: 1em;
    
}

.single .entry-content .easy-footnote a sup::before{
	
	content: '[';
	
}

.single .entry-content .easy-footnote a sup::after{
	
	content: ']';
	
}

.single .entry-content .easy-footnote a{
	
	text-decoration: none;
	
}

.single .entry-content hr{
    
    margin-top: 64px;
    margin-bottom: 64px;
    height: 10px;
    background-color: #FFF;
    background-image: url(images/text-divider.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
    
}

.single .entry-content .wp-block-image figure img{
    
    width: 100%;
    height: auto;
    
}

.single .entry-content .wp-block-image .aligncenter, .post-template-default .entry-content .wp-block-image .alignnone{
    
    max-width: 800px;
    height: auto;
    
}

.single .entry-content .wp-block-image .alignleft, .post-template-default .entry-content .wp-block-image .alignright{
    
    max-width: 600px;
    height: auto;
    
}

.single .entry-content .wp-caption figcaption{
    
    padding: 10px 10px 10px 10px;
    color: #999;
    text-align: center;
    font-size: 14px;
    
}

.single .entry-content blockquote{
    
    quotes: none;
    color: #666;
    border-top: 2px dotted #000;
    border-bottom: 2px dotted #000;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 2em 2em 2em 2em;
    
}

.single .entry-content blockquote p{
 
    margin-top: 1em;
    margin-bottom: 1em;
    font-style: italic;
    font-family: jubilat, Georgia, serif;
    
}

.single .entry-bio{
    
    margin: auto;
    border-top: 2px solid #000;
    margin-top: 32px;
    padding-top: 32px;
    
}

.single .entry-bio h2{
    
    
    font-size: 32px;
    max-width: 600px;
    margin: auto;
    border-bottom: 1px #000 dashed;
    text-align: center;
    
}

.single .entry-bio p{
    
    max-width: 800px;
    margin: auto;
    font-size: 16px;
    font-family: Georgia, serif;
    text-align: center;
    padding: 16px;
    
}

.single .entry-bio a{
    
    text-decoration: underline;
    
}


/* 3.3 - Plain Pages */

.page{
    
    display: block;
    
}

.page .entry-header{
    
    text-align: center;
    max-width: 800px;
    margin: auto;
    hyphens: none;
    margin-bottom: 64px;
    
}

.page .entry-header .entry-title{
 
    font-size: 48px;
    line-height: 1.75em;
    
}

.page .entry-content p{
    
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: Georgia, serif;
    font-size: 18px;
    
}

.page .entry-content ul{
    
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: Georgia, serif;
    font-size: 18px;
    padding-left: 2em;
    
}

.page .entry-content h1{
    
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: jubilat, Georgia, serif;
    font-size: 48px;
    line-height: 1em;
    margin-top: 16px;
    margin-bottom: 16px;
    
}

.page .entry-content h2{
    
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: jubilat, Georgia, serif;
    line-height: 1em;
    font-size: 32px;
    margin-bottom: 8px;
    
}

.page .entry-content hr{
    
    margin-top: 64px;
    margin-bottom: 64px;
    height: 10px;
    background-color: #FFF;
    background-image: url(images/text-divider.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
    
}

.page .entry-content .paragraph-image figure img{
    
    width: 100%;
    height: auto;
    
}

.page .entry-content .paragraph-image .aligncenter, .post-template-default .entry-content .paragraph-image .alignnone{
    
    max-width: 800px;
    height: auto;
    
}

.page .entry-content .paragraph-image .alignleft, .post-template-default .entry-content .paragraph-image .alignright{
    
    max-width: 600px;
    height: auto;
    
}

.page .entry-content .wp-caption figcaption{
    
    padding: 10px 10px 10px 10px;
    color: #999;
    text-align: center;
    font-size: 14px;
    
}

.page .entry-content blockquote{
    
    quotes: none;
    color: #666;
    border-top: 2px dotted #000;
    border-bottom: 2px dotted #000;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 2em 2em 2em 2em;
    
}

.page .entry-content blockquote p{
 
    margin-top: 1em;
    margin-bottom: 1em;
    font-style: italic;
    font-family: jubilat, Georgia, serif;
    
}

.page .entry-footer{
    
    display: none;
    
}


/* 3.3 - Podcast Player */

.single-podcast .entry-content{
    
    margin-top: 0px;
    
}

.single-podcast .post-thumbnail{
    
    margin-bottom: -20px;
    
}

.single-podcast .podcast_player{
    
    width: 800px;
    display: block;
    margin: auto;
    
}

.single-podcast .podcast_meta{
 
    display: none;
    
}



/* 3.xxx - For the top of all non-post pages */

.site-main .page-header{
    
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
    
}

.site-main .page-header .page-title{
    
    font-size: 48px;
    
}


/* 3.4 - Author Page */

.author .site-main{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.author .site-main .page-header{
    
    width: 100%;
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 2px solid #000;
    margin-bottom: 60px;
    
}

.author .site-main .page-header h1{
    
    font-size: 32px;
    max-width: 600px;
    margin: auto;
    border-bottom: 1px #000 dashed;
    text-align: center;
    
}

.author .site-main .page-header .taxonomy-description{
    
    max-width: 800px;
    margin: auto;
    font-size: 16px;
    font-family: Georgia, serif;
    text-align: center;
    padding: 16px;
    
}

.author .site-main .status-publish{
    
    width: 380px;
    margin-bottom: 60px;
    
}

.author .site-main .status-publish:hover a{
    
    text-decoration: underline;
    
}

.author .site-main .status-publish .entry-thumbnail{
    
    display: block;
    width: 380px;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #999;
    
}

.author .site-main .status-publish .entry-info{
    
    padding: 0px;
    margin-top: 10px;
    
}

.author .site-main .status-publish .entry-info *{
 
    hyphens: none;
    
}

.author .site-main .status-publish .entry-title{
    
    text-align: left;
    font-size: 24px;
    max-width: inherit;
    margin-bottom: 0px;
    line-height: 1em;
    
}

.author .site-main .status-publish .entry-title a{
    
    color: #000;   
    
}

.posts .site-main .entry-summary p{
    
    text-align: left;
    font-size: 24px;
    max-width: inherit;
    margin-bottom: 0px;
    
}

.author .site-main .status-publish .entry-writer a{
    
    text-decoration: underline;
    font-size: 16px;
    
}

.author .site-main .status-publish .entry-writer span{
    
    font-size: 16px;
    
}


/* 3.5 - Search Results */

.search .site-main{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.search-no-results .site-main .page-header{
    
    margin-bottom: 0px;
    
}

.search-no-results .site-main .page-content .search-field{
    
    display: block;
    width: 100%;
    border-radius: 30px;
    height: 60px;
    border: #000 solid 1px;
    padding-left: 30px;
    font-size: 24px;
    font-family: proxima-nova-condensed, "Helvetica Neue", sans-serif;
    color: #000;
    
}

.search-no-results .site-main .page-content .search-field:focus{
 
    background-color: #DDD;
    
}

.search .site-main .status-publish{
    
    width: 380px;
    margin-bottom: 60px;
    
}

.search .site-main .status-publish:hover a{
    
    text-decoration: underline;
    
}

.search .site-main .status-publish .entry-thumbnail{
    
    display: block;
    width: 380px;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #999;
    
}

.search .site-main .status-publish .entry-info{
    
    padding: 0px;
    margin-top: 10px;
    
}

.search .site-main .status-publish .entry-info *{
 
    hyphens: none;
    
}

.search .site-main .status-publish .entry-title{
    
    text-align: left;
    font-size: 24px;
    max-width: inherit;
    margin-bottom: 0px;
    line-height: 1em;
    
}

.search .site-main .status-publish .entry-title a{
    
    color: #000;   
    
}

.search .site-main .entry-summary p{
    
    text-align: left;
    font-size: 24px;
    max-width: inherit;
    margin-bottom: 0px;
    
}

.search .site-main .status-publish .entry-writer a{
    
    text-decoration: underline;
    font-size: 16px;
    
}

.search .site-main .status-publish .entry-writer span{
    
    font-size: 16px;
    
}

.search .site-main .status-publish .entry-writer .category-type{
    
    display: inline-block;
    padding: 0px 10px;
    height: 24px;
    transform: translateY(2px);
    margin-right: 2px;
    
}

.search .site-main .status-publish .entry-writer .category-type span{

    color: #FFF;
    margin: 0px;
    padding: 0px;
    transform: translateY(-2px);
    display: inline-block;
    
}

.search .site-main .no-results{
    
    display: block;
    margin: auto;
    
}

/* 3.6 - Submission Form */

.submission-form{
    
    max-width: 800px;
    margin: auto;
    margin-bottom: 32px;
    padding: 16px;
    border-top: 2px #000 dotted;
    border-bottom: 2px #000 dotted;
    
}

.submission-form label{
    
    display: block;
    font-size: 24px;
    font-weight: bold;
    
}

.submission-form input{
    
    display: block;
    width: 100%;
    font-size: 18px;
    font-family: Georgia, serif;
    margin-bottom: 16px;
    
}

.submission-form textarea{
    
    display: block;
    width: 100%;
    font-size: 18px;
    font-family: Georgia, serif;
    margin-bottom: 16px;
    resize: none;
    
}

.submission-form button{
    
    display: block;
    width: 100%;
    font-size: 18px;
    margin-bottom: 16px;
    
}


/* 4.0 - Sidebar Styling */

.sidebar {
	margin-bottom: 3.5em;
    padding-top: 1.75em;
    border-top: #000 solid 3px;
}

.sidebar .sidebar-title{
    font-size: 32px;
    text-align: center;
    margin-bottom: 16px;
}

.rpwwt-widget ul{
    display: flex;
}

.rpwwt-widget ul li{
    flex: 1;
    padding: 0px 10px 0px 10px;
}

.rpwwt-widget ul li a{
    font-size: 24px;
    color: #000;
    font-weight: bold;
    line-height: 1em;
}

.rpwwt-widget ul li a img{
    display: block;
    width: 100% !important;
    height: auto !important;
}

.rpwwt-widget ul li .rpwwt-post-categories{
    display: none;
}

.rpwwt-widget li .rpwwt-post-excerpt{
    display: none;
}


/* 5.0 - Navigation */

a {
	color: #007acc;
	text-decoration: none;
}

a:hover,
a:focus,
a:active {
	color: #686868;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

.entry-content a,
.taxonomy-description a,
.logged-in-as a,
.comment-content a,
.pingback .comment-body > a,
.textwidget a,
.entry-footer a:hover,
.site-info a:hover {
	box-shadow: 0 1px 0 0 currentColor;
}

.entry-content a:hover,
.entry-content a:focus,
.taxonomy-description a:hover,
.taxonomy-description a:focus,
.logged-in-as a:hover,
.logged-in-as a:focus,
.comment-content a:hover,
.comment-content a:focus,
.pingback .comment-body > a:hover,
.pingback .comment-body > a:focus,
.textwidget a:hover,
.textwidget a:focus {
	box-shadow: none;
}


/* 6.0 - Menus */

.pagination {
	border-top: 4px solid #1a1a1a;
	font-family: jubilat, serif;
	font-size: 19px;
	font-size: 1.1875rem;
	margin: 0 7.6923% 2.947368421em;
	min-height: 56px;
	position: relative;
}

.pagination a:hover,
.pagination a:focus {
	color: #1a1a1a;
}

.pagination .nav-links {
	padding-right: 106px;
	position: relative;
}

/* reset screen-reader-text */
.pagination .current .screen-reader-text {
	position: static !important;
}

.pagination .page-numbers {
	display: none;
	letter-spacing: 0.013157895em;
	line-height: 1;
	margin: 0 0.7368421053em 0 -0.7368421053em;
	padding: 0.8157894737em 0.7368421053em 0.3947368421em;
	text-transform: uppercase;
}

.pagination .current {
	display: inline-block;
	font-weight: 700;
}

.pagination .prev,
.pagination .next {
	display: none !important;
}

.image-navigation,
.comment-navigation {
	border-top: 1px solid #d1d1d1;
	border-bottom: 1px solid #d1d1d1;
	color: #686868;
	font-family: jubilat, serif;
	font-size: 13px;
	font-size: 0.8125rem;
	line-height: 1.6153846154;
	margin: 0 7.6923% 2.1538461538em;
	padding: 1.0769230769em 0;
}

.comment-navigation {
	margin-right: 0;
	margin-left: 0;
}

.comments-title + .comment-navigation {
	border-bottom: 0;
	margin-bottom: 0;
}

.image-navigation .nav-previous:not(:empty),
.image-navigation .nav-next:not(:empty),
.comment-navigation .nav-previous:not(:empty),
.comment-navigation .nav-next:not(:empty) {
	display: inline-block;
}

.image-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before,
.comment-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before {
	content: "\002f";
	display: inline-block;
	opacity: 0.7;
	padding: 0 0.538461538em;
}


/* 7.0 - Accessibility */

/* Text meant only for screen readers */
.says,
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	/* many screen reader and browser combinations announce broken words as they would appear visually */
	word-wrap: normal !important;
}

/* must have higher specificity than alternative color schemes inline styles */
.site .skip-link {
	background-color: #f1f1f1;
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
	color: #21759b;
	display: block;
	font-family: jubilat, serif;
	font-size: 14px;
	font-weight: 700;
	left: -9999em;
	outline: none;
	padding: 15px 23px 14px;
	text-decoration: none;
	text-transform: none;
	top: -9999em;
}

.logged-in .site .skip-link {
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
	font-family: "Open Sans", sans-serif;
}

.site .skip-link:focus {
	clip: auto;
	height: auto;
	left: 6px;
	top: 7px;
	width: auto;
	z-index: 100000;
}


/* 8.0 - Alignments */

.alignleft {
	float: left;
	margin: 0.375em 1.75em 1.75em 0;
}

.alignright {
	float: right;
	margin: 0.375em 0 1.75em 1.75em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 1.75em;
	text-align: center;
}


/* 9.0 - Clearings */

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-content:before,
.site-content:after,
.site-main > article:before,
.site-main > article:after,
.primary-menu:before,
.primary-menu:after,
.social-links-menu:before,
.social-links-menu:after,
.textwidget:before,
.textwidget:after,
.content-bottom-widgets:before,
.content-bottom-widgets:after {
	content: "";
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-content:after,
.site-main > article:after,
.primary-menu:after,
.social-links-menu:after,
.textwidget:after,
.content-bottom-widgets:after {
	clear: both;
}


/* 10.0 - Footer */

.site-footer {
	width: 100%;
    height: 100px;
    background-color: #000;
    margin: 0px;
    padding: 0px;
}


/* 11.0 - Media */

.site .avatar {
	border-radius: 50%;
}

.entry-content .wp-smiley,
.comment-content .wp-smiley,
.textwidget .wp-smiley {
	border: none;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
}

.entry-content a img,
.comment-content a img,
.textwidget a img {
	display: block;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object,
video {
	margin-bottom: 1.75em;
	max-width: 100%;
	vertical-align: middle;
}

p > embed,
p > iframe,
p > object,
p > video {
	margin-bottom: 0;
}

.entry-content .wp-audio-shortcode a,
.entry-content .wp-playlist a {
	box-shadow: none;
}

.wp-audio-shortcode,
.wp-video,
.wp-playlist.wp-audio-playlist {
	margin-top: 0;
	margin-bottom: 1.75em;
}

.wp-playlist.wp-audio-playlist {
	padding-bottom: 0;
}

.wp-playlist .wp-playlist-tracks {
	margin-top: 0;
}

.wp-playlist-item .wp-playlist-caption {
	border-bottom: 0;
	padding: 0.7142857143em 0;
}

.wp-playlist-item .wp-playlist-item-length {
	top: 0.7142857143em;
}


/* 18.0 - Captions */

.wp-caption {
	margin-bottom: 1.75em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0;
}

.wp-caption .wp-caption-text {
	color: #686868;
	font-size: 13px;
	font-size: 0.8125rem;
	font-style: italic;
	line-height: 1.6153846154;
	padding-top: 0.5384615385em;
}


/* 19.0 - Galleries */

.gallery {
	margin: 0 -1.1666667% 1.75em;
}

.gallery-item {
	display: inline-block;
	max-width: 33.33%;
	padding: 0 1.1400652% 2.2801304%;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-1 .gallery-item {
	max-width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-icon img {
	margin: 0 auto;
}

.gallery-caption {
	color: #686868;
	display: block;
	font-size: 13px;
	font-size: 0.8125rem;
	font-style: italic;
	line-height: 1.6153846154;
	padding-top: 0.5384615385em;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}


/* MEDIA QUERIES */

@media (max-width: 1279px) and (min-width: 861px){

    .posts .article-list .status-publish{

        width: 30%;
        margin-bottom: 20px;

    }

    .posts .article-list .status-publish .entry-thumbnail{

        width: 100%;
        height: 200px;
        background-size: cover;
        background-position: center;
        background-color: #999;
        display: inline-block;

    }
    
}

@media (max-width: 860px){
    
    .site-content {
        margin-top: 10vh;
        min-height: 90vh;
    }   
    
    .site-inner {
        padding: 0px 16px;
    }
    
    .site-header-main .header-top{
        
        height: 10vh;
        
    }
    
    .site-header-main .header-top #hamburger{

        display: block;
        height: 5vh;
        width: 5vh;
        position: fixed;
        left: 2.5vh;
        top: 2.5vh;
        background-size: 100% 100%;

    }

    .site-header-main .header-top .site-branding {
        
        display: block;
        text-align: center;
        overflow: hidden;
        margin: auto;
        
    }

    .site-header-main .header-top .site-branding img{
        display: none;
    }

    .site-title {
        font-family: jubilat, serif;
        text-transform: uppercase;
        font-size: 5vh;
        font-weight: 700;
        line-height: 5vh;
        position: fixed;
        right: 2.5vh;
        top: 2.5vh;
        margin-left: 0px;
        text-align: right;
        
    }
    
    .header-menu #menu-header-links{
    
        width: 100%;
        height: 90vh;
        position: fixed;
        left: 0%;
        top: 10vh;
        margin: 0px;
        border-top: 2px #FFF solid;
        overflow-y: scroll;
        display: none;
        padding: 0px;
        background-color: #000;

    }
    
    .header-menu #menu-header-links li{
    
        width: 100%;
        display: block;
        background-color: #000;
        border-bottom: #FFF solid 1px;
        margin: 0px;

    }
    
    .header-menu #menu-header-links li a{
     
        height: 100%;
        width: 100%;
        font-size: 6vh;
        padding-top: 6vh;
        padding-bottom: 6vh;
        
    }

    .header-top .header-right{
        display: none;
    }
    
    .featured-container .featured-story{
    
        width: 100%;
        margin-top: 15px;
		padding-bottom: 30px;
        margin-bottom: 30px;
        display: block;

    }

    .featured-container .featured-story .featured-thumbnail{

        width: 100%;
        height: 40vh;
        align-self: stretch;
        background-size: cover;
        background-position: center;
        background-color: #999;

    }

    .featured-container .featured-story .featured-info{

        padding: 0px;
        margin-top: 30px;

    }

    .featured-container .featured-story .featured-info .entry-title{

        font-size: 32px;
        margin-bottom: 8px;
        line-height: 1em;

    }

    .featured-container .featured-story .featured-info .entry-title a{

        color: #000;

    }

    .featured-container .featured-story .featured-info .entry-summary{

        font-size: 18px;
        line-height: 1em;

    }
    
    .featured-container .featured-story .featured-info .entry-writer a{

        font-size: 24px;
        text-decoration: underline;

    }
    
    .featured-container .featured-story .featured-info .entry-writer span{

        font-size: 24px;

    }
    
    .posts .article-list .status-publish .entry-writer .category-type{
    
        display: inline-block;
        padding: 0px 4px;
        height: 24px;

    }
    
    .posts .article-list .status-publish .entry-writer span.dot{
    
        display: none;
        
    }

    .posts .article-list .status-publish .entry-writer .author{
    
        display: inline-block;
        
    }
    
    .posts .article-list .status-publish .entry-writer .entry-time{
    
        display: none;
        
    }
    
    .search .site-main .status-publish .entry-writer .category-type{
    
        display: inline-block;
        padding: 0px 4px;
        height: 24px;

    }
    
    .search .site-main .status-publish .entry-writer span.dot{
    
        display: none;
        
    }

    .search .site-main .status-publish .entry-writer .author{
    
        display: block;
        
    }
    
    .search .site-main .status-publish .entry-writer .entry-time{
    
        display: none;
        
    }
    
    .site-main .page-header{
    
        margin-top: 16px;
        margin-bottom: 16px !important;

    }

    .site-main .page-header .page-title{

        font-size: 32px;
        line-height: 32px;

    }
    
    .posts{
        
        width: 100%;
        
    }
 
    .posts .article-list{
        
        display: block;
        
    }

    .posts .article-list .status-publish{

        width: 100%;
        height: 200px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;

    }

    .posts .article-list .status-publish .entry-thumbnail{

        flex: 1;
        height: 200px;
        float: left;
        margin-right: 20px;
        background-size: cover;
        background-position: center;
        background-color: #999;

    }

    .posts .article-list .status-publish .entry-info{

        flex: 1;

    }

    .posts .article-list .status-publish .entry-title{

        text-align: left;
        font-size: 24px;
        margin-bottom: 0px;
        line-height: 1em;

    }

    .posts .article-list .status-publish .entry-title a{

        color: #000;   

    }

    .posts .article-list .status-publish .entry-summary p{

        text-align: left;
        font-size: 18px;
        width: 100%;
        margin-bottom: 0px;

    }
    
    .single .site-inner{
        
        padding: 0px;
        
    }

    .single .entry-title{

        font-size: 48px;
        text-align: center;
        line-height: 1em;
        margin-top: 16px;
        margin-bottom: 8px;
        padding: 0px 8px;

    }

    .single .entry-summary p{

        font-size: 24px;
        line-height: 1em;
        text-align: center;
        margin-top: 8px;
        margin-bottom: 8px;
        padding: 0px 8px;

    }

    .single .entry-writer{

        text-align: center;
        margin-top: 16px;
        margin-bottom: 16px;
        padding: 0px 8px;

    }

    .single .entry-writer a{

        font-size: 24px;
        text-decoration: underline;

    }
    
    .single .entry-writer span{

        font-size: 24px;

    }

    .single .post-thumbnail img{

        width: 100%;
        height: auto;
        display: block;
        margin: 0px;
        margin-top: 16px;

    }

    .single .entry-content{

        margin-top: 32px;
        max-width: 100vw;
        overflow-x: scroll;

    }
    
    .single .entry-content .wp-block-columns{
    
        display: flex;
        width: 200vw;

    }

    .single .entry-content .wp-block-column{

        flex: 1;

    }

    .single .entry-content .wp-block-column:first-of-type{

        padding-right: 36px;
        border-right: 1px solid #000;

    }

    .single .entry-content .wp-block-column:last-of-type{

        padding-left: 36px;

    }

    .single .entry-content p{

        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        font-family: Georgia, serif;
        font-size: 18px;
        padding: 0px 16px;

    }
    
    .single .entry-content ul{

        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        font-family: Georgia, serif;
        font-size: 18px;
        padding: 0px 16px;

    }

    .single .entry-content h1{

        margin-left: auto;
        margin-right: auto;
        font-family: jubilat, Georgia, serif;
        font-size: 32px;
        line-height: 1em;
        margin-top: 16px;
        margin-bottom: 16px;
        padding: 0px 16px;

    }

    .single .entry-content h2{

        font-family: jubilat, Georgia, serif;
        font-size: 24px;
        line-height: 1em;
        padding: 0px 16px;

    }

    .single .entry-content hr{

        height: 10px;
        background-color: #FFF;
        background-image: url(images/text-divider.png);
        background-size: auto 100%;
        background-repeat: no-repeat;
        background-position: center;
        margin: 32px 16px;

    }
    
    .single .entry-content .paragraph-image figure{

        width: 100% !important;
        height: auto;
        margin: 0px;
        padding: 16px;

    }

    .single .entry-content img{

        width: 100% !important;

    }

    .single .entry-content .paragraph-image .aligncenter, .single .entry-content .paragraph-image .alignnone, .single .entry-content .paragraph-image .alignleft, .single .entry-content .paragraph-image .alignright{

        float: none;

    }

    .single .entry-content .wp-caption figcaption{

        padding: 10px 10px 10px 10px;
        color: #999;
        text-align: center;
        font-size: 14px;

    }
	
	.page .entry-header{
		
		margin: 16px 0px;
	
	}
	
	.page .entry-header .entry-title{
 
		font-size: 48px;
		line-height: 1.2em;
    
	}
	
	.single-podcast .entry-content{
    
		margin-top: 0px;

	}

	.single-podcast .podcast_player{

		width: 100%;
		display: block;
		margin: auto;

	}
    
    .sidebar {
        display: none;
    }
    
}