/* ===========================  CTL Author Box Style  =========================== */

.ctl-author-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin-top: 45px;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 20px;
}

.ctl-author-image img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f1f1f1;
  transition: transform 0.3s ease;
}

.ctl-author-name {
  font-size: 1.2rem;
  margin: 0 0 10px;
  font-weight: 700;
  color: #222;
  text-transform: capitalize;
}

.ctl-author-bio {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.ctl-author-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ctl-author-social img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.ctl-author-social img:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* ------------- Responsive ---------------- */

@media (max-width: 720px) {
  .ctl-author-box {
    flex-direction: column;
    text-align: center;
  }
  .ctl-author-image img {
    width: 110px;
    height: 110px;
    margin-bottom: 14px;
  }
  .ctl-author-social {
    justify-content: center;
  }
}