/* article-insider.css */

/* BODY BACKGROUND AND BASE COLORS */
body {
  background: linear-gradient(to bottom, #140000, #0b0b0b);
  color: #eee;
  font-family: 'Inter', sans-serif;
}

/* NEWS BANNER */
.news-banner {
  background: crimson;
  color: white;
  text-align: center;
  padding: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 3px solid #ff6666;
}

/* ARTICLE CONTAINER */
.article-container {
  max-width: 950px;
  margin: auto;
  padding: 2rem;
}

/* HEADLINE & SUBTITLE */
.article-headline {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  color: #ff4d4d;
  line-height: 1.1;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.article-subtitle {
  font-size: 1.2rem;
  color: #bbb;
  margin-bottom: 20px;
  font-style: italic;
}

.back-button {
    display: inline-block;
    padding: 10px 16px;
    margin-bottom: 20px;

    background: crimson;
    color: white;

    text-decoration: none;
    font-weight: bold;

    border-radius: 6px;

    transition: .2s;
}

.back-button:hover {
    background: #ff4d4d;
}

/* META INFO */
.article-meta {
  color: #888;
  margin-bottom: 25px;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
}

/* ARTICLE CONTENT */
.article-content {
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.article-content p {
  margin-bottom: 24px;
}

/* QUOTES */
.quote-box {
  border-left: 4px solid crimson;
  background: #1b1b1b;
  padding: 20px;
  margin: 25px 0;
  font-style: italic;
  color: #ddd;
}

/* FAKE BREAKING NEWS */
.fake-breaking {
  color: #ff6666;
  font-weight: bold;
  text-transform: uppercase;
}

/* COMMENTS SECTION */
.comments-section {
  margin-top: 40px;
  padding: 24px;
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
}

.comments-section h3 {
  color: crimson;
  font-family: 'Oswald', sans-serif;
}

.comments-section input,
.comments-section textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  background: #0b0b0b;
  border: 1px solid #333;
  border-radius: 8px;
  color: #eee;
  box-sizing: border-box;
}

.comments-section button {
  background: crimson;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.comment {
  border-bottom: 1px solid #333;
  padding: 14px 0;
}

.comment strong {
  color: #ff4d4d;
}