.author-info-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.author-label-blk {
  flex-basis: 100%;
  font-size: 13px;
  color: black;
}

.author-name-link, .author-job-title-link, .read-more-link {
	text-decoration: none !important;
}

.author-job-title-link {
	font-weight: 100;
}

.author-avatar-container {
  flex-shrink: 0;
}

.author-details {
    flex: 1; /* takes remaining space */
}

.read-more-link {
	font-weight:100;
}

.author-avatar-container {
  border-radius: 50%;
  display: block;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.author-avatar-container img {
	border-radius: 50%;
	max-width: 70px !important;
}
.author-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-grow: 1;
}

.author-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  margin: 0;
}

.author-job-title {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.author-bio {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 5px 0 0 0;
}

.author-socials {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.author-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eee;
  color: #333;
  text-decoration: none !important;
  transition: all 0.2s ease;
  font-size: 14px;
}

.author-socials a:hover {
  background: #333;
  color: #fff;
}

@media (max-width: 480px) {
  .author-info-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 15px;
  }
  .author-details {
    align-items: center;
  }
}
