<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.lookat-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-item1s: center;
    gap: 10px; /* �舒���仂�仆亳亠 仄亠亢亟� �仂�仂 */
    overflow: hidden; /* 丼�仂弍� 仆亠 于��仂亟亳仍亳 亰舒 亞�舒仆亳�� */
}

.lookat-posts a {
    display: block;
    width: calc(100% / 5 - 10px);
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
}

.lookat-posts a .img {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-1height: calc( 1800 / 1200 * 100%);
    background-position: top center;
    background-size:contain ;
    background-repeat: no-repeat;
    object-fit:cover;
    object-position: center;
}

.lookat-posts a span {
    font-weight: normal;
    font-size: 14px;
}

@media only screen and (max-width: 940px) {

    .lookat-posts {
        justify-content: space-around;
        align-items:flex-start;
    }

    .lookat-posts a {
            display: block;
            width: calc(100% / 3 - 10px);
            font-weight: bold;
            font-size: 16px;
            line-height: 20px;
        }

}

@media only screen and (max-width: 480px) {

    .lookat-posts a {
        display: block;
        width: calc(100% / 2 - 10px);
        font-weight: bold;
        font-size: 16px;
        line-height: 20px;
    }

}
</pre></body></html>