
.icon_blog:before {
    height: 20px;
    left: 2px;
    top: calc(50% - 10px);
    width: 20px;
}
.icon_blog_category:before {
    mask-image: url(/blog/assets/folder-regular.svg);
    -webkit-mask-image: url(/blog/assets/folder-regular.svg);
}
.icon_blog_calendar:before {
    mask-image: url(/blog/assets/calendar-solid.svg);
    -webkit-mask-image: url(/blog/assets/calendar-solid.svg);
}
.label_blog {
    display : block;
    font-size : 16px;
    padding-left : 25px;
    margin-bottom : 15px;
}
.thumbnail_blog {
    margin-bottom : 25px;
}
.icon_blog_down:before {
    mask-image: url(/blog/assets/down.svg);
    -webkit-mask-image: url(/blog/assets/down.svg);
    background: #2d9b9c;
    height: 10px;
    margin-left: 10px;
    position: static;
    width: 16px;
}
.icon_blog_menu:before {
    background: #2d9b9c;
    height: 25px;
    position: static;
    width: 25px;
    content: "";
    left: 0;
    top: -5px;
    transition: all .2s ease-in-out;
    margin-right: 10px;
}

.description {
    position: relative;
}

.post_cta {
    background: #2d9b9c;
    color: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.post_cta--desktop {
    float: right;
    width: min(33%, 320px);
    margin: 0 0 24px 24px;
}

.post_cta--mobile {
    display: none;
    margin: 20px 0 24px 0;
}

.post_cta_eyebrow {
    margin: 0 0 8px 0;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.9;
}

.post_cta_title {
    margin: 0 0 16px 0;
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 700;
}

.post_cta_button {
    display: inline-block;
    padding: 12px 18px;
    background: #fff;
    color: #2d9b9c;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post_cta_button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.description::after {
    content: "";
    display: block;
    clear: both;
}

@media (max-width: 991px) {
    .post_cta--desktop {
        display: none;
    }

    .post_cta--mobile {
        display: block;
    }
}