
/* ===== Random Article PP – layout izolowany ===== */

.pp-random-wrap {
    margin: 0;
    padding: 0;
    list-style-type: none;
    background-color: #0b153a;
}

.pp-random-item {
    margin: 0;
    padding: 0;

}

.pp-random-article {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* OBRAZEK */
.pp-random-thumb-inner {
    width: 367.04px;
    height: 206.45px;
    overflow: hidden;
    flex-shrink: 0;
}

.pp-random-thumb-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TEKST */


.pp-random-content {
    display: flex;
    flex-direction: column;
    height: 206.45px;

}

.pp-random-title {
    margin: 0 0 6px 0;
    font-size: 32px;
    line-height: 1.2;
}

.pp-random-meta {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: #555;
}

.pp-random-footer {
    margin-top: auto;
}

.pp-random-more {
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
    .pp-random-article {
        flex-direction: column;
    }

    .pp-random-thumb-inner {
        width: 100%;
        height: auto;
        aspect-ratio: 367 / 206;
    }

    .pp-random-content {
        height: auto;
    }
}
