/* ====================================
   ARTICLE SIMPLE - Bluesite HR Hub
   ==================================== */

.article-page {
  background: #ffffff;
}

/* BREADCRUMB */
.breadcrumb-bar {
  background: #f8f9fa;
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6c757d;
}

.breadcrumb a {
  color: #2D749C;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #C6016B;
}

.breadcrumb .current {
  color: #495057;
  font-weight: 500;
}

/* ARTICLE HEADER */
.article-header {
  padding: 3rem 0 2rem;
  background: #ffffff;
}

.wrap-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.article-meta .category {
  color: #2D749C;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.article-meta .date,
.article-meta .read-time {
  color: #6c757d;
}

.article-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 1rem;
}

.article-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #495057;
  margin: 0 0 2rem;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: contain;
}

.author-name {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.9rem;
  color: #6c757d;
}

/* FEATURED IMAGE */
.featured-image {
  padding: 2rem 0;
  background: #ffffff;
}

.featured-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ARTICLE CONTENT */
.article-content {
  padding: 3rem 0;
  background: #ffffff;
}

.article-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}

.article-content .lead {
  font-size: 1.35rem;
  font-weight: 500;
  color: #2D749C;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.article-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 3rem 0 1.5rem;
  line-height: 1.3;
}

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 2.5rem 0 1rem;
}

.article-content ul,
.article-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-content li {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0.75rem;
}

.article-content blockquote {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid #C6016B;
  font-size: 1.25rem;
  font-style: italic;
  color: #2D749C;
  border-radius: 4px;
}

.article-content strong {
  font-weight: 600;
  color: #1a1a1a;
}

.article-content em {
  font-style: italic;
  color: #495057;
}

/* HIGHLIGHT BOX */
.highlight-box {
  background: linear-gradient(135deg, #2D749C 0%, #1a5a7a 100%);
  color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  margin: 2.5rem 0;
}

.highlight-box h3 {
  color: #ffffff;
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.highlight-box p {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.highlight-box em {
  color: rgba(255, 255, 255, 0.8);
}

/* SHARE SECTION */
.share-section {
  padding: 2rem 0;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.share-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.share-btn.linkedin {
  background: #0077b5;
  color: #ffffff;
}

.share-btn.linkedin:hover {
  background: #005885;
  transform: translateY(-2px);
}

.share-btn.twitter {
  background: #1da1f2;
  color: #ffffff;
}

.share-btn.twitter:hover {
  background: #0d8bd9;
  transform: translateY(-2px);
}

.share-btn.facebook {
  background: #1877f2;
  color: #ffffff;
}

.share-btn.facebook:hover {
  background: #0d65d9;
  transform: translateY(-2px);
}

/* CTA SECTION */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #2D749C 0%, #1a5a7a 100%);
  color: #ffffff;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #C6016B;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s;
}

.cta-button:hover {
  background: #a00158;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(198, 1, 107, 0.3);
}

/* BACK TO BLOG */
.back-to-blog {
  padding: 2rem 0 4rem;
  background: #ffffff;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: #2D749C;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: #C6016B;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .article-title {
    font-size: 2rem;
  }

  .article-subtitle {
    font-size: 1.125rem;
  }

  .article-content p,
  .article-content li {
    font-size: 1rem;
  }

  .article-content h2 {
    font-size: 1.5rem;
  }

  .article-content .lead {
    font-size: 1.125rem;
  }

  .wrap-article {
    padding: 0 1.5rem;
  }

  .share-buttons {
    flex-direction: column;
  }

  .share-btn {
    justify-content: center;
  }
}
/* CTA / Highlight Box en fondo oscuro */
.highlight-box {
  color: #ffffff;
}

.highlight-box h1,
.highlight-box h2,
.highlight-box h3,
.highlight-box h4,
.highlight-box p,
.highlight-box li,
.highlight-box strong,
.highlight-box span {
  color: #ffffff;
}

.highlight-box ul {
  color: #ffffff;
}
