/* AUTHOR HEADER */
.author-header {
  background-color: #002b45;
  padding: 90px 20px;
  text-align: center;
  color: #ffffff;
}

/* Michael Liddle (H1) */
.author-header h1 {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 15px;
}

/* Position text */
.author-header p {
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
}

.author-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

/* BIO SECTION */
.author-bio {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin: 80px 0;
}

/* Portrait */
.author-avatar img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Bio content */
.author-bio-content {
  max-width: 720px;
}

/*linkedin icon  */
.linkedin-icon {
  margin-left: 10px;
  font-size: 18px;
  color: #0A66C2;
  transition: all 0.2s ease;
}

.linkedin-icon:hover {
  color: #004182;
}

.author-bio-content h2 {
  color: #002b45;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-quote {
  font-style: italic;
  color: #666;
  margin: 20px 0;
  border-left: 4px solid #F06178;
  padding-left: 15px;
}

.author-articles {
  margin-top: 60px;
}

.author-articles h3 {
  text-align: center;
  font-size: 1.9rem;
  color: #002b45;
  margin-bottom: 30px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.author-article {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease;
}

.author-article:hover {
  transform: translateY(-5px);
}

.author-article img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-content {
  padding: 20px;
}

.author-cta {
  text-align: center;
  background-color: #eaf3f8;
  padding: 50px 20px;
  margin-top: 60px;
  border-radius: 8px;
}

.author-cta a {
  background-color: #F06178;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}