/*
Theme Name: GeneratePress Child
Template: generatepress
Author: Your Name
Version: 1.0
*/

/* --- Author Box Styling --- */
.author-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-top: 40px;
  background: #fff;
}

.author-heading {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  margin-bottom: 12px;
}

.author-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.author-avatar img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.author-details {
  flex: 1;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #222;
}

.author-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

.read-more-link {
  display: inline-block;
  margin-left: 6px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.read-more-link:hover {
  text-decoration: underline;
}

/* --- Mobile View --- */
@media (max-width: 768px) {
  .author-inner {
    flex-direction: column;
    text-align: center;
  }
  .author-avatar {
    margin-bottom: 12px;
  }
  .author-name {
    font-size: 16px;
  }
}
