/**
 *  Theme Name: Kylee Cooks
 *  Theme URI: https://www.oncecoupled.com
 *
 *  Description: Custom Genesis child theme. Made with love!
 *  Tags: custom-made, genesis, child-theme
 *
 *  Author: Once Coupled
 *  Author URI: https://www.oncecoupled.com
 *
 *  Version: 1.0.0
 *  Template: genesis
 *  Template Version: 3.0.2
 *
 *  Text Domain: once-coupled-kylee-cooks
 *  License: All rights reserved.
 *
 *  Notes: primarily color, font, & layout changes to
 *  elements common to *most* of our themes. #4
 */


/* ================================
[ Common ]
================================ */

/* ---------- [ Table of Contents ] ---------- */

/**
 * Notes
 * - TOC (you are here)
 *
 * Navigation
 * - Nav: Footer
 * - Nav: Header
 * - Nav: Primary
 * - Nav: Privacy
 *
 * Containers
 *
 * Sections
 * - Header
 * - Site Footer
 *
 * Content
 * - Author Box
 * - Breadcrumbs
 * - Titles
 * - Entries
 */


/* ================================
[ Navigation ]
================================ */

/* ---------- [ Nav: Footer ] ---------- */

@media screen and (min-width: 1024px) { /* container hidden on mobile */
	.nav-footer {
		font-size: 16px;
	}

	.nav-footer .menu {
		text-align: left;
	}

	.nav-footer .menu {
		column-count: 2;
	}

	.nav-footer .menu-item {
		display: block;

		margin: 0;
	}

	.nav-footer .menu-item a {
		display: block;
		padding: 4px 0;
	}
}

/* ---------- [ Nav: Header ] ---------- */

@media screen and (min-width: 1024px) {
	.nav-header {
		margin-right: 19px;
		margin-top: -2px;
	}

	.nav-header .menu-item {
		border-left: 1px solid #343434;
	}

	.nav-header .menu-item:first-child {
		border-left: 0;
	}

	.nav-header .menu-item a {
		font-size: 12px;
		text-transform: lowercase;
		padding: 0 16px;
	}

	.nav-header .menu-item:first-child a {
		padding-left: 0;
	}

	.nav-header .menu-item:last-child a {
		padding-right: 0;
	}
}

/* ---------- [ Nav: Primary ] ---------- */

.nav-primary {
	position: fixed;
	z-index: 99999999;
	top: 72px;
	left: 0;
	display: none;
	overflow-y: auto;
	width: 100%;
	height: calc(100% - 72px); /* height of sticky header */
	background: #343434;
}

.admin-bar .nav-primary {
	/* height of admin bar (46px) + sticky header */
	top: 118px;

	height: calc(100% - 118px);
}

@media screen and (min-width: 783px) {
	.admin-bar .nav-primary {
		/* height of admin bar (32px) + sticky header */
		top: 104px;

		height: calc(100% - 104px);
	}
}

@media screen and (min-width: 1024px) {
	.nav-primary,
	.admin-bar .nav-primary {
		top: 0;
		height: auto;
	}

	.nav-primary {
		position: relative;
		z-index: auto;
		left: initial;
		display: block;
		overflow: visible;
		width: 100%;
		background: transparent;
        margin-top: -60px;
        min-height: 60px;
	}
}

@media screen and (max-width: 1023px) {
	.nav-primary .wrap {
		max-width: 100%;
	}
}

@media screen and (min-width: 1024px) {
	.nav-primary > .wrap {
		position: relative;
		padding-left: 380px;
	}
}

.nav-primary > .wrap,
.nav-primary .menu {
	height: 100%;
}

@media screen and (min-width: 1024px) {
	.nav-primary .menu {
		position: static;
		z-index: 9999;
		clear: none;
	}
}

.mobile-nav-container {
	border-bottom: 1px solid #000;
	margin-bottom: 12px;
}

/* [ Primary Nav - Menu Items ] */

.nav-primary .menu-item {
	display: block;
	margin: 0;
	border-top: 1px solid #000;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 16px;
}

@media screen and (min-width: 1024px) {
	.nav-primary .menu-item {
		display: inline-block;

		text-align: center;

		border: 0;

		flex: 1 1 auto;
	}
}

.nav-primary .menu > li:last-of-type {
	margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
	.nav-primary .menu > li:last-of-type {
		margin-bottom: 0;
	}

	.nav-primary .mobile-nav-container {
		display: none;
	}
}

.nav-primary .social-container {
	display: inline-block;
	margin: 0 0 12px 20px;
	list-style-type: none;
}

@media screen and (min-width: 1024px) {
	.nav-primary .social-container {
		position: absolute;
		top: 36px;
		right: 164px;

		margin: 0;
		padding: 0;
	}

	.nav-primary .menu > .menu-item:last-of-type {
		border-bottom: 0;
	}
}

.nav-primary .menu-item a {
	position: relative;
	display: block;
	min-height: 48px;
	padding: 16px 48px 16px 24px;
	color: #fff;
}

@media screen and (min-width: 1024px) {
	.nav-primary .menu-item a {
		min-height: auto;
		padding: 12px 8px;
	}

	.nav-primary .menu > .menu-item > a::before {
		content: "";
		position: absolute;
		top: 0;
		left: 10px;
		width: calc(100% - 16px);
		height: 2px;
		background-color: #000;
		transform: scaleX(0);
		transition: all 250ms ease;
	}

	.nav-primary .menu > .menu-item > a:hover::before {
		transform: scaleX(1);
	}

	.nav-primary .menu > .menu-item > a {
		position: relative;

		color: #000;
	}

	.nav-primary .menu > .menu-item > a:hover {
		text-decoration: none;
	}

	.nav-primary .menu > .menu-item:last-of-type > a {
		padding-right: 0;
	}

	.nav-primary .menu > .menu-item.menu-item-has-children > a {
		padding-right: 24px;
	}
}

/* [ Primary Nav - Sub-menu ] */

@media screen and (min-width: 1024px) {
    .nav-primary .genesis-nav-menu > .menu-item > .sub-menu > .menu-item:first-of-type::before,
	.nav-primary .genesis-nav-menu > .menu-item > .sub-menu > .menu-item:first-of-type::after {
		content: none;
	}
}

.nav-primary .sub-menu-toggle {
	position: absolute;
	top: 0;
	right: 0;

	display: block;

	width: 100%;
	height: 48px;
	padding: 0;
	padding-right: 20px;

	text-align: right;

	color: #fff;
	background: transparent;
}

@media screen and (min-width: 1024px) {
	.nav-primary .sub-menu-toggle {
		display: none;
	}

	.nav-primary .menu > .menu-item > .sub-menu-toggle {
		top: 9px;
		right: 8px;
		display: inline-block;
		width: 16px;
		height: 16px;
		padding-right: 0;
		pointer-events: none;
		color: #000;
		font-size: 16px;
	}

	.nav-primary .menu > .menu-item:hover > .sub-menu-toggle {
		color: #666;
	}
}

.nav-primary .sub-menu .sub-menu-toggle {
	top: 0;

	height: 46px;
}

.nav-primary .sub-menu {
	display: none;

	background: #000;
}

@media screen and (min-width: 1024px) {
	.nav-primary .sub-menu {
		background: #343434;
	}

	.nav-primary .menu > .menu-item > .sub-menu {
		border-radius: 3px;
	}
}

.nav-primary .sub-menu .menu-item {
	border-color: #343434;
	font-size: 14px;
}

@media screen and (min-width: 1024px) {
	.nav-primary .sub-menu .menu-item a {
		font-family: 'Work Sans', sans-serif;
		text-transform: none;
		letter-spacing: 0;
		font-size: 12px;
	}

	.nav-primary .sub-menu .menu-item:hover > a {
		background: #231f20;
	}

    .nav-primary .sub-menu .menu-item:first-child > a {
    	border-radius: 3px 3px 0 0;
    }

    .nav-primary .sub-menu .menu-item:last-child > a {
    	border-radius: 0 0 3px 3px;
    }

	.nav-primary .menu > .menu-item > .sub-menu {
		/* first sub-menu only */
		top: 40px; /* height of menu item */
	}
}

.nav-primary .sub-menu a {
	min-height: 36px;
	padding: 16px 48px 16px 40px;
}

@media screen and (min-width: 1024px) {
	.nav-primary .sub-menu a {
		min-height: auto;

		border:2px solid transparent
	}

	.nav-primary .sub-menu a:hover {
		text-decoration: none;

		opacity: 1;

		border-bottom-color: #fff;
	}

	.nav-primary .sub-menu .menu-item:last-child a {
		border-bottom-color: transparent;
	}

	.nav-primary .menu .sub-menu a {
		padding: 9px 12px 8px;
	}

	.nav-primary .menu > .menu-item > .sub-menu .menu-item:first-of-type > a {
		padding-top: 12px;
	}

	.nav-primary .menu > .menu-item > .sub-menu .menu-item:last-of-type > a {
		padding-bottom: 12px;
	}

	.nav-primary .sub-menu .sub-menu {
		margin: 0 0 0 149px;

		background: #231f20;
	}

	.nav-primary .sub-menu .sub-menu .menu-item:hover > a {
		background: #343434;
	}
}

.nav-primary .sub-menu .sub-menu a {
	padding-left: 60px;
}

@media screen and (min-width: 1024px) {
	.nav-primary .sub-menu .sub-menu a {
		padding-left: 12px;
	}
}

/* [ Nav Primary Extras ] */

.nav-primary .mobile-menu-cta {
	display: inline-block;
	margin: 0 8px 20px 20px;
}

.nav-primary .mobile-menu-cta .cta {
	display: inline-block;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size: 15px;
	padding: 8px 12px 4px;
}

.nav-primary .mobile-menu-cta .icon-font {
	font-size: 120%;
	margin-right: 8px;
	vertical-align: middle;
	position: relative;
	top: -4px;
}

.nav-primary .mobile-menu-cta .icon-font::before {
	margin: 0;
}

@media screen and (min-width: 1024px) {
	.nav-primary .mobile-menu-cta,
	.nav-primary .social-container {
		display: none;
	}
}

.nav-primary .header-side {
	display: none;
}

@media screen and (min-width: 1024px) {
	.nav-primary .header-side {
		display: block;
		max-width: 180px;
		float: right;
	}

	.nav-primary .header-side input[type="search"] {
		font-size: 15px;
	}

	.nav-primary .header-side .search-submit-icon {
		top: 0;
	}

	.nav-primary .header-side ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
		text-transform: lowercase;
	}

	.nav-primary .header-side ::-moz-placeholder { /* Firefox 19+ */
		text-transform: lowercase;
	}
}

/* ---------- [ Nav: Privacy ] ---------- */

.nav-privacy {
	display: inline-block;
}

.nav-privacy .menu-item a {
	padding: 8px;

	color: #fff;
}

@media screen and (min-width: 1024px) {
	.nav-privacy .menu-item a:hover {
		opacity: 1;
	}
}

.nav-privacy .menu > .menu-item:first-of-type a {
	padding-left: 0;
}

.nav-privacy .menu > .menu-item:last-of-type a {
	padding-right: 0;
}


/* ================================
[ Containers ]
================================ */

body {
	margin-top: 72px;
}

@media screen and (min-width: 1024px) {
	body {
		margin-top: 0 !important;
	}
}


/* ================================
[ Sections ]
================================ */

/* ---------- [ Header ] ---------- */

/* [ Desktop Sticky Header ] */

@media screen and (min-width: 1024px) {
	.desktop-sticky-header {
		background-color: #fff;
		position: sticky;
		overflow: visible;
		padding-bottom: 16px;
		margin-bottom: -16px;
		top: 0;
		z-index: 9999;
	}

	.admin-bar .desktop-sticky-header {
		top: 32px;
	}
}

.site-header {
	position: fixed;
	z-index: 999999999;
	top: 0;
	left: 0;

	overflow: hidden;

	width: 100%;
	height: 72px; /* helps with JS consistency */

	background: #fff;
	-webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
	   -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
	        box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 1024px) {
	.site-header {
		position: relative;

		overflow: visible;

		height: auto !important; /* to overwrite inline styles added by js, if the user resizes their browser */

		background: transparent;
		-webkit-box-shadow: none;
		   -moz-box-shadow: none;
		        box-shadow: none;
	}
}

.admin-bar .site-header {
	top: 46px;
	z-index: 9999;
}

@media screen and (min-width: 783px) {
	.admin-bar .site-header {
		top: 32px;
	}
}

@media screen and (min-width: 1024px) {
	.site-header,
	.admin-bar .site-header {
		z-index: auto;
		top: 0;
	}
}

.site-header::after {
	content: '';
	display: block;
	width: 100%;
	height: 4px;
	background: #000;
    background: linear-gradient(90deg, rgba(178,77,84,1) 20%, rgba(53,112,119,1) 20%, rgba(53,112,119,1) 40%, rgba(199,139,48,1) 40%, rgba(199,139,48,1) 60%, rgba(178,191,190,1) 60%, rgba(178,191,190,1) 80%, rgba(126,127,92,1) 80%);
    position: absolute;
    bottom: 0;
    left: 0;
}

@media screen and (min-width: 1024px) {
    .site-header::after {
    	content: none;
    }
}

.site-header > .wrap {
	position: relative;
}

@media screen and (max-width: 767px) {
	.site-header > .wrap {
		max-width: 100%; /* remove padding so we can get the spacing pixel perfect (add space left of logo, but not right of search toggle, which has built-in padding) */
	}
}

/* [ Logo ] */

.title-area {
	display: inline-block;
	width: 74.4%;
}

@media screen and (min-width: 1024px) {
	.title-area {
		position: relative;
		z-index: 9;
		display: block;
		float: left;
		width: 352px;
		height: 84px;
		margin: 16px auto 0;
	}

	.title-area .site-title {
		height: 100%;
	}
}

.title-area .site-title a {
	display: block;

	width: 100%;
	height: 68px;
	margin: 0 auto;

	-webkit-transition: opacity 400ms;
	        transition: opacity 400ms;
	text-indent: -9999px;

	background: url(/wp-content/themes/once-coupled-kylee-cooks/assets/images/logo.svg) no-repeat left 10px center;
	background-size: 96%;
}

@media screen and (min-width: 375px) {
	.title-area .site-title a {
		background-size: 260px;
	}
}

@media screen and (min-width: 414px) {
	.title-area .site-title a {
		background-size: 280px;
	}
}

@media screen and (min-width: 1024px) {
	.title-area .site-title a {
		display: block;

		width: 100%;
		height: 100%;

		background: url(/wp-content/themes/once-coupled-kylee-cooks/assets/images/logo-desktop.svg) no-repeat center;
		background-size: contain;
	}
}

/* [ Search ] */

#header-search {
	position: absolute;
	top: 72px; /* must use top (vs bottom) to prevent movement during fade-in */
	left: 0;
	width: calc(100% - 20px);
	height: 48px; /* helps with js consistency */ /* some extra pixels to account for border and position of logo */
	margin: -2px 10px 0;
}

@media screen and (min-width: 1024px) {
	#header-search {
		display: none;
	}
}

/* [ Toggles ] */

.site-header .generic-toggle {
	float: right;
	width: 12.8%;
	height: 68px;
}

.site-header .generic-toggle .icon-font {
	position: relative;
	top: -4px;
}

/* [ Before Header ] */

.before-header {
	display: none;
}

@media screen and (min-width: 1024px) {
	.before-header {
		display: block;
		border-bottom: 4px double #cbcbcb;
	}

	.before-header::before {
		content: '';
		display: block;
		width: 100%;
		height: 4px;
		background: #000;
		background: linear-gradient(90deg, rgba(178,77,84,1) 20%, rgba(53,112,119,1) 20%, rgba(53,112,119,1) 40%, rgba(199,139,48,1) 40%, rgba(199,139,48,1) 60%, rgba(178,191,190,1) 60%, rgba(178,191,190,1) 80%, rgba(126,127,92,1) 80%);
		background-size: 1000px;
	}

	.before-header > .wrap {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		min-height: 40px;
	}

	.before-header .header-text {
		font-size: 12px;
		margin-right: auto;
		margin-top: 2px;
		margin-bottom: 0;
		text-transform: lowercase;
	}

	.before-header .cta {
		font-weight: 700;
		font-size: 12px;
		margin-right: 12px;
		color: #343434;
		line-height: 1;
		margin-top: 2px;
	}

	.before-header .cta:hover {
		cursor: pointer;
	}
}

/* ---------- [ Site Footer ] ---------- */

.site-footer {
	background: #f5f2f0 url(/wp-content/themes/once-coupled-kylee-cooks/assets/images/bg-pattern.svg) center / 650px;
}

.footer-columns {
	text-align: center;
	position: relative;
	padding: 36px 0 16px;
	background: #fff;
}

@media screen and (min-width: 1024px) {
	.footer-columns {
		padding: 48px 0 40px;
	}
}

.footer-columns::before {
	content: '';
	display: block;
	width: 100%;
	height: 8px;
	background: #000;
    background: linear-gradient(90deg, rgba(178,77,84,1) 20%, rgba(53,112,119,1) 20%, rgba(53,112,119,1) 40%, rgba(199,139,48,1) 40%, rgba(199,139,48,1) 60%, rgba(178,191,190,1) 60%, rgba(178,191,190,1) 80%, rgba(126,127,92,1) 80%);
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (min-width: 1024px) {
	.footer-columns::before {
		background-size: 1000px;
	}

	.footer-columns .sm-col-1 {
		margin-bottom: 0;
		text-align: center;
	}

	.footer-columns .footer-logo {
		flex-basis: 184px;
	}
}

.footer-columns .footer-menu {
    display: none;
}

@media screen and (min-width: 1024px) {
	.footer-columns .footer-menu {
		display: flex;
		flex-basis: 384px;
		justify-content: center;
		align-items: center;
	}
}

.footer-menu .footer-menu-header {
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	font-size: 22px;
	text-align: left;
	margin: 0 0 4px;
}

@media screen and (min-width: 1024px) {
	.footer-columns .footer-subscribe {
		flex-basis: calc(100% - 616px);
		border-left: 4px double #cbcbcb;
		margin-top: 0;
		padding-left: 72px;
	}
}

.footer-bottom {
	padding: 20px 0;

	text-align: center;

	color: #fff;
	background: #343434;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
}

@media screen and (min-width: 1024px) {
	.footer-bottom > .wrap {
		display: flex;
		align-items: center;
	}
}

.footer-social {
	margin-bottom: 16px;
}

@media screen and (min-width: 1024px) {
	.footer-social {
		margin-bottom: 0;
	}

	.footer-text {
		margin-left: auto;
	}
}

.footer-bottom .copyright,
.footer-bottom .nav-privacy,
.footer-bottom .site-credits-container {
	display: inline-block;
	vertical-align: middle;
	margin: 0 2px;
}

.back-to-top {
	display: block;
	color: #fff;
	background: #000;
	border-radius: 3px;
	padding: 8px 12px 12px;
	font-size: 18px;
	line-height: 1;
	margin-top: 8px;
}

@media screen and (min-width: 1024px) {
	.back-to-top {
		display: inline-block;
		background: transparent;
		margin-left: 20px;
		margin-top: -8px;
		padding: 0;
		vertical-align: middle;
	}

	.back-to-top:hover {
		cursor: pointer;
	}
}

.back-to-top .icon-font {
	font-size: 128%;
	margin-left: 4px;
	margin-right: -0.2em;
}


/* ================================
[ Content ]
================================ */

/* ---------- [ Author Box ] ---------- */

.author-box {
	margin: 20px 0;
	padding: 20px;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	border: 6px solid #f5f2f0;
	color: #343434;
}

@media screen and (min-width: 768px) {
	.author-box {
		position: relative;
		font-size: 16px;

		margin: 14px 0 28px;
		padding: 24px 24px 24px 124px;

		text-align: left;
	}
}

.author-box a {
	text-decoration: underline;

	color: #343434;
}

@media screen and (min-width: 1024px) {
	.author-box a:hover {
		text-decoration: none;

		opacity: 1;
	}
}

.author-box .avatar,
.avatars-disabled .author-box::before {
	margin: 0 auto 12px;

	border-radius: 100%;
}

@media screen and (min-width: 768px) {
	.author-box .avatar,
	.avatars-disabled .author-box::before {
		position: absolute;
		top: 24px;
		left: 24px;

		margin-bottom: 0;
	}
}

.avatars-disabled .author-box::before {
	width: 80px;
	height: 80px;

	content: '';

	background: url(/wp-content/themes/once-coupled-kylee-cooks/assets/images/avatar-author.jpg) no-repeat center;
	background-size: 80px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	.avatars-disabled .author-box::before {
		background-image: url(/wp-content/themes/once-coupled-kylee-cooks/assets/images/avatar-author@2x.jpg);
	}
}

.author-box .avatar {
	float: none;
}

.author-box-title {
	margin: 0 0 8px;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	font-size: 30px;
}

@media screen and (min-width: 768px) {
	.author-box-title {
		font-size: 24px;
		margin-bottom: 4px;
	}
}

.author-box a:last-child {
	font-size: 16px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-decoration: none;
	display: block;
	margin-top: 16px;
	color: #000;
}

@media screen and (min-width: 768px) {
	.author-box a:last-child {
		font-size: 14px;
		margin-top: 12px;
	}
}

@media screen and (min-width: 1024px) {
	.author-box a:last-child:hover {
		color: #343434;

		text-decoration: underline;
	}
}

.author-box a:last-child::after {
	content: '\e909';
	font-family: 'Icons';
	width: 1em;
	line-height: 1em;
	margin: .2em;
	position: relative;
	top: 0.075em;
	margin-left: 8px;
}

/* ---------- [ Breadcrumbs ] ---------- */

.breadcrumb {
	margin-bottom: 12px;
	text-align: left;
	font-size: 12px;
	color: #666;
}

@media screen and (min-width: 768px) {
	.breadcrumb {
		font-size: 14px;
	}
}

.breadcrumb a,
.archive-nav .breadcrumb a {
	color: #666;
	text-decoration: none;
}

@media screen and (min-width: 1024px) {
	.breadcrumb a:hover,
	.archive-nav .breadcrumb a:hover {
		text-decoration: underline;
	}
}

.breadcrumb .breadcrumb-separator {
	margin: 0 0.4em;
}

.breadcrumb .breadcrumb-separator::before {
    margin: 0;
}

/* ---------- [ Titles ] ---------- */

.archive-title,
h1.entry-title {
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	font-size: 28px;
	line-height: 1;

	margin: 0 0 8px;
}

h1.entry-title {
	font-size: 24px;
}

@media screen and (min-width: 1024px) {
	.archive-title,
	h1.entry-title {
		font-size: 36px;
	}
}

.post-listing .content .entry-title,
.featured-posts .entry-title {
	margin-bottom: 0;
}

.post-listing .content .entry-title-link,
.featured-posts .entry-title-link {
	display: block;

	text-align: center;
	font-size: 18px;
}

@media screen and (min-width: 1024px) {
	.post-listing .content .entry-title-link,
	.featured-posts .entry-title-link {
		font-size: 16px;
	}

	.post-listing .content .entry-title-link:hover,
	.featured-posts .entry-title-link:hover {
		opacity: 1;
		color: #666;
	}
}

/* ---------- [ Entries ] ---------- */

.post-listing .content .entry,
.featured-posts .entry {
	margin-bottom: 16px;
}

.post-listing #genesis-content > div.entry {
	width: 100%; /* flexbox fix for when no posts are found (otherwise container would be 'article') */
}

.post-listing .content .entry-image,
.featured-posts .entry-image {
	display: block;
}

.featured-posts .articles-container .entry {
	display: flex;
    flex-flow: column;
}

.featured-posts .articles-container .entry .entry-title {
	flex: 1;
	display: flex;
}