/* Trust, EEAT & editorial sections */
.section-header__lead { max-width: 42rem; margin: 0.75rem auto 0; color: var(--text-secondary); font-size: 1.05rem; }
.trust-section { position: relative; }

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
}
.trust-stat {
  padding: 1.5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.trust-stat::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto;
  height: 80%;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent 70%);
  opacity: 0.35;
  pointer-events: none;
}
.trust-stat__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--electric), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust-stat__label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.35rem; }

.about-tool-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.about-tool-card {
  padding: 1.75rem;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.about-tool-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: var(--shadow-glow);
}
.about-tool-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(56, 189, 248, 0.15));
  color: var(--electric);
  margin-bottom: 1rem;
}
.about-tool-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.about-tool-card p { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 0.65rem; }
.about-tool-card p:last-child { margin-bottom: 0; }

.use-case-row__title { text-align: center; font-size: 1.1rem; margin-bottom: 1.25rem; }
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.use-case-card { padding: 1.35rem; }
.use-case-card h4 { font-size: 0.95rem; margin-bottom: 0.5rem; color: var(--electric); }
.use-case-card p { font-size: 0.88rem; color: var(--text-secondary); }

.resource-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.resource-category { padding: 1.5rem; }
.resource-category__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.resource-category__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.2);
  color: var(--electric);
}
.resource-category h3 { font-size: 1.05rem; }
.resource-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.resource-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.15);
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.resource-card { background: rgba(255, 255, 255, 0.6); }
.resource-card:hover {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.12);
  color: var(--text-primary);
}
.resource-card__main { display: flex; flex-direction: column; gap: 0.25rem; }
.resource-card__main strong { font-size: 0.92rem; font-weight: 600; }
.resource-card__desc { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }
.resource-card__meta { display: flex; flex-direction: column; align-items: flex-end; gap: 0.35rem; flex-shrink: 0; }
.resource-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.25);
  color: var(--electric);
}
.resource-card__external { color: var(--text-muted); opacity: 0.7; }
.trust-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2rem;
  max-width: 40rem;
  margin-inline: auto;
}
.trust-cta { text-align: center; margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.trust-cta a { color: var(--gov-primary, #0b3d91); font-weight: 600; font-size: 0.92rem; }
.trust-cta a:hover { text-decoration: underline; }

.author-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin-inline: auto;
}
.author-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.author-card__glow {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}
.author-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--blue-600), var(--electric));
  color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}
.author-card__avatar--photo {
  object-fit: cover;
  object-position: center top;
  display: block;
  flex-shrink: 0;
  margin-bottom: 1rem;
  border: 2px solid rgba(56, 189, 248, 0.25);
}
.author-card__name a { color: var(--text-primary); }
.author-card__name a:hover { color: var(--electric); }
.author-card__role { font-size: 0.8rem; color: var(--electric); margin-bottom: 0.35rem; }
.author-card__qual {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.author-card__bio { font-size: 0.88rem; color: var(--text-secondary); flex: 1; }
.author-card__social {
  display: flex;
  gap: 0.4rem;
  margin: 0.75rem 0 0.25rem;
}
.author-card__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
}
.author-card__social a:hover {
  color: var(--electric);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
}
.author-card__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0;
}
.author-card__tags li {
  font-size: 0.72rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.author-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.author-card__link { font-weight: 600; font-size: 0.82rem; }

/* Editorial meta bar */
.editorial-meta {
  padding: 0;
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
}
.editorial-meta__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.1) 0%, transparent 45%, rgba(56, 189, 248, 0.06) 100%);
  pointer-events: none;
}
.editorial-meta__panels {
  display: flex;
  align-items: stretch;
  position: relative;
  padding: 1.35rem 1.5rem;
  gap: 0;
}
.editorial-meta__panel {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.editorial-meta__vdivider {
  width: 1px;
  align-self: stretch;
  margin: 0 1.25rem;
  background: linear-gradient(180deg, transparent, var(--border) 15%, var(--border) 85%, transparent);
  flex-shrink: 0;
}
.editorial-meta__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.editorial-meta__person {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity var(--transition);
}
.editorial-meta__person:hover {
  color: var(--text-primary);
  opacity: 0.92;
}
.editorial-meta__person:hover .editorial-meta__name {
  color: var(--electric);
}
.editorial-meta__person-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.editorial-meta__name {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color var(--transition);
}
.editorial-meta__role {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.editorial-meta__avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  background: linear-gradient(145deg, var(--blue-600), var(--electric));
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.editorial-meta__avatar--photo {
  object-fit: cover;
  object-position: center top;
  display: block;
}
.editorial-meta__avatar--alt {
  background: linear-gradient(145deg, #6366f1, var(--blue-400));
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}
.editorial-meta__panel--date {
  flex: 0 0 auto;
  min-width: 9rem;
  max-width: 11rem;
}
.editorial-meta__date-block {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
}
.editorial-meta__date-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: var(--electric);
}
.editorial-meta__date {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
.editorial-meta__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 0.85rem 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.12);
  position: relative;
}
.editorial-meta__footer {
  background: rgba(15, 23, 42, 0.03);
}
.editorial-meta__notice {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.editorial-meta__notice svg {
  flex-shrink: 0;
  color: var(--electric);
  opacity: 0.85;
}
.editorial-meta__links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
}
.editorial-meta__links a {
  color: var(--electric);
  white-space: nowrap;
}
.editorial-meta__links a:hover {
  color: var(--blue-400);
}
.editorial-meta__dot {
  color: var(--text-muted);
  user-select: none;
}

.article-meta-line { color: var(--text-muted); font-size: 0.85rem; margin-top: 1rem; }
.article-editorial-wrap { padding-top: 0; padding-bottom: 0; }
.article-editorial-wrap .editorial-meta { margin: 0; }

/* Compact blog attribution (replaces full editorial-meta card on blog articles) */
.blog-article-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}
.blog-article-byline__group {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
}
.blog-article-byline__label {
  color: var(--text-muted);
  font-size: 0.88rem;
}
.blog-article-byline__sep {
  color: var(--text-muted);
  opacity: 0.45;
  font-weight: 300;
  user-select: none;
}
.blog-article-byline__person {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
}
.blog-article-byline__person:hover .blog-article-byline__name {
  color: var(--gov-primary, var(--blue-500));
}
.blog-article-byline__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0b3d91 0%, #1a5fbf 100%);
  flex-shrink: 0;
}
.blog-article-byline__avatar--photo {
  object-fit: cover;
  object-position: center top;
  display: block;
}
.blog-article-byline__avatar--reviewer {
  background: linear-gradient(135deg, #1e5bb8 0%, #3d7dd6 100%);
}
.blog-article-byline__name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .editorial-meta__panels {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
  }
  .editorial-meta__vdivider {
    width: 100%;
    height: 1px;
    margin: 0;
    background: linear-gradient(90deg, transparent, var(--border) 15%, var(--border) 85%, transparent);
  }
  .editorial-meta__panel--date {
    max-width: none;
    flex: 1 1 auto;
  }
  .editorial-meta__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.author-hero {
  padding: calc(var(--header-h) + 2rem) 0 2rem;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.12), transparent);
  border-bottom: 1px solid var(--border);
}
.author-hero__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}
.author-hero__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-600), var(--electric));
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.author-hero__role { color: var(--electric); font-weight: 600; margin: 0.35rem 0 0.75rem; }
.author-hero__social { display: flex; gap: 1rem; margin-top: 1rem; font-size: 0.9rem; }

.author-profile-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}
.author-profile-card { padding: 1.5rem; margin-bottom: 1rem; }
.author-profile-card h2, .author-profile-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.expertise-list, .credentials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.expertise-list li, .credentials-list li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.expertise-list li::before, .credentials-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--electric);
}
.author-article-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.author-article-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.25rem;
  color: var(--text-primary);
}
.author-article-item:hover { color: var(--text-primary); border-color: rgba(56, 189, 248, 0.35); }
.author-article-item__meta { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.author-article-item span:last-child { font-size: 0.85rem; color: var(--text-secondary); }

.about-sections {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 52rem;
}
.about-block { padding: 2rem; }
.about-block h2 { font-size: 1.35rem; margin: 0.5rem 0 0.75rem; }
.about-block p { color: var(--text-secondary); }
.about-list {
  margin: 0.75rem 0 1rem 1.25rem;
  color: var(--text-secondary);
}
.about-list li { margin-bottom: 0.4rem; }
.prose--wide { max-width: 52rem; }
.editorial-updated {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--glass);
  margin-bottom: 1.5rem;
}
.trust-panel { padding: 1.75rem; }
.trust-panel h2 { margin-bottom: 0.75rem; }
.trust-panel p { color: var(--text-secondary); }

/* Premium author profile page */
.author-profile-page .author-profile-hero {
  padding: calc(var(--header-h) + 2.5rem) 0 3rem;
  background: linear-gradient(165deg, rgba(37, 99, 235, 0.14) 0%, transparent 55%);
  border-bottom: 1px solid var(--border);
}
.author-profile-hero__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.author-profile-photo { padding: 1rem; overflow: visible; }
.author-profile-photo__frame { position: relative; }
.author-profile-photo__avatar {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(145deg, var(--blue-600), var(--electric));
  color: #fff;
  box-shadow: var(--shadow-glow);
  border: 1px solid rgba(56, 189, 248, 0.35);
}
.author-profile-photo__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-glow);
  border: 1px solid rgba(56, 189, 248, 0.35);
}
.author-profile-photo__badge {
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--navy-900);
  border: 1px solid var(--glass-border);
  color: var(--electric);
  box-shadow: var(--shadow-lg);
}
.author-profile-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--electric);
  margin-bottom: 0.75rem;
}
.author-profile-name {
  font-size: clamp(2rem, 4vw, 2.75rem);
  background: linear-gradient(135deg, var(--electric), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}
.author-profile-titles {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--electric);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.author-profile-qual {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.author-profile-stats-bar {
  padding: 0 0 2rem;
  margin-top: -1rem;
}
.author-profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.author-profile-stat {
  padding: 1.25rem 1.35rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.author-profile-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.15);
}
.author-profile-stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--electric), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}
.author-profile-stat__label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.author-about-card {
  padding: 1.5rem 1.75rem;
}
.author-about-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}
.author-chip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.author-chip {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.22);
  color: var(--text-secondary);
  transition: all var(--transition);
}
.author-chip:hover {
  color: var(--electric);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.12);
  transform: translateY(-1px);
}
.author-chip-list--alt .author-chip {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(129, 140, 248, 0.25);
}
.author-chip--tech {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 0.78rem;
  font-weight: 500;
}
.author-profile-expertise,
.author-profile-network {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
  line-height: 1.55;
}
.author-profile-expertise strong,
.author-profile-network strong {
  color: var(--electric);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.35rem;
}
.author-profile-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.author-profile-social__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all var(--transition);
}
.author-profile-social__btn:hover {
  color: var(--electric);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
  transform: translateY(-2px) scale(1.05);
}
.author-profile-social__btn svg {
  transition: transform var(--transition);
}
.author-profile-social__btn:hover svg {
  transform: scale(1.08);
}

.author-profile-stack { max-width: 900px; }
.author-profile-section { margin-bottom: 3rem; }
.author-profile-section__title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--electric);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.author-profile-section__lead {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.author-profile-quote {
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--electric);
  margin: 0;
}
.author-profile-quote p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
}

.author-career-timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.author-career-item { padding: 1.35rem 1.5rem; }
.author-career-item__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.author-career-item__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--electric);
  margin-top: 0.45rem;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--accent-glow);
}
.author-career-item__role {
  display: block;
  font-weight: 700;
  color: var(--electric);
  font-size: 0.95rem;
}
.author-career-item__period {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.author-career-item__company {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.author-career-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.author-academic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.author-academic-card { padding: 1.25rem 1.35rem; }
.author-academic-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}
.author-academic-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.author-merit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.author-merit-item {
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.author-cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.author-cred-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 140px;
}
.author-cred-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.2);
  color: var(--electric);
}
.author-cred-card h3 { font-size: 0.92rem; line-height: 1.35; }
.author-cred-card__issuer {
  font-size: 0.75rem;
  color: var(--text-muted);
  flex: 1;
}
.author-cred-card__link {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--electric);
  margin-top: auto;
}
.author-cred-card__link:hover { color: var(--blue-400); }

.author-integrity { padding: 1.5rem 1.75rem; }
.author-integrity__intro {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.author-integrity__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.author-integrity__steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
}
.author-integrity__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--electric);
  line-height: 1;
}
.author-integrity__steps strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.author-integrity__steps p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .about-tool-bento, .resource-categories, .author-grid, .use-case-grid { grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: 1fr; }
  .author-profile-layout { grid-template-columns: 1fr; }
  .author-hero__grid { grid-template-columns: 1fr; text-align: center; }
  .author-hero__avatar { margin: 0 auto; }
  .author-hero__social { justify-content: center; }
  .author-profile-hero__grid { grid-template-columns: 1fr; }
  .author-profile-photo { max-width: 280px; margin-inline: auto; }
  .author-profile-hero__content { text-align: center; }
  .author-profile-social { justify-content: center; }
  .author-profile-stats { grid-template-columns: 1fr; }
  .author-academic-grid, .author-cred-grid { grid-template-columns: 1fr; }
}
