/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/

.new-author-bio {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 20px auto;
}

.new-bio-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center; /* Center vertically */
}

.new-bio-image {
  flex: 0 0 150px;
  width: 150px;
  height: 150px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  border-radius: 50%;
  margin-right: 20px;
}

.new-bio-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.new-bio-info span {
  margin: 0;
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.new-bio-info h4, .new-bio-info h4 a {
  margin: 5px 0;
  font-size: 20px;
  color: #333;
}

.new-bio-info p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* Mobile layout: image above description */
@media (max-width: 768px) {
  .new-bio-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .new-bio-image {
    margin-right: 0;
    margin-bottom: 20px;
    height: auto;
    max-width: 200px; /* Ensure image is proportional */
  }
}