﻿.article_layout{
    display: flex;
    flex-direction: column;
}

.article_layout .image{
    aspect-ratio: 9 / 10;
    position: relative; isolation: isolate;
    display: flex;
    padding: var(--grid-margin);
    margin-bottom: 1rem;
    overflow: clip;
}

.article_layout .image img{
    position: absolute;
    object-fit: cover;
    z-index: -1;
    width: 100%; height: 100%;
    top: 0; left: 0;
}

.article_layout .image .pk-button{
    color: #fff;
    margin-top: auto;
}

.article_layout .text{
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.article_layout .text > span{
    font-size: 14px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    gap: .5rem;
    align-items: center;
}

.article_layout .text h3{
    font-family: "Plus Jakarta Sans",Verdana,Arial,sans-serif;
}