/*
 * Theme Name: Beanstalkr Child Theme
 * Author: Evolut (Ben Stokes)
 * Description: Child Theme for Beanstalkr (exend Evolut WP Theme)
 * Template:  evolut-wp-theme
 * Version: 1.0
 * Requires at least: 5.0
 * Tested up to: 5.4
 * Requires PHP: 7.0
 * License: Proprietary
 * License URI: http://evolut.com.au
 * Text Domain: evolut
 * Extends Evolut WordPress Theme
 */

/* Mega menu */
.custom-mega-menu{
	display: flex;
	width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
	background-color: #FFF;
	border: 1px solid rgba(0, 0, 0, .15);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}
.main-menu-item:hover .custom-mega-menu{
	opacity: 1;
	visibility: visible;
}
.custom-mega-menu .links-left{
	width: 27%;
	padding: 40px 30px 30px;
}
.mega-sub-links{
	list-style: none;
	padding: 0;
	margin: 0;
}
.mega-sub-links li{
	margin-bottom: 10px;
}
.mega-sub-links li a{
	text-decoration: none;
	color: rgb(17, 17, 17);
    font-size: 18px;
    font-family: var(--menu-font-family);
}
.mega-sub-links li a:hover{
	text-decoration: underline;
}
.custom-mega-menu .pickup-posts{
	flex: 1;
	padding: 40px 30px 30px;
}
.list-pickup-posts{
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.mega-post-item{
	text-decoration: none;
}
.list-pickup-posts{
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.mega-post-item{
	text-decoration: none;
}
.mega-post-item .caption .title{
	font-size: 16px;
    line-height: 1.7;
    font-weight: normal;
    text-decoration: none;
}
.mega-post-item:hover .caption .title{
	text-decoration: underline;
}
.mega-post-item .thumb img{
	width: 100%;
	height: auto;
	aspect-ratio: 5 / 3;
    object-fit: cover;
}
.header .header-menu{
	gap: 30px;
}