/* abcGEO — vertical author sidebar (safe to load without full styles.css) */
:root {
  --bg: #FAF9F6;
  --sky: #00B4D8;
  --orange: #FF6B4A;
  --text: #1A202C;
  --muted: #64748B;
  --font-display: 'Syne', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.container.blog-layout {
  max-width: 1100px;
}

.blog-layout__main {
  min-width: 0;
}

@media (min-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr 320px;
    gap: 2.25rem;
  }
}

.author-sidebar {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.author-sidebar__inner {
  padding: 1.5rem 1.35rem 1.4rem;
  border-radius: 1rem;
  background: var(--text);
  border: 1px solid rgba(0, 180, 216, 0.35);
  box-shadow:
    0 16px 40px rgba(26, 32, 44, 0.28),
    0 0 0 1px rgba(0, 180, 216, 0.08);
  text-align: center;
}

@media (min-width: 1024px) {
  .author-sidebar {
    margin: 0;
    position: sticky;
    top: 6rem;
  }
}

.author-sidebar__eyebrow {
  margin: 0 0 1.15rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.author-sidebar__photo {
  width: 7.25rem;
  height: 7.25rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 3px solid var(--sky);
  box-shadow:
    0 0 0 4px rgba(0, 180, 216, 0.18),
    0 8px 20px rgba(255, 107, 74, 0.2);
}

.author-sidebar__name {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bg);
  letter-spacing: -0.02em;
}

.author-sidebar__role {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

.author-sidebar__block {
  text-align: left;
  padding: 0.9rem 0.95rem;
  margin-bottom: 0.75rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.author-sidebar__block:last-of-type {
  margin-bottom: 1.15rem;
}

.author-sidebar__block-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sky);
}

.author-sidebar__block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.author-sidebar__block li {
  position: relative;
  padding-left: 0.95rem;
  margin-bottom: 0.4rem;
  font-size: 0.84rem;
  line-height: 1.4;
  color: #E2E8F0;
}

.author-sidebar__block li:last-child {
  margin-bottom: 0;
}

.author-sidebar__block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--sky);
}

.author-sidebar__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  background: var(--sky);
  color: var(--text);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 18px rgba(0, 180, 216, 0.28);
}

.author-sidebar__cta:hover {
  background: var(--orange);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 107, 74, 0.3);
}

@media (max-width: 560px) {
  .author-sidebar {
    max-width: none;
  }
}
