/* ==========================================================================
   PostNow Documentation Theme Styles
   File: assets/css/docs.css
   ========================================================================== */

/* ==========================================================================
   Strip Kadence Default Headers & Containers on Auth Pages
   ========================================================================== */

/* Hide Kadence default gray title headers */
body.page-template-page-login .entry-header,
body.page-template-page-login .page-header,
body.page-template-page-login .single-content-title,
body.page-template-page-login .entry-hero,
.page-slug-lost-password .entry-header,
.page-slug-lost-password .page-header {
  display: none !important;
}

/* Force full width and remove theme padding */
body.page-template-page-login #content,
body.page-template-page-login .content-wrap,
body.page-template-page-login .content-container,
body.page-template-page-login .site-main,
body.page-template-page-login .entry-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* 1. Design Tokens & Root Variables */
:root {
  --pn-red: #E31B23;
  --pn-red-hover: #C1131A;
  --pn-navy-dark: #0B1726;
  --pn-navy-light: #182C47;
  --pn-bg-gray: #F4F6F8;
  --pn-card-bg: #FFFFFF;
  --pn-text-dark: #111827;
  --pn-text-muted: #6B7280;
  --pn-border-radius: 12px;
  --pn-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

/* 2. Hide Native Kadence Theme Elements */
header#masthead, 
footer#colophon { 
  display: none !important; 
}

/* 3. Global Layout Containers */
.pn-docs-container {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* 4. Desktop 3-Column Homepage Grid */
.pn-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

/* 5. Single Article 3-Column Layout */
.pn-docs-grid {
  display: grid;
  grid-template-columns: 260px 1fr 220px;
  gap: 40px;
}

/* 6. Card Styling & Container Hover */
.pn-doc-card {
  background: var(--pn-card-bg);
  border-radius: var(--pn-border-radius);
  padding: 24px;
  box-shadow: var(--pn-shadow);
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pn-doc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.08);
  border-color: #CBD5E1;
}

/* 7. Card Item Links & Smooth Hover Effects */
.pn-doc-card ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.pn-doc-card ul li {
  margin-bottom: 4px;
}

.pn-doc-card ul li a {
  color: #4B5563;
  text-decoration: none;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.95rem;
  padding: 8px 10px;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
}

.pn-doc-card ul li a:hover {
  color: var(--pn-red);
  background-color: rgba(227, 27, 35, 0.06);
  transform: translateX(4px);
}

.pn-doc-card ul li a .doc-icon {
  color: #9CA3AF;
  transition: color 0.2s ease;
}

.pn-doc-card ul li a:hover .doc-icon {
  color: var(--pn-red);
}

/* 8. Hero Banner & Search Styling */
.pn-docs-hero {
  background: linear-gradient(135deg, var(--pn-navy-dark) 0%, var(--pn-navy-light) 100%);
  color: #ffffff;
  padding: 60px 20px 80px;
  text-align: center;
}

.pn-docs-hero h1 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pn-docs-hero p {
  color: #9CA3AF;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.pn-search-container {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.pn-search-input {
  width: 100%;
  padding: 16px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.pn-search-input:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--pn-red);
}

.pn-wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -30px;
}

.pn-wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 40px;
}

/* 9. Live Search Popup Results */
#pn-search-results {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  padding: 10px;
  margin-top: 8px;
  list-style: none;
  z-index: 9999;
  text-align: left;
  border: 1px solid #E5E7EB;
}

#pn-search-results li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: #111827;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

#pn-search-results li a:hover {
  background-color: rgba(227, 27, 35, 0.08) !important;
  color: var(--pn-red) !important;
}

/* 10. Single Doc Page Sidebar & Table of Contents */
.pn-sidebar-nav, 
.pn-toc-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.pn-toc-sidebar {
  border-left: 2px solid #E5E7EB;
  padding-left: 16px;
}

.pn-toc-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--pn-text-muted);
  font-weight: 700;
  margin-bottom: 12px;
}

.pn-sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pn-sidebar-nav a {
  display: block;
  padding: 8px 12px;
  color: var(--pn-text-muted);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.pn-sidebar-nav a:hover, 
.pn-sidebar-nav a.active {
  color: var(--pn-red);
  background: rgba(227, 27, 35, 0.05);
}

/* 11. Responsive Media Queries */
@media (max-width: 1024px) {
  .pn-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pn-docs-grid {
    grid-template-columns: 1fr;
  }
  .pn-sidebar-nav,
  .pn-toc-sidebar {
    display: none;
  }
}

@media (max-width: 640px) {
  .pn-card-grid {
    grid-template-columns: 1fr;
  }
}

/* 2-Column Single Article Layout */
.pn-single-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Sidebar Sticky Styling */
.pn-sidebar-left {
  position: sticky;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  padding-right: 12px;
}

.pn-sidebar-block {
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 20px;
}

.pn-sidebar-block:last-child {
  border-bottom: none;
}

/* Sidebar Headings */
.pn-toc-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9CA3AF;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Sidebar Links */
.pn-sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pn-sidebar-links li {
  margin-bottom: 6px;
}

.pn-sidebar-links a {
  display: block;
  padding: 6px 10px;
  color: #4B5563;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.pn-sidebar-links a:hover {
  color: #E31B23;
  background: rgba(227, 27, 35, 0.05);
}

.pn-sidebar-links a.active {
  color: #E31B23;
  background: rgba(227, 27, 35, 0.08);
  font-weight: 700;
}

/* TOC Dynamic Links */
.pn-toc-list a {
  display: block;
  padding: 4px 0;
  color: #6B7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.pn-toc-list a:hover {
  color: #E31B23;
}

.pn-toc-list a.toc-sub {
  padding-left: 14px;
  font-size: 0.8rem;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .pn-single-layout {
    grid-template-columns: 1fr;
  }
  .pn-sidebar-left {
    position: static;
    max-height: none;
  }
}

/* Sidebar Details Marker Reset */
details.pn-sidebar-block summary {
  list-style: none;
  outline: none;
  user-select: none;
}

details.pn-sidebar-block summary::-webkit-details-marker {
  display: none;
}

/* Accordion Chevron Indicator */
.pn-chevron {
  display: none;
  width: 7px;
  height: 7px;
  border-right: 2px solid #6B7280;
  border-bottom: 2px solid #6B7280;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-right: 4px;
}

details.pn-sidebar-block[open] .pn-chevron {
  transform: rotate(-135deg);
}

/* Desktop View (Always Expanded) */
@media (min-width: 901px) {
  details.pn-sidebar-block summary {
    cursor: default;
    pointer-events: none;
  }
  
  details.pn-sidebar-block:not([open]) > :not(summary) {
    display: block !important;
  }
}

/* Mobile Dropdown View (Screens 900px & Below) */
@media (max-width: 900px) {
  .pn-single-layout {
    grid-template-columns: 1fr;
  }

  .pn-sidebar-left {
    position: static;
    max-height: none;
    gap: 12px;
    margin-bottom: 24px;
  }

  .pn-sidebar-block {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid #E5E7EB;
  }

  .pn-sidebar-block[open] {
    border-color: #CBD5E1;
  }

  .pn-toc-title {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.85rem;
    color: #374151;
  }

  .pn-sidebar-block[open] .pn-toc-title {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #F3F4F6;
  }

  .pn-chevron {
    display: inline-block;
  }
}

/* Custom Pagination Block */
.pn-pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 50px 0 20px;
}

.pn-pagination-wrapper .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: #4B5563;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.pn-pagination-wrapper a.page-numbers:hover {
  border-color: var(--pn-red);
  color: var(--pn-red);
  transform: translateY(-1px);
}

.pn-pagination-wrapper .page-numbers.current {
  background: var(--pn-navy-dark);
  color: #FFFFFF;
  border-color: var(--pn-navy-dark);
  box-shadow: 0 4px 10px rgba(11, 23, 38, 0.2);
}

/* ==========================================================================
   PostNow Authentication Pages (Login, Lost Password, Reset)
   ========================================================================== */

.pn-auth-hero {
  background: linear-gradient(135deg, var(--pn-navy-dark) 0%, var(--pn-navy-light) 100%);
  color: #ffffff;
  padding: 60px 20px 80px;
  text-align: center;
}

.pn-auth-hero h1 {
  color: #ffffff !important;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.pn-auth-hero p {
  color: #9CA3AF;
  font-size: 1rem;
  margin: 0;
}

.pn-auth-wrapper {
  max-width: 440px;
  margin: -40px auto 60px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.pn-auth-card {
  background: #ffffff;
  border-radius: var(--pn-border-radius);
  padding: 36px 32px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  border: 1px solid #E5E7EB;
}

/* Inputs & Form Elements */
.pn-auth-card label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 6px;
}

.pn-auth-card input[type="text"],
.pn-auth-card input[type="password"],
.pn-auth-card input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #D1D5DB;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
  margin-bottom: 18px;
}

.pn-auth-card input[type="text"]:focus,
.pn-auth-card input[type="password"]:focus,
.pn-auth-card input[type="email"]:focus {
  outline: none;
  border-color: var(--pn-red);
  box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.15);
}

/* Remember Me Checkbox */
.pn-auth-card .login-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.pn-auth-card .login-remember label {
  margin-bottom: 0;
  font-weight: 500;
  color: #4B5563;
  font-size: 0.9rem;
}

/* PostNow Red Action Button */
.pn-auth-card input[type="submit"],
.pn-auth-card .button-primary {
  width: 100%;
  background: var(--pn-red) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 12px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(227, 27, 35, 0.3) !important;
}

.pn-auth-card input[type="submit"]:hover,
.pn-auth-card .button-primary:hover {
  background: var(--pn-red-hover) !important;
  transform: translateY(-1px);
}

/* Footer Navigation Links */
.pn-auth-links {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #F3F4F6;
  text-align: center;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.pn-auth-links a {
  color: #6B7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.pn-auth-links a:hover {
  color: var(--pn-red);
}

/* Messages & Alerts */
.pn-auth-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.pn-auth-alert.error {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #DC2626;
}

.pn-auth-alert.success {
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  color: #16A34A;
}

/* Honeypot Spam Trap (Hidden) */
.pn-website-hp {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
}

/* Auth Hero Header & Card Layout */
.pn-auth-hero {
  background: linear-gradient(135deg, var(--pn-navy-dark) 0%, var(--pn-navy-light) 100%);
  color: #ffffff;
  padding: 60px 20px 80px;
  text-align: center;
}

.pn-auth-hero h1 {
  color: #ffffff !important;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.pn-auth-hero p {
  color: #9CA3AF;
  font-size: 1rem;
  margin: 0;
}

.pn-auth-wrapper {
  max-width: 440px;
  margin: -40px auto 60px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.pn-auth-card {
  background: #ffffff;
  border-radius: var(--pn-border-radius);
  padding: 36px 32px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  border: 1px solid #E5E7EB;
}

/* Auth Card Inputs */
.pn-auth-card label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 6px;
}

.pn-auth-card input[type="text"],
.pn-auth-card input[type="password"],
.pn-auth-card input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #D1D5DB;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
  margin-bottom: 18px;
}

.pn-auth-card input[type="text"]:focus,
.pn-auth-card input[type="password"]:focus,
.pn-auth-card input[type="email"]:focus {
  outline: none;
  border-color: var(--pn-red);
  box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.15);
}

.pn-auth-card .login-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.pn-auth-card .login-remember label {
  margin-bottom: 0;
  font-weight: 500;
  color: #4B5563;
  font-size: 0.9rem;
}

/* PostNow Red Submit Button Override */
.pn-auth-btn {
  width: 100% !important;
  background: var(--pn-red) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 12px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 4px 6px -1px rgba(227, 27, 35, 0.3) !important;
  display: block;
  text-align: center;
  box-sizing: border-box;
  text-decoration: none;
}

.pn-auth-btn:hover {
  background: var(--pn-red-hover) !important;
  transform: translateY(-1px);
}

/* Footer Links & Alerts */
.pn-auth-links {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #F3F4F6;
  text-align: center;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.pn-auth-links a {
  color: #6B7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.pn-auth-links a:hover {
  color: var(--pn-red);
}

.pn-auth-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.pn-auth-alert.error {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #DC2626;
}

.pn-auth-alert.success {
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  color: #16A34A;
}

.pn-website-hp {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
}

/* Strip Kadence Default Page Title Banners on Login/Auth Pages */
body.page-template-page-login .entry-header,
body.page-template-page-login .page-header,
body.page-template-page-login .single-content-title,
body.page-template-page-login .entry-hero {
  display: none !important;
}

/* Force container full width */
body.page-template-page-login #content,
body.page-template-page-login .content-wrap,
body.page-template-page-login .content-container,
body.page-template-page-login .site-main,
body.page-template-page-login .entry-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* ==========================================================================
   Header Logo & Auth Card Logo Styles
   ========================================================================== */

/* Custom Navigation Header */
.pn-custom-header {
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pn-header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pn-header-logo {
  height: 32px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.pn-header-logo:hover {
  opacity: 0.85;
}

.pn-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pn-nav-link {
  color: #4B5563;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.pn-nav-link:hover {
  color: var(--pn-red);
}

.pn-btn-red {
  background: var(--pn-red);
  color: #FFFFFF !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
}

.pn-btn-red:hover {
  background: var(--pn-red-hover);
  transform: translateY(-1px);
}

/* Auth Card Logo Alignment */
.pn-auth-card-logo-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.pn-auth-card-logo {
  height: 38px;
  width: auto;
  display: inline-block;
}/* ==========================================================================
   Modern Ambient Hero & Glassmorphism Search
   ========================================================================== */

.pn-docs-hero,
.pn-auth-hero {
  position: relative;
  background-color: #0B1726;
  /* Ambient glow spheres + subtle tech grid pattern */
  background-image: 
    radial-gradient(circle at 50% -20%, rgba(227, 27, 35, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 85% 80%, rgba(24, 44, 71, 0.8) 0%, transparent 50%),
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 36px 36px, 36px 36px;
  color: #ffffff;
  padding: 80px 20px 90px;
  text-align: center;
  overflow: hidden;
}

/* Glow Accent Layer */
.pn-docs-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(circle, rgba(227, 27, 35, 0.18) 0%, rgba(11, 23, 38, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
}

/* Modern Pill Badge */
.pn-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #F87171;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pn-hero-badge-dot {
  width: 6px;
  height: 6px;
  background-color: #E31B23;
  border-radius: 50%;
  box-shadow: 0 0 10px #E31B23;
}

/* Headings & Text */
.pn-docs-hero h1,
.pn-auth-hero h1 {
  color: #FFFFFF !important;
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  line-height: 1.15;
}

.pn-docs-hero p,
.pn-auth-hero p {
  color: #9CA3AF;
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* Glassmorphic Search Bar */
.pn-search-container {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.pn-search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.pn-search-icon {
  position: absolute;
  left: 20px;
  width: 20px;
  height: 20px;
  color: #9CA3AF;
  pointer-events: none;
  transition: color 0.2s ease;
  z-index: 2;
}

.pn-search-input {
  width: 100%;
  padding: 18px 24px 18px 52px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  color: #FFFFFF !important;
  font-size: 1rem !important;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.pn-search-input::placeholder {
  color: #9CA3AF !important;
}

.pn-search-input:focus {
  outline: none !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(227, 27, 35, 0.6) !important;
  box-shadow: 0 0 0 4px rgba(227, 27, 35, 0.2), 0 20px 40px -15px rgba(0, 0, 0, 0.6) !important;
}

.pn-search-input-wrapper:focus-within .pn-search-icon {
  color: #E31B23;
}

/* Seamless Wave Mask Transition */
/* Modern Hero Transition Divider */
.pn-hero-divider {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  line-height: 0 !important;
  margin-top: -60px !important;
  z-index: 3 !important;
  pointer-events: none !important;
}

.pn-hero-divider svg {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 60px !important;
}