@charset "UTF-8";
.author-box-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.author-box-title p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* Like counter */
.author-box-title p:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ff5722;
  font-size: 28px;
}

/* MAIN CARD */
.author-card {
  display: flex;
  gap: 0;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fcdddf 0%, #fff8f9 18%, #ffffff 45%);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  align-items: flex-start;
  position: relative;
  transition: all 0.3s ease;
}

.author-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

/* LEFT SECTION - AVATAR */
.author-left {
  flex-shrink: 0;
  margin-right: 32px;
}

.author-avatar {
  position: relative;
  width: 140px;
  height: 140px;
}

.author-avatar img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: block;
}

/* RIGHT SECTION */
.author-right {
  flex: 1;
  min-width: 0;
  padding-top: 8px;
}

.author-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
  justify-content: space-between;
}

.author-name {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin: 0 0 12px;
  line-height: 1.2;
}

/* STATUS BADGE - Top right */
.author-status {
  font-size: 15px;
  color: #168A77;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.author-status svg {
  flex-shrink: 0;
}

/* ROLE BADGE */
.author-role {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #6d4c41;
  background: #ffecb3;
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* SUMMARY */
.author-summary {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 8px;
  font-weight: 400;
}

/* LINK BUTTON */
.author-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff5722;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.author-more::after {
  content: "›";
  font-size: 24px;
  transition: transform 0.3s ease;
  font-weight: 700;
}

.author-more:hover {
  color: #d84315;
  gap: 12px;
}

.author-more:hover::after {
  transform: translateX(4px);
}

/* ===================================
   RESPONSIVE
   =================================== */
/* Tablet */
@media (max-width: 768px) {
  .author-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    align-items: center;
  }
  .author-left {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .author-avatar,
  .author-avatar img {
    width: 120px;
    height: 120px;
  }
  .author-header {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .author-name {
    font-size: 26px;
    margin-bottom: 8px;
  }
  .author-summary {
    text-align: center;
  }
}
/* Mobile */
@media (max-width: 480px) {
  .author-card {
    padding: 24px 20px;
  }
  .author-box-title {
    flex-wrap: wrap;
    gap: 8px;
  }
  .author-box-title p {
    font-size: 14px;
  }
  .author-box-title p:first-child {
    font-size: 24px;
  }
  .author-avatar,
  .author-avatar img {
    width: 100px;
    height: 100px;
    border-width: 3px;
  }
  .author-name {
    font-size: 22px;
  }
  .author-role {
    font-size: 14px;
    padding: 8px 16px;
  }
  .author-summary {
    font-size: 15px;
  }
  .author-status {
    font-size: 13px;
    gap: 6px;
  }
  .author-more {
    font-size: 15px;
  }
}/*# sourceMappingURL=styles.css.map */