.w3f-overview-card {
  max-width: 800px;
  margin: 30px auto;
  padding: 2rem;
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgb(0 0 0 / 0.05);
  font-family: "Poppins", sans-serif;
  color: #111;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.w3f-overview-card:hover {
  border-color: #ff6a00;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
}
.w3f-overview-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff6a00;
  margin-bottom: 1rem;
}
.w3f-overview-item {
  margin-bottom: 1rem;
}
.w3f-overview-label {
  font-weight: 600;
  margin-right: 0.5rem;
}
.w3f-star-rating {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.w3f-star {
  width: 24px;
  height: 24px;
  fill: #ddd;
}
.w3f-star.filled {
  fill: #ff6a00;
}
.w3f-overview-url a {
  color: #ff6a00;
  text-decoration: none;
}
.w3f-overview-url a:hover {
  text-decoration: underline;
}
.w3f-overview-item-flex {
  display: flex;
}
