/* ===== ABOUT THE AUTHOR WIDGET ===== */

.about-author-widget {
  background: #FFF;
  padding: 40px;
  margin-bottom: 40px;
}

/* Horizontal layout */
.about-author-horizontal {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-author-horizontal .author-image-wrapper {
  flex-shrink: 0;
}

.about-author-horizontal .author-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}

.about-author-horizontal .author-content {
  flex: 1;
  text-align: left;
}

/* Vertical layout */
.about-author-vertical {
  text-align: center;
}

.about-author-vertical .author-image-wrapper {
  margin-bottom: 24px;
}

.about-author-vertical .author-name {
    justify-content: center;
}

.about-author-vertical .author-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e0e0;
}

.about-author-vertical .author-content {
  text-align: center;
}

/* Common styles */
.about-author-widget .author-heading {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000;
  margin: 0 0 8px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-author-widget .author-name {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 16px 0;
}

.about-author-widget .author-bio {
  font-family: "Lora", serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin: 0 0 24px 0;
}

.about-author-widget .author-cta-button {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  margin-bottom: 24px;
  transition: background 0.3s ease;
}

.about-author-widget .author-cta-button:hover {
  background: var(--accent);
  color: #fff;
}

.about-author-widget .author-social-links {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}

.about-author-vertical .author-social-links {
  justify-content: center;
}

.about-author-widget .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
  font-size: 18px;
}

.about-author-widget .social-icon i {
  line-height: 1;
}

.about-author-widget .social-icon:hover {
  transform: scale(1.1);
  background: var(--primary);
}

.about-author-widget .social-icon.facebook {
  background: var(--accent);
}

.about-author-widget .social-icon.instagram {
  background: var(--accent);
}

.about-author-widget .social-icon.pinterest {
  background: var(--accent);
}

.about-author-widget .social-icon.tiktok {
  background: var(--accent);
}

.about-author-widget .social-icon.youtube {
  background: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  .about-author-widget {
    padding: 24px;
  }
  
  .about-author-horizontal {
    flex-direction: column;
    gap: 24px;
  }
  
  .about-author-horizontal .author-content {
    text-align: center;
  }
  
  .about-author-horizontal .author-avatar {
    width: 150px;
    height: 150px;
  }
  
  .about-author-horizontal .author-social-links,
  .about-author-vertical .author-social-links {
    justify-content: center;
  }
  
  .about-author-widget .author-name {
    font-size: 1.5rem;
  }
}



