/*
Theme Name: Bricks Child
Template: bricks
*/

/* GLOBAL */
.brxe-section {
	overflow-x: clip;
}
/* Headings */
h1,
h2,
h3,
h4 {
	font-family: "Conso";
	font-weight: bold;
}

/* Header Active Menu Item */
.menu-item.current-menu-item a:before {
    content: '■';
    position: absolute;
    display: flex;
	top: 0;
    align-items: center;
    justify-content: center;
    height: 100%;
    line-height: 20px;
    font-size: 8px;
    left: -10px;
}


/* Bg Image */
.bg-image {
    position: relative;
    display: block;
    overflow: clip;
}
.bg-image img {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Text Link */
.text-link {
    display: flex;
    gap: 10px;
    align-items: center;
}
.text-link i {
    height: auto;
    font-size: 11px;
}

/* 1. HOMEPAGE */
/* Home – Featured */
.featured-posts-section {
    display: flex;
    flex-flow: column;
    gap: 35px;
}
.featured-post.featured-post-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 35px;
}
.featured-post-main__content {
    display: flex;
    flex-flow: column;
}
.featured-post-main__image.bg-image {
    aspect-ratio: 1;
}
.featured-post-main__content h2 {
    margin-block: 15px 20px;
}

.featured-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}
.featured-post-card {
    display: flex;
    flex-flow: column;
}
.featured-post-card__image.bg-image {
    aspect-ratio: 1;
	margin-bottom: 15px;
}
.featured-post__cats {
    font-weight: 700;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
	margin-bottom: 15px;
}
.featured-post__link {
    margin-top: 15px;
    display: block;
}
.featured-post-ad {
    background: #fff;
}
.featured-post-ad-stack {
    display: grid;
    gap: 35px;
}
