article {
    display: block;
    float: left;
    width: calc(50% - 115px);
    margin: 0 15px 80px 15px;
    border: 2px solid #E1E2E6;
    padding: 40px;
    min-height: 469px;
    position: relative;
}

.blog-programm-table-body-section-inner-item:hover article, .blog-programm-table-body-section-inner-item.-active article {
    background: #FFDD00;
    border: 2px solid #1D1D1B;

}

.search-post-title {
    display: block;
    text-decoration: none;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #131317;
    margin: 0 0 20px;
}

article .entry-tags {
    display: flex;
    align-items: flex-end;
    height: 50px;
    margin: 0 0 20px;
    overflow: hidden;
}

article .entry-tags p {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: -0.14px;
    color: #7F818A;
}

article .entry-summary {
    height: 250px;
    margin: 0 0 20px;
    overflow: hidden;
}

article .entry-summary p {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: -0.14px;
    color: #7F818A;
}

article .entry-summary p.link-more {
    display: none;
}

article .search-article-author {
    position: absolute;
    bottom: 40px;
}

article .search-article-author b {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    color: #131317;
    display: inline-block;
    margin: 0 6px 0 0;
}

article .search-article-author span {
    font-size: 12px;
    line-height: 16px;
    display: inline-block;
    color: #1B1B1B;
}

@media all and (max-width: 768px) {
    article {
        width: auto;
    }
}

/* --- 2026-07-22: posts now carry images, so card heights vary. The original
   float layout snags on uneven heights and leaves empty slots (e.g. post 4).
   Lay the cards out as a 2-column grid instead: rows size to their tallest
   card, no snagging, images stay uncropped. Scoped to this component only. --- */
.academy-programm-table-body-section-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    align-items: start;
}
.academy-programm-table-body-section-inner article {
    float: none;
    width: auto;
    margin: 0 0 30px 0;
}
/* Un-floating the card (above) lets the wrapping <a>'s default underline
   propagate to the card text — floats used to block that. Kill it at the link. */
.academy-programm-table-body-section-inner .blog-programm-table-body-section-inner-item {
    text-decoration: none;
}
.academy-programm-table-body-section-inner .entry-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0 0 20px;
}
@media all and (max-width: 768px) {
    .academy-programm-table-body-section-inner {
        grid-template-columns: 1fr;
    }
}
