/* ══════════════════════════════════════════════════════════════
   COMPONENT: Author Box
   Used on: blog-post.html
   ══════════════════════════════════════════════════════════════ */

.author-box-wrapper {
  background: var(--off-white);
  padding: 64px 24px;
}

.author-box {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.author-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-content h4 {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.author-content .author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.author-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.author-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.author-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}

.author-links a:hover { color: var(--yellow-hover); }

.author-links .separator { color: var(--gray-300); }

@media (max-width: 640px) {
  .author-box-wrapper { padding: 48px 20px; }
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 24px;
  }
  .author-links { justify-content: center; }
}
