/* ===================================
   Industry Article – Responsive CSS
=================================== */

body {
  background: #f6f7f9;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: #2b2b2b;
}

/* Container spacing */
.article-page {
  padding: 24px 0;
}

/* Article card */
.article-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  padding: 28px;
}

/* Title */
.article-card h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
  line-height: 1.25;
}

/* Meta info */
.article-meta {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 18px;
}

/* Featured image */
.article-featured-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}

/* Content */
.article-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #374151;
}

.article-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: #111827;
}

.article-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 22px 0 10px;
}

/* Lists */
.article-content ul {
  padding-left: 20px;
  margin-bottom: 18px;
}

.article-content li {
  margin-bottom: 6px;
}

/* Quote / Highlight */
.industry-quote {
  background: #fff7ed;
  border-left: 4px solid #f59e0b;
  padding: 16px 18px;
  margin: 24px 0;
  font-style: italic;
  color: #78350f;
  border-radius: 6px;
}

/* Tables */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}

.article-content th,
.article-content td {
  padding: 10px;
  border: 1px solid #e5e7eb;
}

.article-content th {
  background: #f3f4f6;
  font-weight: 600;
}

/* Sidebar (if used) */
.article-sidebar {
  position: sticky;
  top: 90px;
}

/* ===================================
   Responsive Breakpoints
=================================== */

@media (max-width: 992px) {
  .article-card {
    padding: 22px;
  }
}

@media (max-width: 768px) {
  .article-card h1 {
    font-size: 1.6rem;
  }

  .article-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .article-page {
    padding: 12px 0;
  }

  .article-card {
    padding: 18px;
    border-radius: 10px;
  }

  .article-meta {
    font-size: 0.8rem;
  }
}
/* ===================================
   Breadcrumb
=================================== */

.article-breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.article-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-breadcrumb a:hover {
  color: #c2410c;
  text-decoration: underline;
}

.article-breadcrumb span {
  color: #9ca3af;
  margin: 0 6px;
}

.article-breadcrumb strong {
  color: #1f2937;
  font-weight: 600;
}
/* ===================================
   Related Articles Sidebar
=================================== */

.related-sidebar {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  position: sticky;
  top: 90px; /* below navbar */
}

/* Title */
.sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111827;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 8px;
}

/* List */
.related-article-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-article-list li {
  margin-bottom: 12px;
}

/* Link */
.related-article-list a {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.related-article-list a:hover {
  color: #c2410c;
  text-decoration: underline;
}

/* Date */
.related-article-list span {
  font-size: 0.75rem;
  color: #6b7280;
}
