/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/
Description: Hello Elementor Child Theme
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/


/* Single Article Layout */
.single-post .single-article {
  max-width: 800px !important;
  margin: 0 auto !important;
  padding: 40px 20px 60px !important;
}

.single-post .article-back-link {
  margin-bottom: 30px;
}

.single-post .article-back-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  font-weight: 500;
}

.single-post .article-back-link a:hover {
  color: #41A8F5;
}

.single-post .article-featured-image {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
}

.single-post .article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-post .article-category a {
  font-size: 13px;
  font-weight: 600;
  color: #41A8F5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.single-post .article-title {
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  color: #1a1a2e !important;
}

.single-post .article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  font-size: 14px;
  color: #777;
}

.single-post .article-meta-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ccc;
  display: inline-block;
}

.single-post .article-content {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.single-post .article-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a2e;
  margin-top: 48px;
}

.single-post .article-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a2e;
  margin-top: 36px;
}

.single-post .article-content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 24px 0;
}

.single-post .article-content a {
  color: #41A8F5;
}

.single-post .article-content blockquote {
  border-left: 3px solid #41A8F5;
  padding: 16px 24px;
  background: #f8f9fb;
  border-radius: 0 8px 8px 0;
}

.single-post .article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid #eee;
  margin-top: 40px;
}

.single-post .article-tag {
  padding: 6px 14px;
  font-size: 13px;
  color: #555;
  background: #f4f5f7;
  border-radius: 20px;
  text-decoration: none;
}

.single-post .article-tag:hover {
  background: #41A8F5;
  color: #fff;
}

.single-post .related-heading {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 24px;
}

.single-post .related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.single-post .related-card {
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: box-shadow 0.3s ease;
}

.single-post .related-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.single-post .related-card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.single-post .related-card-content {
  padding: 16px;
}

.single-post .related-card-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #41A8F5;
}

.single-post .related-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 8px 0;
}

.single-post .related-card-date {
  font-size: 13px;
  color: #999;
}

@media (max-width: 768px) {
  .single-post .single-article {
    padding: 24px 16px 40px !important;
  }

  .single-post .article-title {
    font-size: 28px !important;
  }

  .single-post .related-grid {
    grid-template-columns: 1fr;
  }
}