:root {
    --cw-blue: #1B6FF4;
    --cw-blue-dark: #1558CC;
    --cw-blue-light: #E8F1FF;
    --cw-green: #22C55E;
    --cw-navy: #0F172A;
    --cw-gray-700: #374151;
    --cw-gray-600: #4B5563;
    --cw-gray-500: #6B7280;
    --cw-gray-400: #9CA3AF;
    --cw-gray-200: #E5E7EB;
    --cw-gray-100: #F3F4F6;
    --cw-gray-50: #F9FAFB;
    --cw-white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
  }

  *, *::before, *::after {lbrace} box-sizing: border-box; margin: 0; padding: 0; {rbrace}
  html {lbrace} scroll-behavior: smooth; -webkit-font-smoothing: antialiased; {rbrace}
  body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--cw-gray-700);
    background: var(--cw-white);
    line-height: 1.7;
    font-size: 17px;
  }

  /* === HEADER === */
  .cw-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--cw-gray-200);
  }
  .cw-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cw-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--cw-navy);
    text-decoration: none;
    letter-spacing: -0.5px;
  }
  .cw-logo span {lbrace} color: var(--cw-blue); {rbrace}
  .cw-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .cw-header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--cw-navy);
    font-weight: 600;
    font-size: 15px;
  }
  .cw-header-phone-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cw-gray-200);
    overflow: hidden;
  }
  .cw-header-phone-label {
    font-size: 11px;
    font-weight: 400;
    color: var(--cw-gray-500);
  }

  /* === BREADCRUMB === */
  .cw-breadcrumb-bar {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 24px 0;
  }
  .cw-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--cw-gray-500);
  }
  .cw-breadcrumb a {
    color: var(--cw-blue);
    text-decoration: none;
  }
  .cw-breadcrumb a:hover {lbrace} text-decoration: underline; {rbrace}

  /* === AUTHOR HERO === */
  .cw-author-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px 0;
  }
  .cw-author-hero-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }
  .cw-author-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(27,111,244,0.2);
    border: 4px solid var(--cw-blue-light);
  }
  .cw-author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .cw-author-photo-fallback {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cw-blue) 0%, #7C3AED 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 56px;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(27,111,244,0.2);
  }
  .cw-author-intro {
    flex: 1;
  }
  .cw-author-intro h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 42px);
    color: var(--cw-blue);
    line-height: 1.15;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
  }
  .cw-author-role-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cw-blue-light);
    color: var(--cw-blue);
    font-weight: 600;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
  }
  .cw-author-intro-text {
    font-size: 17px;
    color: var(--cw-gray-700);
    line-height: 1.75;
  }
  .cw-author-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
  }
  .cw-author-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--cw-gray-600);
  }
  .cw-author-meta-item svg {
    color: var(--cw-blue);
    flex-shrink: 0;
  }
  .cw-author-meta-item strong {
    color: var(--cw-navy);
  }

  /* === CONTENT SECTIONS === */
  .cw-author-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px 0;
  }
  .cw-author-section {
    margin-bottom: 48px;
  }
  .cw-author-section h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--cw-navy);
    margin-bottom: 16px;
    line-height: 1.3;
  }
  .cw-author-section p {
    margin-bottom: 16px;
    line-height: 1.75;
  }
  .cw-author-section p:last-child {
    margin-bottom: 0;
  }

  /* === EXPERTISE GRID === */
  .cw-expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 20px;
  }
  .cw-expertise-card {
    background: var(--cw-gray-50);
    border: 1px solid var(--cw-gray-200);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .cw-expertise-card:hover {
    border-color: var(--cw-blue);
    box-shadow: 0 2px 12px rgba(27,111,244,0.08);
  }
  .cw-expertise-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--cw-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .cw-expertise-icon svg {
    color: var(--cw-blue);
  }
  .cw-expertise-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--cw-navy);
    margin-bottom: 4px;
  }
  .cw-expertise-card p {
    font-size: 14px;
    color: var(--cw-gray-600);
    line-height: 1.55;
    margin-bottom: 0;
  }

  /* === CREDENTIALS === */
  .cw-credentials {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
  }
  .cw-credential {
    background: var(--cw-white);
    border: 1px solid var(--cw-gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
  }
  .cw-credential-value {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: var(--cw-blue);
    line-height: 1.1;
  }
  .cw-credential-label {
    font-size: 14px;
    color: var(--cw-gray-600);
    margin-top: 6px;
  }

  /* === EDITORIAL APPROACH === */
  .cw-approach-box {
    background: linear-gradient(135deg, #F0F6FF 0%, #E8F1FF 40%, #F5F3FF 100%);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 20px;
  }
  .cw-approach-box blockquote {
    font-size: 20px;
    font-style: italic;
    color: var(--cw-navy);
    font-weight: 500;
    line-height: 1.6;
    border-left: 4px solid var(--cw-blue);
    padding-left: 20px;
    margin: 0 0 16px;
  }
  .cw-approach-box p {
    font-size: 16px;
    color: var(--cw-gray-700);
    line-height: 1.7;
  }
  .cw-approach-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
  }
  .cw-approach-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    color: var(--cw-gray-700);
    line-height: 1.55;
  }
  .cw-approach-list li svg {
    color: var(--cw-green);
    flex-shrink: 0;
    margin-top: 3px;
  }

  /* === RECENT ARTICLES === */
  .cw-recent-articles {
    margin-top: 20px;
  }
  .cw-recent-article-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--cw-gray-200);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
  }
  .cw-recent-article-item:first-child {
    border-top: 1px solid var(--cw-gray-200);
  }
  .cw-recent-article-item:hover {
    background: var(--cw-gray-50);
  }
  .cw-recent-article-item:hover h3 {
    color: var(--cw-blue);
  }
  .cw-recent-article-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--cw-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .cw-recent-article-icon svg {
    color: var(--cw-blue);
  }
  .cw-recent-article-info {
    flex: 1;
  }
  .cw-recent-article-info h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--cw-navy);
    margin-bottom: 2px;
    transition: color 0.2s;
  }
  .cw-recent-article-info span {
    font-size: 13px;
    color: var(--cw-gray-500);
  }
  .cw-recent-article-arrow {
    color: var(--cw-gray-400);
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
  }
  .cw-recent-article-item:hover .cw-recent-article-arrow {
    color: var(--cw-blue);
    transform: translateX(4px);
  }

  /* === CTA BANNER === */
  .cw-cta-banner {
    background: var(--cw-gray-50);
    padding: 64px 24px;
    text-align: center;
    margin-top: 64px;
  }
  .cw-cta-banner h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--cw-navy);
    margin-bottom: 20px;
  }
  .cw-cta-banner p {
    font-size: 17px;
    color: var(--cw-gray-600);
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.65;
  }
  .cw-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cw-blue);
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  }
  .cw-btn:hover {
    background: var(--cw-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(27,111,244,0.3);
  }

  /* === FOOTER === */
  .cw-footer {
    background: var(--cw-white);
    border-top: 1px solid var(--cw-gray-200);
    padding: 32px 24px;
  }
  .cw-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .cw-footer-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--cw-navy);
  }
  .cw-footer-copy {
    font-size: 13px;
    color: var(--cw-gray-500);
    margin-top: 4px;
  }
  .cw-footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .cw-footer-links a {
    font-size: 14px;
    color: var(--cw-gray-600);
    text-decoration: none;
  }
  .cw-footer-links a:hover {lbrace} color: var(--cw-blue); {rbrace}

  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    .cw-author-hero-inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 24px;
    }
    .cw-author-photo,
    .cw-author-photo-fallback {
      width: 140px;
      height: 140px;
    }
    .cw-author-photo-fallback {
      font-size: 44px;
    }
    .cw-author-meta-row {
      justify-content: center;
    }
    .cw-author-role-tag {
      margin-left: auto;
      margin-right: auto;
    }
    .cw-expertise-grid {
      grid-template-columns: 1fr;
    }
    .cw-credentials {
      grid-template-columns: repeat(2, 1fr);
    }
    .cw-header-phone-label {lbrace} display: none; {rbrace}
    .cw-recent-article-info h3 {lbrace} font-size: 15px; {rbrace}
  }

  @media (max-width: 480px) {
    .cw-credentials {
      grid-template-columns: 1fr;
    }
  }

  /* === ANIMATIONS === */
  @keyframes fadeUp {
    from {lbrace} opacity: 0; transform: translateY(20px); {rbrace}
    to {lbrace} opacity: 1; transform: translateY(0); {rbrace}
  }
  .cw-author-hero {lbrace} animation: fadeUp 0.6s ease-out; {rbrace}
  .cw-author-content {lbrace} animation: fadeUp 0.6s ease-out 0.15s both; {rbrace}

.logo img {
  max-height: 40px;
}