.wtf-author-box {
  display: flex;
  gap: 20px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  margin: 40px 0;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.wtf-author-box img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #007bff;
}
.wtf-author-box .author-details h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #333;
}
.wtf-author-box .author-details p {
  margin: 5px 0;
  color: #555;
}
.wtf-author-box .author-details ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.wtf-author-box .author-details ul li {
  margin-bottom: 6px;
  color: #444;
}
.wtf-author-box .author-details a {
  color: #007bff;
  text-decoration: none;
}
.wtf-author-box .author-details a:hover {
  text-decoration: underline;
}
