/*
Theme Name: XWRITE child
Version: 1.0.0
Template: xwrite
*/
.opc-latest-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
.opc-card {
  text-align: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px;
  transition: transform .2s ease;
}
.opc-card:hover { transform: scale(1.04); }
.opc-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.opc-title {
  font-size: 14px;
  margin: 6px 0 0;
  color: #1e293b;
  line-height: 1.4;
}
.opc-meta {
  font-size: 12px;
  color: #475569;
  margin-top: 3px;
}
