/**
 * ============================================================================
 * ARTICLE COMMENTS - BASE STYLES
 * ============================================================================
 * Base structural styles for the Disqus comments section.
 * Defines layout, spacing, typography, and container structure.
 * 
 * DESIGN SYSTEM:
 * - Matches site's color scheme and typography
 * - Consistent spacing with other components
 * - Clean, modern rectangular container design
 * ============================================================================
 */

/* ========================================================================== */
/* ARTICLE COMMENTS SECTION - MAIN CONTAINER */
/* ========================================================================== */
.article-comments {
  width: 100%;
  margin: 40px 0;
  padding: 0;
}

/* ========================================================================== */
/* COMMENTS HEADER - TITLE SECTION */
/* ========================================================================== */
.article-comments__header {
  margin-bottom: 24px;
  padding: 0;
}

.article-comments__title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
  padding: 0;
  text-align: start;
}

/* ========================================================================== */
/* COMMENTS CONTAINER - RECTANGLE BOX */
/* ========================================================================== */
.article-comments__container {
  background-color: #191919;
  border: 2px solid #211d25;
  padding: 32px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

/* ========================================================================== */
/* DISQUS THREAD - COMMENT AREA */
/* ========================================================================== */
.article-comments__thread {
  min-height: 200px;
  width: 100%;
}

/* ========================================================================== */
/* NOSCRIPT FALLBACK - NO JAVASCRIPT MESSAGE */
/* ========================================================================== */
.article-comments__noscript {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 40px 20px;
  margin: 0;
}

.article-comments__noscript a {
  color: #87ceeb;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.article-comments__noscript a:hover {
  color: #ffffff;
  text-decoration: underline;
}

