.hc-press-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin: 26px 0 50px 0;
}

.hc-press-row {
    display: flex;
    gap: 24px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.04);
    padding: 20px 18px;
    align-items: stretch;
    transition: box-shadow 0.16s;
    cursor: pointer;
}

.hc-press-row:hover {
    box-shadow: 0 6px 22px 0 rgba(0, 56, 131, 0.10);
}

.hc-press-thumb {
    flex: 0 0 350px;

    width: 350px;
    height: 200px;

    border-radius: 10px;
    overflow: hidden;
    background: #f4f5f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hc-press-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hc-press-body {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hc-press-title {
    font-size: 1.24em;
    font-weight: 700;
    margin-bottom: 38px;
    color: #193377;
}

.hc-press-excerpt {
    font-size: 1.12em;
    color: #353535;
    margin-bottom: 18px;
    line-height: 1.7;
    min-height: 38px;
    word-break: break-all;
}

.hc-press-meta {
    font-size: 0.97em;
    color: #898989;
    margin-top: auto;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: flex-end;

    text-align: right;

}

.hc-press-views {
    font-size: 0.97em;
    color: #b5b5b5;
}

@media (max-width: 900px) {
    .hc-press-row {
        flex-direction: column;
        gap: 14px;
    }

    .hc-press-thumb {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 600px) {
    .hc-press-row {
        padding: 11px 6px;
    }

    .hc-press-thumb {
        width: 100%;
        height: 130px;
    }

    .hc-press-title {
        font-size: 1em;
    }
}

@media (max-width: 600px) {
    .hc-press-meta {
        justify-content: center;
        text-align: center;
    }
}