.newsCard {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-bottom: 1px solid #cae4ef;
    height: 8vh;
}

.newsCard .image {
    height: 4.3vh;
    border: 2px solid #0d4962;
    border-radius: 50%;
    margin-inline: 4vw;
}

.newsCard .textContainer {
    display: flex;
    flex-direction: column;
}

.newsCard .description {
    display: flex;
    flex-wrap: wrap;
}
.newsCard .description > *,
.newsCard .date {
    font-family: "Metropolis Regular";
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.14px;
    color: #0d4962;
    margin-right: 4px;
    word-break: break-all;
}

.newsCard .description .usrName, 
.newsCard .description .upper {
    font-family: "Metropolis Semi Bold";
    word-break: break-all;
}

/* iPad */
@media (min-width: 768px) and (max-width: 1023px) {
    .newsCard .description,
    .newsCard .date {
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0.14px;
    }
}

/* ################# dark mode ################### */
.dark .newsCard {
    background-color: #0d4962;
}

.dark .newsCard .description > *,
.dark .newsCard .date {
    color: rgba(255, 255, 255, 0.87);
}

@media (min-width: 1024px) {
    .newsCard .description > *,
    .newsCard .date {
        font-size: 12px;
        line-height: 18px;
        letter-spacing: 0.12px;
    }
    .newsCard .image {
        margin-inline: 1vw;
    }
}
