/* Author Page Styles */
.author-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #EFFCEE 0%, #f0fdf4 100%);
}

/* Author Hero Section */
.author-hero {
  background: radial-gradient(circle at center, #0f5a4f 0%, #083531 70%);
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
}

.author-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.author-name {
  font-family: 'Funnel Sans', sans-serif;
  font-size: 56px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.author-subtitle {
  font-family: 'Funnel Sans', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #fbbf24;
  margin: 0;
  line-height: 1.3;
}

/* Author Content Section */
.author-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.author-content {
  background: #fff;
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 4px 20px rgba(8, 53, 49, 0.1);
}

.author-text {
  font-family: 'Inter', sans-serif;
  color: #083531;
  line-height: 1.8;
  font-size: 18px;
}

.author-intro {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #083531;
  line-height: 1.9;
}

.author-text-paragraph {
  margin-bottom: 25px;
  color: #083531;
  line-height: 1.8;
}

.author-text-paragraph:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .author-hero {
    padding: 80px 20px 60px;
  }

  .author-name {
    font-size: 42px;
  }

  .author-subtitle {
    font-size: 26px;
  }

  .author-content-wrapper {
    padding: 40px 15px;
  }

  .author-content {
    padding: 35px 25px;
  }

  .author-text {
    font-size: 16px;
  }

  .author-intro {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .author-hero {
    padding: 60px 15px 40px;
  }

  .author-name {
    font-size: 36px;
  }

  .author-subtitle {
    font-size: 22px;
  }

  .author-content {
    padding: 25px 20px;
  }

  .author-text {
    font-size: 15px;
  }

  .author-intro {
    font-size: 17px;
  }
}

