/* Blog Post Footer Styles */

/* Author Section */
.post-author-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  padding: 3rem 0;
  margin: 3rem 0;
  border-top: 1px solid rgba(255, 152, 0, 0.1);
  border-bottom: 1px solid rgba(255, 152, 0, 0.1);
  align-items: center;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.author-photo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.author-photo-round {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 152, 0, 0.2);
}

.author-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.author-name-footer {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #e5e5e5;
  font-family: monospace;
}

.author-bio {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #999;
}

.author-link {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 152, 0, 0.1);
  border: 1px solid rgba(255, 152, 0, 0.3);
  border-radius: 4px;
  color: #ff9800;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.author-link:hover {
  background-color: rgba(255, 152, 0, 0.2);
  border-color: rgba(255, 152, 0, 0.5);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .post-author-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1rem;
  }

  .author-photo-round {
    max-width: 120px;
  }

  .author-about {
    align-items: center;
  }

  .author-link {
    align-self: center;
  }
}
