/* ===== Ciphers Digital Author Box Styling ===== */
.author-box {
  background: #f9f9f9;              /* Light neutral background */
  border: 1px solid #e0e0e0;        /* Subtle border */
  border-radius: 10px;              /* Smooth corners */
  padding: 25px;
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Soft shadow */
}

.author-box img {
  border-radius: 50%;               /* Circular avatar */
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 2px solid #0073aa;        /* Ciphers blue accent */
}

.author-box-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.author-box-content {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.author-box a {
  color: #0073aa;
  text-decoration: none;
  font-weight: 500;
}

.author-box a:hover {
  text-decoration: underline;
}