/* ==========================================================================
   BLOG DETAIL ARTICLE STYLES — WAREZONE RELOCATIONS
   Matching references/blog.mp4
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Article Hero Banner
   -------------------------------------------------------------------------- */
.article-hero-section {
  padding: 16px;
  background-color: #FFFFFF;
}

.article-hero-card {
  width: 100%;
  height: calc(100vh - 32px);
  height: calc(100dvh - 32px);
  min-height: 560px;
  max-height: 860px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  background-color: #1A1815;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.article-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}

.article-hero-content {
  position: relative;
  z-index: 2;
  padding: 48px;
  max-width: 960px;
}

.article-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.article-date {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}

.article-category-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease;
}

.article-category-badge:hover {
  background: rgba(255, 255, 255, 0.3);
}

.article-hero-title {
  font-family: var(--font-serif, "Instrument Serif", Georgia, serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
}

.article-author-line {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

/* --------------------------------------------------------------------------
   2. Editorial Article Body
   -------------------------------------------------------------------------- */
.article-body-section {
  padding: 80px 0 100px 0;
  background-color: #FFFFFF;
}

.article-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-content {
  color: #222222;
  font-size: 17px;
  line-height: 1.75;
}

.article-content h2 {
  font-family: var(--font-serif, "Instrument Serif", Georgia, serif);
  font-size: 34px;
  font-weight: 400;
  color: #111111;
  margin: 48px 0 20px 0;
  letter-spacing: -0.01em;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  margin: 36px 0 14px 0;
}

.article-content p {
  margin: 0 0 24px 0;
  color: #333333;
}

.article-content ul {
  list-style: disc;
  padding-left: 24px;
  margin: 0 0 32px 0;
}

.article-content ul li {
  margin-bottom: 12px;
  color: #333333;
  line-height: 1.65;
}

.article-content ul li strong {
  color: #111111;
  font-weight: 600;
}

/* Pro Tip Callout Card */
.article-callout-card {
  background-color: #F8F8F8;
  border-radius: 18px;
  padding: 24px 28px;
  margin: 36px 0;
  border: 1px solid #ECECEC;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.article-callout-card p {
  margin: 0;
  color: #222222;
  font-size: 16px;
  line-height: 1.6;
}

.article-callout-card strong {
  font-style: italic;
  font-weight: 700;
  color: #111111;
}

/* Inline Editorial Images */
.article-inline-media {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin: 40px 0;
  background-color: #F0F0F0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.article-inline-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   3. Social Share Bar
   -------------------------------------------------------------------------- */
.article-share-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid #EFEFEF;
}

.share-label {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}

.share-icons-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #F4F4F4;
  color: #222222;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 15px;
}

.share-icon-btn:hover {
  background: #111111;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   4. Related Articles Section
   -------------------------------------------------------------------------- */
.related-articles-section {
  padding: 80px 0 120px 0;
  background-color: #FFFFFF;
  border-top: 1px solid #F0F0F0;
}

.related-articles-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.related-articles-heading {
  font-family: var(--font-serif, "Instrument Serif", Georgia, serif);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 400;
  color: #111111;
  margin: 0 0 40px 0;
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 32px;
}

/* --------------------------------------------------------------------------
   5. Responsive Rules
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .article-hero-card {
    height: calc(100vh - 24px);
    height: calc(100dvh - 24px);
    min-height: 500px;
    border-radius: 24px;
  }
  .article-hero-content {
    padding: 36px 30px;
  }
}

@media (max-width: 768px) {
  .article-hero-section {
    padding: 10px;
  }

  .article-hero-card {
    height: calc(100vh - 20px);
    height: calc(100dvh - 20px);
    min-height: 460px;
    border-radius: 20px;
  }

  .article-hero-content {
    padding: 24px 20px;
  }

  .article-body-section {
    padding: 50px 0 70px 0;
  }

  .article-content {
    font-size: 16px;
    line-height: 1.7;
  }

  .article-content h2 {
    font-size: 28px;
    margin: 36px 0 16px 0;
  }

  .related-articles-section {
    padding: 60px 0 90px 0;
  }

  .related-articles-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
