/* ====================================
   NEWS ENGAGEMENT FUNNEL - CSS STYLES
   Complete styling for all funnel elements
   ==================================== */

/* ============= HOMEPAGE ENHANCEMENTS ============= */

/* Update card header with badge */
.update-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.update-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.update-badge--new {
  background: linear-gradient(135deg, #ec4899, #f59e0b);
  color: #fff;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(236, 72, 153, 0.5); }
  50% { box-shadow: 0 0 15px rgba(236, 72, 153, 0.8); }
}

.update-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-secondary, #999);
}

.reading-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.update-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.btn-outline-primary {
  background: transparent;
  border: 1px solid var(--gold, #d4af37);
  color: var(--gold, #d4af37);
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--gold, #d4af37);
  color: #000;
}

/* Explore News Section */
.explore-news-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
}

.news-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.news-teaser-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-teaser-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  border-color: var(--gold, #d4af37);
}

.news-teaser-media {
  position: relative;
  display: block;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.news-teaser-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.news-teaser-card:hover .news-teaser-media img {
  transform: scale(1.05);
}

.news-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.news-badge--hot {
  background: rgba(239, 68, 68, 0.9);
  color: #fff;
}

.news-badge--new {
  background: rgba(139, 92, 246, 0.9);
  color: #fff;
}

.news-teaser-content {
  padding: 1.25rem;
}

.news-teaser-tags {
  margin-bottom: 0.75rem;
}

.news-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold, #d4af37);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.news-teaser-title {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.news-teaser-title a {
  color: var(--text-primary, #fff);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-teaser-title a:hover {
  color: var(--gold, #d4af37);
}

.news-teaser-excerpt {
  color: var(--text-secondary, #999);
  line-height: 1.6;
  margin: 0.75rem 0;
}

.news-teaser-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary, #999);
  margin: 1rem 0;
}

.news-teaser-cta {
  display: inline-flex;
  align-items: center;
  color: var(--gold, #d4af37);
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.news-teaser-cta:hover {
  gap: 0.5rem;
}

/* ============= SIDEBAR WIDGETS ============= */

.news-sidebar-widget {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.widget-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 1rem;
}

.widget-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold, #d4af37);
  margin: 0;
}

.widget-subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary, #999);
  margin-top: 0.25rem;
}

.widget-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.widget-link {
  color: var(--gold, #d4af37);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.widget-link:hover {
  gap: 0.5rem;
}

/* Most Read Widget */
.most-read-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.most-read-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.most-read-item:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateX(4px);
}

.most-read-rank {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold, #d4af37);
  color: #000;
  font-weight: 700;
  border-radius: 50%;
  font-size: 0.875rem;
}

.most-read-rank[data-rank="1"] {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.most-read-rank[data-rank="2"] {
  background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
}

.most-read-rank[data-rank="3"] {
  background: linear-gradient(135deg, #cd7f32, #e8a87c);
}

.most-read-content {
  flex: 1;
  min-width: 0;
}

.most-read-title {
  margin: 0 0 0.5rem 0;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.most-read-title a {
  color: var(--text-primary, #fff);
  text-decoration: none;
  transition: color 0.3s ease;
}

.most-read-title a:hover {
  color: var(--gold, #d4af37);
}

.most-read-meta {
  font-size: 0.8125rem;
  color: var(--text-secondary, #999);
}

.most-read-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
}

.most-read-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Cross-Navigation Widget */
.cross-nav-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cross-nav-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cross-nav-card:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold, #d4af37);
  transform: translateX(4px);
}

.cross-nav-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold, #d4af37);
  border-radius: 8px;
  font-size: 1.25rem;
}

.cross-nav-content {
  flex: 1;
  min-width: 0;
}

.cross-nav-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold, #d4af37);
  margin: 0 0 0.25rem 0;
}

.cross-nav-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary, #fff);
  margin: 0.25rem 0;
  line-height: 1.4;
}

.cross-nav-desc,
.cross-nav-meta {
  font-size: 0.8125rem;
  color: var(--text-secondary, #999);
  margin: 0.25rem 0;
}

.cross-nav-cta {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--gold, #d4af37);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: gap 0.3s ease;
}

.cross-nav-cta:hover {
  text-decoration: underline;
}

/* ============= RELATED ARTICLES ============= */

.related-articles-section {
  margin: 3rem 0;
  padding: 3rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.related-articles-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.related-articles-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold, #d4af37);
  margin: 0 0 0.5rem 0;
}

.related-articles-subtitle {
  font-size: 1rem;
  color: var(--text-secondary, #999);
  margin: 0;
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.related-article-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--gold, #d4af37);
}

.related-article-media {
  display: block;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.related-article-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.related-article-card:hover .related-article-media img {
  transform: scale(1.05);
}

.related-article-content {
  padding: 1rem;
}

.related-article-tags {
  margin-bottom: 0.5rem;
}

.related-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold, #d4af37);
  border-radius: 20px;
  font-size: 0.75rem;
}

.related-article-title {
  font-size: 1.125rem;
  margin: 0.5rem 0;
}

.related-article-title a {
  color: var(--text-primary, #fff);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-article-title a:hover {
  color: var(--gold, #d4af37);
}

.related-article-excerpt {
  color: var(--text-secondary, #999);
  line-height: 1.6;
  margin: 0.75rem 0;
  font-size: 0.9375rem;
}

.related-article-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-secondary, #999);
  margin: 1rem 0;
}

.related-article-cta {
  display: inline-flex;
  align-items: center;
  color: var(--gold, #d4af37);
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.related-article-cta:hover {
  gap: 0.5rem;
}

.related-articles-footer {
  text-align: center;
  margin-top: 2rem;
}

/* ============= EXIT INTENT MODAL ============= */

.exit-intent-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.exit-intent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.exit-intent-content {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 2px solid var(--gold, #d4af37);
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.exit-intent-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.exit-intent-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold, #d4af37);
  transform: rotate(90deg);
}

.exit-intent-body {
  padding: 2.5rem 2rem;
  text-align: center;
}

.exit-intent-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.exit-intent-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold, #d4af37);
  margin: 0 0 1rem 0;
}

.exit-intent-subtitle {
  font-size: 1rem;
  color: var(--text-secondary, #ccc);
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

.exit-intent-form {
  max-width: 100%;
}

.exit-intent-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.exit-intent-input:focus {
  outline: none;
  border-color: var(--gold, #d4af37);
  background: rgba(255, 255, 255, 0.08);
}

.exit-intent-preferences {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
  text-align: left;
}

.exit-intent-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.exit-intent-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold, #d4af37);
}

.exit-intent-checkbox span {
  font-size: 0.9375rem;
  color: var(--text-primary, #fff);
}

.exit-intent-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}

.exit-intent-feedback {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  display: none;
}

.exit-intent-feedback--success {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.exit-intent-feedback--error {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.exit-intent-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary, #999);
}

.trust-item i {
  color: var(--gold, #d4af37);
}

/* ============= INLINE NEWSLETTER ============= */

.newsletter-inline {
  margin: 3rem 0;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
  border: 2px solid var(--gold, #d4af37);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.newsletter-inline::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.newsletter-inline-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.newsletter-inline-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold, #d4af37);
  color: #000;
  border-radius: 12px;
  font-size: 1.75rem;
}

.newsletter-inline-content {
  flex: 1;
}

.newsletter-inline-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold, #d4af37);
  margin: 0 0 0.5rem 0;
}

.newsletter-inline-subtitle {
  font-size: 0.9375rem;
  color: var(--text-secondary, #ccc);
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.newsletter-inline-input-group {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.newsletter-inline-input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  transition: all 0.3s ease;
}

.newsletter-inline-input:focus {
  outline: none;
  border-color: var(--gold, #d4af37);
  background: rgba(0, 0, 0, 0.4);
}

.newsletter-inline-submit {
  flex-shrink: 0;
}

.newsletter-inline-preferences {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.inline-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
}

.inline-checkbox-label input[type="checkbox"] {
  accent-color: var(--gold, #d4af37);
}

.newsletter-inline-trust {
  font-size: 0.8125rem;
  color: var(--text-secondary, #999);
}

.newsletter-inline-feedback {
  margin-top: 0.75rem;
  padding: 0.625rem;
  border-radius: 6px;
  font-size: 0.875rem;
  display: none;
}

.newsletter-inline-feedback--success {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.newsletter-inline-feedback--error {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

/* ============= BACK TO TOP BUTTON ============= */

.back-to-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gold, #d4af37);
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* ============= STICKY NEWSLETTER BAR (MOBILE) ============= */

.sticky-newsletter-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-top: 2px solid var(--gold, #d4af37);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 9997;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.sticky-newsletter-bar.is-visible {
  transform: translateY(0);
}

.sticky-newsletter-close {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
}

.sticky-newsletter-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #fff;
}

.sticky-newsletter-content i {
  color: var(--gold, #d4af37);
  font-size: 1.125rem;
}

.sticky-newsletter-cta {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ============= READING TIME REMAINING ============= */

.reading-time-remaining {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  padding: 0.625rem 1rem;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--gold, #d4af37);
  border-radius: 20px;
  color: var(--gold, #d4af37);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 9996;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.reading-time-remaining.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ============= BOOKMARK BUTTON ============= */

.bookmark-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.bookmark-btn:hover {
  background: rgba(212, 175, 55, 0.9);
  color: #000;
  transform: scale(1.1);
}

.bookmark-btn.is-saved {
  background: var(--gold, #d4af37);
  color: #000;
}

/* ============= TOAST NOTIFICATION ============= */

.toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid var(--gold, #d4af37);
  border-radius: 8px;
  color: #fff;
  font-size: 0.9375rem;
  z-index: 10001;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.toast-notification.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============= RESPONSIVE ============= */

@media (max-width: 768px) {
  .news-teaser-grid,
  .related-articles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .newsletter-inline-container {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-inline-input-group {
    flex-direction: column;
  }

  .newsletter-inline-preferences {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cross-nav-grid {
    gap: 0.75rem;
  }

  .back-to-top-btn {
    bottom: 5rem; /* Move up to avoid sticky bar */
    right: 1rem;
    width: 44px;
    height: 44px;
  }

  .reading-time-remaining {
    bottom: 5rem; /* Move up to avoid sticky bar */
    left: 1rem;
    font-size: 0.8125rem;
    padding: 0.5rem 0.875rem;
  }

  .exit-intent-content {
    border-radius: 12px;
    max-width: 95%;
  }

  .exit-intent-body {
    padding: 2rem 1.5rem;
  }

  .exit-intent-title {
    font-size: 1.5rem;
  }

  .exit-intent-trust {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ============= PRESS STATS BAR ============= */

.press-stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1.5rem 2rem;
  margin: 2rem auto 3rem;
  max-width: 600px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.08) 0%,
    rgba(212, 175, 55, 0.03) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.press-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.press-stat__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af37;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.press-stat__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 600px) {
  .press-stats-bar {
    gap: 1.5rem;
    padding: 1.25rem 1rem;
  }

  .press-stat__value {
    font-size: 2rem;
  }

  .press-stat__label {
    font-size: 0.7rem;
  }
}

/* ============= DISCOVERY CARDS (Cross-page navigation) ============= */

.bio-discovery,
.discovery-section {
  margin: 4rem 0 2rem;
  padding: 0 1rem;
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.discovery-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.discovery-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-6px);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(212, 175, 55, 0.1);
}

.discovery-card__label {
  padding: 0.75rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.discovery-card__media {
  position: relative;
  width: 100%;
  min-height: 120px;
  max-height: 280px;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discovery-card__media img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.discovery-card:hover .discovery-card__media img {
  transform: scale(1.05);
}

.discovery-card__content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.discovery-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.discovery-card:hover .discovery-card__title {
  color: #f0d478;
}

.discovery-card__excerpt,
.discovery-card__meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.5;
}

.discovery-card__count {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: rgba(212, 175, 55, 0.8);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.discovery-card__count i {
  font-size: 0.75rem;
}

.discovery-card__arrow {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #d4af37;
  transition: gap 0.3s ease;
}

.discovery-card:hover .discovery-card__arrow {
  gap: 0.75rem;
}

/* Responsive */
@media (max-width: 600px) {
  .discovery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .discovery-card__media {
    aspect-ratio: 2/1;
  }

  .discovery-card__title {
    font-size: 1.1rem;
  }
}

/* ============= PRINT STYLES ============= */

@media print {
  .exit-intent-modal,
  .sticky-newsletter-bar,
  .back-to-top-btn,
  .reading-time-remaining,
  .bookmark-btn,
  .toast-notification,
  .reading-progress-bar,
  .press-stats-bar,
  .discovery-section,
  .bio-discovery {
    display: none !important;
  }
}
