/* ==========================================
   GOSSIP ARTICLE PAGE (SHOW)
   - Single gossip story layout
   - Hero + article + sidebar
========================================== */

.gossip-article-page {
  background: radial-gradient(
      circle at top,
      rgba(245, 158, 11, 0.22),
      transparent 60%
    ),
    radial-gradient(circle at bottom, rgba(15, 23, 42, 0.95), #020617);
  min-height: 100vh;
  color: #e5e7eb;
}

/* Global dot separator (shared across site) */
.dot {
  display: inline-block;
  margin: 0 0.15rem;
  opacity: 0.7;
}

/* ===========================
   HERO
=========================== */

.gossip-article-hero {
  position: relative;
  padding: 1.7rem 1rem 1.9rem;
  overflow: hidden;
}

.gossip-article-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: blur(8px) brightness(0.8);
}

.gossip-article-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 0.9)
  );
}

.gossip-article-hero-inner {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
}

/* Breadcrumb */

.gossip-article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.7rem;
}

.gossip-article-breadcrumb-link {
  color: #9ca3af;
  text-decoration: none;
}

.gossip-article-breadcrumb-link:hover {
  text-decoration: underline;
}

.gossip-article-breadcrumb-separator {
  opacity: 0.7;
}

/* Kicker + title */

.gossip-article-kicker-row {
  margin-bottom: 0.6rem;
}

.gossip-article-category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.9);
  border: 1px solid rgba(248, 250, 252, 0.18);
  color: #f97316;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.gossip-article-header {
  margin-bottom: 1rem;
}

.gossip-article-title {
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.gossip-article-summary {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #d1d5db;
}

/* Meta row */

.gossip-article-meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border-top: 1px solid rgba(55, 65, 81, 0.8);
  border-bottom: 1px solid rgba(55, 65, 81, 0.8);
  padding: 0.7rem 0;
  margin-top: 0.5rem;
}

/* Author */

.gossip-article-author-block {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.gossip-article-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  overflow: hidden;
  background: radial-gradient(circle at top, #f5b200, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #020617;
}

.gossip-article-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gossip-article-author-initials {
  text-transform: uppercase;
}

.gossip-article-author-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.gossip-article-author-name {
  font-size: 0.85rem;
  font-weight: 600;
}

.gossip-article-author-role {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Meta details and actions */

.gossip-article-meta-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.gossip-article-meta-details .dot {
  opacity: 0.7;
}

.gossip-article-meta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gossip-article-meta-btn {
  border-radius: 999px;
  border: 1px solid rgba(75, 85, 99, 1);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* ===========================
   ARTICLE LAYOUT
=========================== */

.gossip-article-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.9fr);
  gap: 1.75rem;
}

/* Main article */

.gossip-article-main {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 1.2rem;
  border: 1px solid rgba(30, 64, 175, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
  padding: 1.1rem 1.05rem 1.4rem;
}

/* Cover */

.gossip-article-cover {
  margin: 0 0 0.9rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #020617;
}

.gossip-article-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.gossip-article-cover-caption {
  padding: 0.45rem 0.7rem 0.6rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Body */

.gossip-article-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #e5e7eb;
}

.gossip-article-body p {
  margin: 0 0 0.95rem;
}

/* Footer: tags + share */

.gossip-article-footer {
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  padding-top: 0.85rem;
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.gossip-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.gossip-article-tags-label {
  font-size: 0.8rem;
  color: #9ca3af;
}

.gossip-article-tag-pill {
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 1);
  background: rgba(15, 23, 42, 0.98);
  color: #e5e7eb;
  font-size: 0.75rem;
  padding: 0.25rem 0.7rem;
  cursor: pointer;
}

.gossip-article-share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.gossip-article-share-label {
  font-size: 0.8rem;
  color: #9ca3af;
}

.gossip-article-share-btn {
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 1);
  background: rgba(15, 23, 42, 0.98);
  color: #e5e7eb;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  cursor: pointer;
}

/* ===========================
   RELATED STORIES
=========================== */

.gossip-related-section {
  margin-top: 1.3rem;
}

.gossip-section-header {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.gossip-section-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
  color: #f9fafb;
}

.gossip-section-subtitle {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

.gossip-section-link {
  font-size: 0.75rem;
  color: #f5b200;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding-top: 0.1rem;
}

.gossip-section-link:hover {
  text-decoration: underline;
}

.gossip-related-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
}

.gossip-related-card {
  border-radius: 0.9rem;
  overflow: hidden;
  background: rgba(15, 23, 42, 1);
  border: 1px solid rgba(55, 65, 81, 1);
}

.gossip-related-thumb-link {
  display: block;
}

.gossip-related-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.gossip-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.22s ease;
}

.gossip-related-thumb-link:hover img {
  transform: scale(1.06);
}

.gossip-related-category {
  position: absolute;
  left: 0.8rem;
  bottom: 0.7rem;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.9);
  color: #facc15;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gossip-related-body {
  padding: 0.7rem 0.8rem 0.8rem;
}

.gossip-related-title {
  font-size: 0.88rem;
}

.gossip-related-title a {
  color: #f9fafb;
  text-decoration: none;
}

.gossip-related-title a:hover {
  text-decoration: underline;
}

/* ===========================
   SIDEBAR
=========================== */

.gossip-article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.gossip-article-sidebar-section {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 1.05rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.78);
  padding: 1rem 0.9rem 1.1rem;
}

.gossip-article-sidebar-section--cta {
  background: radial-gradient(
    circle at top left,
    rgba(245, 158, 11, 0.3),
    rgba(15, 23, 42, 1)
  );
  border-color: rgba(245, 158, 11, 0.7);
}

.gossip-sidebar-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.65rem;
}

.gossip-sidebar-header {
  margin-bottom: 0.2rem;
}

/* Sections grid */

.gossip-article-sections-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.gossip-article-section-pill {
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 1);
  background: rgba(15, 23, 42, 0.98);
  color: #e5e7eb;
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  text-decoration: none;
  white-space: nowrap;
}

.gossip-article-section-pill.is-active {
  background: #f5b200;
  border-color: #f5b200;
  color: #111827;
}

/* Latest headlines list */

.gossip-sidebar-latest-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gossip-sidebar-latest-item + .gossip-sidebar-latest-item {
  border-top: 1px solid rgba(31, 41, 55, 0.85);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

.gossip-sidebar-latest-link {
  text-decoration: none;
  display: block;
}

.gossip-sidebar-latest-title {
  font-size: 0.85rem;
  color: #f9fafb;
}

.gossip-sidebar-latest-meta {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* CTA sidebar */

.gossip-sidebar-text {
  font-size: 0.8rem;
  color: #e5e7eb;
  margin-bottom: 0.7rem;
}

.gossip-sidebar-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 0.55rem 1.2rem;
  background: linear-gradient(135deg, #f5b200, #f97316);
  color: #111827;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0.4rem;
}

.gossip-sidebar-note {
  font-size: 0.72rem;
  color: #d1d5db;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (min-width: 640px) {
  .gossip-article-hero {
    padding-inline: 1.5rem;
    padding-top: 2rem;
  }

  .gossip-article-title {
    font-size: 2rem;
  }

  .gossip-article-summary {
    font-size: 0.95rem;
  }

  .gossip-article-main {
    padding: 1.3rem 1.25rem 1.6rem;
  }
}

@media (min-width: 768px) {
  .gossip-article-meta-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .gossip-article-layout {
    grid-template-columns: minmax(0, 2.1fr) minmax(260px, 1fr);
    padding-inline: 1.5rem;
  }

  .gossip-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .gossip-article-hero {
    padding-inline: 2rem;
    padding-bottom: 2.3rem;
  }

  .gossip-article-title {
    font-size: 2.3rem;
  }

  .gossip-article-summary {
    font-size: 1rem;
  }
}
