.rwm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.rwm-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.rwm-thumb {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  background: #f6f7f9;
}

.rwm-body {
  padding: 12px;
  text-align: center;
}

.rwm-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.rwm-title a {
  text-decoration: none;
}

.rwm-btn {
  display: inline-block;
  margin-top: 6px;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  background: #013064;
  transition: all 0.3s ease-in;
  color: #fff;
  text-transform: uppercase;
}

.rwm-btn:hover {
  background: #019ee1;
}

.rwm-empty {
  padding: 16px;
  border: 1px dashed #ddd;
  border-radius: 12px;
  text-align: center;
  background: #fafafa;
}

.rwm-pagination {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.rwm-pagebtn,
.rwm-pageinfo {
  padding: 5px 10px;
  border: 1px solid #013064;
  border-radius: 8px;
  text-decoration: none;
  background: #fff;
  transition: all 0.2s ease;
}

.rwm-pagebtn:hover {
  background: #019ee1;
  color: #fff;
  border-color: #019ee1;
}
