/* Blog Article Styles */

.blog-article {
  min-height: 100vh;
  background: #0a0a0a;
  padding-top: 80px;
  padding-bottom: 60px;
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Article Header */
.article-header {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #999;
}

.article-meta .author {
  color: #fff;
  font-weight: 600;
}

.article-meta .divider {
  color: #555;
}

.article-meta .role {
  color: #00ff88;
  font-weight: 500;
}

/* Article Content */
.article-content {
  color: #e0e0e0;
  font-size: 1.125rem;
  line-height: 1.8;
}

.article-section {
  margin-bottom: 50px;
}

.article-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  margin-top: 40px;
}

.article-section p {
  margin-bottom: 20px;
  color: #d0d0d0;
}

.article-section strong {
  color: #fff;
  font-weight: 600;
}

.article-section em {
  color: #00ff88;
  font-style: italic;
}

/* Highlight Text */
.highlight-text {
  background: rgba(0, 255, 136, 0.1);
  border-left: 4px solid #00ff88;
  padding: 20px 24px;
  margin: 30px 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  border-radius: 4px;
}

.highlight-text.large {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  border-left: none;
  border: 2px solid #00ff88;
}

/* Article List */
.article-list {
  list-style: none;
  padding-left: 0;
  margin: 30px 0;
}

.article-list li {
  padding-left: 40px;
  margin-bottom: 16px;
  position: relative;
  color: #d0d0d0;
}

.article-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #00ff88;
  font-weight: 700;
  font-size: 1.3rem;
}

/* Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.result-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.result-card:hover {
  background: rgba(0, 255, 136, 0.05);
  border-color: #00ff88;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 255, 136, 0.2);
}

.result-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 12px;
}

.result-card p {
  color: #d0d0d0;
  margin-bottom: 0;
  font-size: 1rem;
}

/* Inline Links */
.inline-link {
  color: #00ff88;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.inline-link:hover {
  color: #33ffaa;
}

/* Final Message Section */
.final-message {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Article CTA */
.article-cta {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.1) 0%,
    rgba(0, 204, 106, 0.05) 100%
  );
  border: 2px solid #00ff88;
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  margin-top: 60px;
}

.article-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  color: #000;
  border: none;
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.cta-buttons .btn-secondary {
  background: #1a1a1a !important;
  color: #00ff88 !important;
  border: 2px solid #00ff88 !important;
}

.cta-buttons .btn-secondary:hover {
  background: #000 !important;
  color: #00ff88 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .article-container {
    padding: 20px 16px;
  }

  .article-title {
    font-size: 2rem;
  }

  .article-section h2 {
    font-size: 1.5rem;
  }

  .article-content {
    font-size: 1rem;
  }

  .highlight-text {
    font-size: 1.1rem;
    padding: 16px 20px;
  }

  .highlight-text.large {
    font-size: 1.2rem;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .article-cta {
    padding: 40px 24px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .article-title {
    font-size: 1.75rem;
  }

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .article-meta .divider {
    display: none;
  }
}
