/* Article and Blog Styles */

.blog-main,
.article-main,
.reviews-main {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

.blog-hero,
.reviews-hero {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.blog-hero h1,
.reviews-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.blog-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
}

.blog-container,
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.blog-post {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-post h2 {
  color: var(--primary-blue);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.post-meta {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.post-meta span {
  margin-right: 0.5rem;
}

.blog-post p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  color: var(--primary-orange);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--light-orange);
  transform: translateX(4px);
  display: inline-block;
}

.blog-cta,
.review-cta {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 3rem;
}

.blog-cta h2,
.review-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.blog-cta p,
.review-cta p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.blog-cta .cta-button,
.review-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-orange);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.blog-cta .cta-button:hover,
.review-cta .cta-button:hover {
  background: var(--light-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Article Styles */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.article-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--gray-medium);
}

.article-header h1 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.article-meta {
  color: var(--text-light);
  font-size: 0.875rem;
}

.article-meta span {
  margin-right: 1rem;
}

.article-body {
  color: var(--text-dark);
  line-height: 1.8;
}

.article-body h2 {
  font-size: 1.75rem;
  color: var(--primary-blue);
  margin: 2rem 0 1rem;
}

.article-body h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin: 1.5rem 0 1rem;
}

.article-body p {
  margin-bottom: 1.5rem;
}

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

.article-body li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.article-body strong {
  color: var(--primary-blue);
  font-weight: 600;
}

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--gray-medium);
}

.article-cta {
  background: var(--gray-light);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 2rem;
}

.article-cta h3 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.article-cta p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.nav-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--light-orange);
}

/* Reviews Styles */
.rating-summary {
  margin-top: 2rem;
}

.rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.score {
  font-size: 3rem;
  font-weight: 800;
}

.stars {
  font-size: 1.5rem;
}

.total {
  font-size: 1rem;
  opacity: 0.9;
}

.reviews-list {
  padding: 2rem 0;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

.reviewer-info h3 {
  font-size: 1.125rem;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.review-date {
  font-size: 0.875rem;
  color: var(--text-light);
}

.review-rating {
  color: #ffc107;
}

.review-service {
  margin-bottom: 1rem;
}

.service-badge {
  display: inline-block;
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
}

.review-text {
  color: var(--text-dark);
  line-height: 1.6;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-hero h1,
  .reviews-hero h1,
  .article-header h1 {
    font-size: 1.75rem;
  }
  
  .blog-post h2 {
    font-size: 1.25rem;
  }
  
  .article-body h2 {
    font-size: 1.5rem;
  }
  
  .article-content {
    padding: 1rem;
  }
  
  .review-header {
    flex-direction: column;
    gap: 0.5rem;
  }
}