.defaultpost-container {
    display: grid;
    grid-template-columns: repeat(3, 33%);
    grid-gap: 20px;
}

.defaultpost-container a {
    background: white;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
}

.defaultpost-container a>img {
    border-radius: 24px 24px 0 0;
    height: 170px;
    object-fit: cover;
}

.defaultpost-container .post-details {
    padding: 16px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1
}

.defaultpost-container h6 {
    margin: 0;
}

.defaultpost-container .grey {
    background: var(--e-global-color-accent);
    display: flex;
    border-radius: 16px;
    padding: 4px 14px 4px 4px;
    font-size: 14px;
    align-items: center;
    line-height: 20px !important;
    gap: 12px;
    width: max-content;
    font-family: Maison Neue
}

.defaultpost-container .grey {
    margin: 0;
}

.defaultpost-container .grey .category {
    background: white;
    border-radius: 32px;
    padding: 0 10px;
}

.defaultpost-container .grey .min-read {
    opacity: 0.4;
    line-height: 1
}

html[lang="da-DK"] .defaultpost-container .grey {
    padding-left: 10px
}

html[lang="da-DK"] .defaultpost-container .grey .category {
    display: none
}

.grey.single {
    background: var(--e-global-color-accent);
    display: flex;
    border-radius: 16px;
    padding: 4px;
    font-size: 14px;
    align-items: center;
    line-height: 20px !important;
    gap: 6px;
    width: max-content;
    font-family: Maison Neue
}

.grey.single .category {
    background: white;
    border-radius: 32px;
    padding: 0 10px;
}

.chevron-button {
    display: flex;
    margin: auto 0 0 auto;
    font-family: Maison Neue;
    gap: 16px;
}

.chevron-button:after {
    content: url("/wp-content/uploads/chevron-yellow.svg");
    position: relative;
    top: 1px;
    transition: 0.3s;
    left: 0;
}

.defaultpost-container>a:hover .chevron-button:after,
.chevron-button:hover:after {
    left: 8px;
}

@media only screen and (max-width: 1025px) {
    .defaultpost-container .post-details {
        padding: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .defaultpost-container .post-details {
        padding: 16px;
    }

    .defaultpost-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*Count post*/
.count-posts {
    border: 1px solid #F4F4F4;
    width: max-content;
    padding: 0 12px;
    border-radius: 32px;
}

/* Featured block */
.featured-insight-post>a {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.elementor-shortcode .featured-insight-post img {
    width: 100%;
    height: 600px;
    width: 700px;
    max-width: unset;
    object-fit: cover;
    margin-right: -240px;
}

.featured-insight-post .chevron-button {
    margin-left: auto;
    position: relative;
    margin-top: 20px;
}

.featured-insight-post .post-details {
    background: white;
    border-radius: 32px;
    padding: 64px;
}

@media only screen and (max-width: 1025px) {
    .featured-insight-post>a {
        align-items: flex-end;
    }

    .elementor-shortcode .featured-insight-post img {
        width: 70vw;
        margin-right: -100px;
    }

    .featured-insight-post .post-details {
        padding: 30px;
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .featured-insight-post>a {
        align-items: flex-end;
        flex-direction: column;
    }

    .elementor-shortcode .featured-insight-post img {
        width: 100%;
        margin-right: 0;
        height: 200px;
        border-radius: 32px 32px 0 0;
    }

    .featured-insight-post .post-details {
        padding: 30px 16px;
        margin-bottom: 0;
        border-radius: 0 0 32px 32px;
    }
}

/* Single insights */
.single-post-container {
    display: flex;
    gap: 48px;
}

.single-post-container > div {
    width: 50%
}

.single-post-container img {
    object-fit: cover;
    height: 350px !important;
    object-position: center;
}

.single-post-container .post-date {
    color: var(--e-global-color-secondary)
}

.single-post-container .chevron-button {
    margin-top: 10px;
}

@media only screen and (max-width: 1024px) {
    .breadcrumbs {
        max-width: 100%;
        gap: 10px !important;
        padding: 20px !important;
    }
}

@media only screen and (max-width: 767px) {
    .single-post-container {
        flex-direction: column-reverse;
        gap: 16px;
    }
    
    .single-post-container > div {
        width: 100%
    }
    
    .single-post-container img {
        height: 150px !important;
    }
}