.pf-author-box {
  display: grid;
  grid-template-columns: 70px 1fr;
  column-gap: 24px;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
  margin: 34px 0 20px;
  padding: 24px 30px 26px;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
}

.pf-author-avatar {
  width: 64px;
  height: 64px;
  margin-top: 44px;
  border-radius: 50%;
  background: #5787f7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.5px;
}

.pf-author-content {
  min-width: 0;
}

.pf-author-label {
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.pf-author-name {
  margin: 0 0 7px;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 500;
}

.pf-author-name a,
.pf-author-links a {
  color: #2563eb;
  text-decoration: none;
}

.pf-author-name a:hover,
.pf-author-links a:hover {
  text-decoration: underline;
}

.pf-author-role {
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.45;
  font-weight: 800;
  color: #0f172a;
}

.pf-author-bio {
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.68;
  color: #334155;
}

.pf-author-links {
  margin: 0;
}

.pf-author-links a {
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
}

/* Article Notice Box */
.pf-notice-box {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 13px 0 13px 15px;
  border: 0;
  border-radius: 0;
}

.pf-notice-box p {
  margin: 0;
  padding: 0;
  font-size: 12.3px;
  line-height: 1.5;
  color: #64748b;
}

.pf-notice-box p + p {
  margin-top: 7px;
}

.pf-editorial-note strong {
  color: #1e3a8a;
  font-weight: 800;
}

.pf-risk-disclaimer strong {
  color: #9a3412;
  font-weight: 800;
}


/* Mobile */
@media (max-width: 600px) {
  .pf-author-box {
    grid-template-columns: 1fr;
    row-gap: 14px;
    padding: 22px;
  }

  .pf-author-avatar {
    margin-top: 0;
  }

  .pf-author-label {
    margin-bottom: 14px;
  }

  .pf-author-name {
    font-size: 24px;
  }
}