.words-list-wrap{
  width:90%;
  max-width:1000px;
  margin:0 auto 60px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.words-card{
  background:#fff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 2px 8px #f1e2e5;
}
.words-card p{
  color:#666;
  font-size:16px;
  line-height:1.8;
}
.words-op{
  margin-top:15px;
  text-align:right;
}
.words-op a{
  color:#999;
  text-decoration:none;
  font-size:14px;
  margin-left:15px;
  cursor:pointer;
}
.words-op a:hover{
  color:#E88B9B;
}
@media (max-width:768px){
  .words-list-wrap{
    grid-template-columns:1fr;
  }
}