.mrw-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.mrw-heading {
    font-size: 24px;
    font-weight: 800;
    color: #1a2540;
    text-align: center;
    margin: 0 0 24px;
}

.mrw-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mrw-col-title {
    font-size: 17px;
    font-weight: 800;
    color: #1a2540;
    margin: 0 0 12px;
}

.mrw-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mrw-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    padding: 10px 14px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background: #fff;
    text-decoration: none !important;
    transition: border-color 0.15s ease;
}

.mrw-row:hover {
    border-color: #2271b1;
}

.mrw-avatar {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    border-radius: 8px;
}

.mrw-row-main {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.mrw-row-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2d3d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mrw-row-date {
    font-size: 12px;
    color: #8a94a3;
}

.mrw-more {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
    padding: 10px;
    text-align: center;
    border: 1px dashed #b0b0b0;
    border-radius: 8px;
    background: #f7f7f7;
    color: #555;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
}

.mrw-more:hover {
    border-color: #2271b1;
    color: #2271b1;
}

.mrw-more:disabled {
    opacity: 0.6;
    cursor: default;
}

@media screen and (max-width: 700px) {
    .mrw-cols {
        grid-template-columns: 1fr;
    }
}
