/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Case Study Article Styles
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.case-study-article {
  background: white;
}

/* Article Header */
.article-header {
  padding: 12rem 2rem 4rem;
  text-align: center;
  background: #f8f8f8;
}

.article-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
  margin-bottom: 1.5rem;
}

.article-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.article-meta {
  font-size: 1rem;
  color: #666;
}

/* Hero Image */
.article-hero-image {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Article Content */
.article-content {
  padding: 6rem 2rem;
}

.content-section {
  margin-bottom: 6rem;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 1.5rem;
}

.day-time {
  font-size: 0.95rem;
  color: #999;
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* Day Section */
.day-section {
  border-top: 1px solid #e0e0e0;
  padding-top: 4rem;
}

.day-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.day-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Blockquote */
blockquote {
  margin: 3rem 0;
  padding: 2rem 3rem;
  background: #f8f8f8;
  border-left: 4px solid #1a1a1a;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: #333;
}

/* Reflection Section */
.reflection-section {
  background: #f8f8f8;
  padding: 4rem;
  border-radius: 12px;
  margin-top: 4rem;
}

.reflection-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

/* Article CTA */
.article-cta {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  text-align: center;
}

.article-cta h2 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.article-cta p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

/* Review Card with Case Study Link */
.review-card.featured {
  border: 2px solid #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.review-card.featured .case-study-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #1a1a1a;
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.review-card.featured .read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: #1a1a1a;
  font-weight: 500;
  text-decoration: none;
}

.review-card.featured .read-more i {
  transition: transform 0.3s ease;
}

.review-card.featured:hover .read-more i {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .article-header {
    padding: 10rem 1.5rem 3rem;
  }

  .article-title {
    font-size: 2rem;
  }

  .article-content {
    padding: 4rem 1.5rem;
  }

  .content-section h2 {
    font-size: 1.6rem;
  }

  .content-section p {
    font-size: 1rem;
  }

  blockquote {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
  }

  .reflection-section {
    padding: 3rem 2rem;
  }

  .article-cta h2 {
    font-size: 2rem;
  }

  .article-cta p {
    font-size: 1.1rem;
  }
}
