/* Random Posts Widget Styles */

.random-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.random-posts li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  transition: transform 0.2s ease-in-out;
}

.random-posts li:hover {
  transform: translateX(3px);
}

.random-posts img {
  border-radius: 10px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  background-color: #f5f5f5;
  padding: 3px;
  transition: opacity 0.3s;
}

.random-posts img:hover {
  opacity: 0.7;
}

.random-posts a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: bold;
  text-transform: capitalize;
  color: #222;
  text-decoration: none;
  line-height: 1.3;
  display: inline-block;
  margin-bottom: 4px;
}

.random-posts a:hover {
  color: #0077cc;
}

.random-summary {
  font-size: 12px;
  color: #555;
  margin-top: 3px;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.4;
}

.random-info {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
  font-family: "Times New Roman", Times, serif;
}
