/* ===== BLOG STYLES ===== */

/* ===== BLOG HERO SECTION ===== */
.blog-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f8f6ff 0%, #f0efff 100%);
}

.blog-hero .breadcrumb {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 25px;
  padding: 8px 20px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  display: inline-flex;
  justify-content: center;
}

.blog-hero .breadcrumb-item {
  font-size: 14px;
}

.blog-hero .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: var(--clr-muted);
  margin: 0 8px;
}

.blog-hero .breadcrumb-item a {
  color: var(--clr-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-hero .breadcrumb-item a:hover {
  color: var(--clr-primary);
}

.article-hero .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: var(--clr-muted);
  margin: 0 8px;
}

.article-hero .breadcrumb-item a {
  color: var(--clr-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-hero .breadcrumb-item a:hover {
  color: var(--clr-text);
}

.blog-hero .breadcrumb-item.active {
  color: var(--clr-primary);
  font-weight: 500;
}

.article-hero .breadcrumb-item.active {
  color: var(--clr-text);
  font-weight: 500;
}

.blog-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  color: var(--clr-text);
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.blog-hero__description {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: var(--clr-muted);
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FEATURED ARTICLE SECTION ===== */
.blog-featured {
  padding: 80px 0;
  background: var(--clr-bg);
}

.featured-article {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.featured-article:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.featured-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-article:hover .featured-image img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--clr-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-content {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.featured-category {
  background: var(--clr-hero-tint);
  color: var(--clr-primary);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-date {
  color: var(--clr-muted);
  font-size: 14px;
  font-weight: 500;
}

.featured-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.featured-title a {
  color: var(--clr-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-title a:hover {
  color: var(--clr-primary);
}

.featured-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-muted);
  margin-bottom: 24px;
}

.featured-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

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

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--clr-text);
  font-size: 14px;
}

.author-title {
  font-size: 12px;
  color: var(--clr-muted);
}

/* ===== BLOG FILTERS SECTION ===== */
.blog-filters {
  padding: 60px 0 40px;
  background: #fafbfc;
  border-bottom: 1px solid var(--clr-border);
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.category-btn {
  background: white;
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-btn:hover,
.category-btn.active {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: white;
  transform: translateY(-2px);
}

.blog-search {
  margin-top: 20px;
}

.search-form {
  position: relative;
}

.search-input-wrapper {
  position: relative;
  display: flex;
}

.search-input {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border: 1px solid var(--clr-border);
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(107, 78, 255, 0.1);
}

.search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  background: var(--clr-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.search-btn:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-50%) scale(1.05);
}

/* ===== BLOG GRID SECTION ===== */
.blog-grid {
  padding: 60px 0 80px;
  background: #fafbfc;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  margin-bottom: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.blog-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.1);
}

.blog-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--clr-primary);
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card__content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.blog-card__date,
.blog-card__read-time {
  color: var(--clr-muted);
  font-size: 12px;
  font-weight: 500;
}

.blog-card__date::after {
  content: "•";
  margin-left: 8px;
  color: var(--clr-border);
}

.blog-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  flex: 1;
}

.blog-card__title a {
  color: var(--clr-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card__title a:hover {
  color: var(--clr-primary);
}

.blog-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--clr-muted);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.blog-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text);
}

.read-more-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-hero-tint);
  color: var(--clr-primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.read-more-btn:hover {
  background: var(--clr-primary);
  color: white;
  transform: scale(1.1);
}

/* ===== LOAD MORE BUTTON ===== */
.load-more-btn {
  padding: 14px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 78, 255, 0.3);
}

/* ===== NEWSLETTER SECTION ===== */
.blog-newsletter {
  padding: 80px 0;
  background: var(--clr-bg);
}

.newsletter-card {
  background: linear-gradient(135deg, var(--clr-primary) 0%, #8b5cf6 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.1; }
}

.newsletter-content {
  position: relative;
  z-index: 2;
}

.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.newsletter-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  max-width: 400px;
  margin: 0 auto 20px;
}

.newsletter-form .input-group {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.newsletter-input {
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  border-radius: 25px 0 0 25px;
}

.newsletter-input:focus {
  box-shadow: none;
  outline: none;
}

.newsletter-btn {
  border: none;
  padding: 16px 24px;
  font-weight: 600;
  border-radius: 0 25px 25px 0;
  background: white;
  color: var(--clr-primary);
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--clr-primary-dark);
}

.newsletter-privacy {
  opacity: 0.8;
  margin: 0;
}

.newsletter-privacy .privacy-link {
  color: white;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.newsletter-privacy .privacy-link:hover {
  color: white;
  text-decoration-thickness: 2px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
  .blog-hero {
    padding: 60px 0 40px;
  }
  
  .blog-featured {
    padding: 60px 0;
  }
  
  .featured-content {
    padding: 32px;
  }
  
  .featured-image {
    min-height: 300px;
  }
  
  .blog-filters {
    padding: 40px 0 30px;
  }
  
  .blog-categories {
    margin-bottom: 20px;
  }
  
  .blog-grid {
    padding: 40px 0 60px;
  }
  
  .newsletter-card {
    padding: 40px 24px;
  }
}

@media (max-width: 767px) {
  .blog-hero__title {
    font-size: clamp(28px, 8vw, 40px);
  }
  
  .blog-hero__description {
    font-size: 16px;
  }
  
  .featured-article .row {
    flex-direction: column-reverse;
  }
  
  .featured-content {
    padding: 24px;
  }
  
  .featured-image {
    min-height: 250px;
  }
  
  .featured-title {
    font-size: 24px;
  }
  
  .blog-categories {
    justify-content: center;
  }
  
  .category-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .blog-card__content {
    padding: 20px;
  }
  
  .blog-card__title {
    font-size: 18px;
  }
  
  .newsletter-card {
    padding: 32px 20px;
  }
  
  .newsletter-title {
    font-size: 24px;
  }
  
  .newsletter-description {
    font-size: 16px;
  }
  
  .newsletter-form .input-group {
    flex-direction: column;
    border-radius: 12px;
  }
  
  .newsletter-input {
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .newsletter-btn {
    border-radius: 0 0 12px 12px;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .blog-hero {
    padding: 40px 0 30px;
  }
  
  .blog-hero .breadcrumb {
    padding: 6px 16px;
    font-size: 12px;
  }
  
  .featured-content {
    padding: 20px;
  }
  
  .featured-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .blog-categories {
    gap: 8px;
  }
  
  .category-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .search-input {
    padding: 10px 40px 10px 16px;
    font-size: 13px;
  }
  
  .search-btn {
    width: 32px;
    height: 32px;
    right: 6px;
  }
}

/* ===== BLOG DETAIL STYLES ===== */

/* ===== ARTICLE HERO SECTION ===== */
.article-hero {
  padding: 60px 0 30px;
  background: linear-gradient(135deg, #f8f6ff 0%, #f0efff 100%);
  text-align: center;
}

.article-hero .breadcrumb {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 24px;
  backdrop-filter: none;
  display: inline-flex;
  justify-content: center;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.article-category {
  background: var(--clr-primary);
  color: white;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-date,
.article-read-time {
  color: var(--clr-muted);
  font-size: 14px;
  font-weight: 500;
}

.article-date::after {
  content: "•";
  margin: 0 8px;
  color: var(--clr-border);
}

.article-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--clr-text);
  font-size: 16px;
  margin-bottom: 4px;
}

.author-title {
  font-size: 14px;
  color: var(--clr-primary);
  font-weight: 500;
  margin-bottom: 4px;
}

.author-bio {
  font-size: 12px;
  color: var(--clr-muted);
}

/* ===== ARTICLE FEATURED IMAGE ===== */
.article-featured-image {
  padding: 40px 0 60px;
  background: var(--clr-bg);
}

.featured-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.featured-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== ARTICLE CONTENT ===== */
.article-content {
  padding: 60px 0 80px;
  background: var(--clr-bg);
}

.article-body {
  background: white;
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.article-intro .lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--clr-muted);
  font-weight: 500;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--clr-border);
}

.article-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--clr-text);
}

.article-text h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.3;
  color: var(--clr-text);
  margin: 48px 0 24px 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}

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

.article-text h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.4;
  color: var(--clr-text);
  margin: 32px 0 16px 0;
  font-weight: 400;
}

.article-text p {
  margin-bottom: 20px;
}

.article-quote {
  background: var(--clr-hero-tint);
  border-left: 4px solid var(--clr-primary);
  padding: 24px 32px;
  margin: 32px 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--clr-text);
}

.article-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 14px;
  color: var(--clr-muted);
  font-weight: 600;
}

.article-list {
  margin: 24px 0;
  padding-left: 0;
  list-style: none;
}

.article-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--clr-text);
}

.article-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--clr-primary);
  font-weight: 600;
}

.article-numbered-list {
  margin: 24px 0;
  padding-left: 20px;
}

.article-numbered-list li {
  margin-bottom: 16px;
  color: var(--clr-text);
  line-height: 1.6;
}

.article-highlight {
  background: linear-gradient(135deg, var(--clr-hero-tint) 0%, #f0efff 100%);
  padding: 32px;
  border-radius: 16px;
  margin: 32px 0;
  border: 1px solid var(--clr-border);
}

.article-highlight h4 {
  color: var(--clr-primary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.article-highlight ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.article-highlight li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--clr-text);
}

.article-highlight li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--clr-primary);
  font-weight: 600;
}

.stats-container {
  margin: 40px 0;
}

.stat-box {
  background: white;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  border: 1px solid var(--clr-border);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--clr-primary);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--clr-text);
  font-weight: 600;
}

.article-tips {
  margin: 32px 0;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid var(--clr-primary);
}

.tip-item i {
  color: var(--clr-primary);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.tip-item strong {
  color: var(--clr-text);
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

/* ===== ARTICLE TAGS ===== */
.article-tags {
  border-top: 1px solid var(--clr-border);
  padding-top: 32px;
  margin-top: 48px;
}

.article-tags h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 16px;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--clr-hero-tint);
  color: var(--clr-primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--clr-primary);
  color: white;
  transform: translateY(-2px);
}

/* ===== SOCIAL SHARE ===== */
.article-share {
  border-top: 1px solid var(--clr-border);
  padding-top: 32px;
  margin-top: 32px;
}

.article-share h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 16px;
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
}

.share-linkedin { background: #0077b5; }
.share-twitter { background: #1da1f2; }
.share-facebook { background: #1877f2; }
.share-email { background: #34495e; }

.share-btn:hover {
  color: white;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===== ARTICLE SIDEBAR ===== */
.article-sidebar {
  padding-left: 40px;
}

.sidebar-widget {
  background: white;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--clr-border);
}

.widget-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--clr-primary);
}

/* ===== AUTHOR WIDGET ===== */
.author-card {
  text-align: center;
}

.author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.author-content .author-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 4px;
}

.author-content .author-title {
  font-size: 14px;
  color: var(--clr-primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.author-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--clr-muted);
  margin-bottom: 20px;
}

.author-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.author-social .social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-hero-tint);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-social .social-link:hover {
  background: var(--clr-primary);
  color: white;
  transform: translateY(-2px);
}

/* ===== RELATED ARTICLES ===== */
.related-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.related-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.related-thumb {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.related-content {
  flex: 1;
}

.related-title {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 6px;
}

.related-title a {
  color: var(--clr-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-title a:hover {
  color: var(--clr-primary);
}

.related-date {
  font-size: 12px;
  color: var(--clr-muted);
  font-weight: 500;
}

/* ===== NEWSLETTER SIDEBAR ===== */
.newsletter-sidebar {
  text-align: center;
  background: linear-gradient(135deg, var(--clr-primary) 0%, #8b5cf6 100%);
  color: white;
  padding: 32px;
  margin: -32px;
  border-radius: 20px;
}

.newsletter-sidebar .widget-title {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.newsletter-text {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.newsletter-form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-input-sidebar {
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
}

.newsletter-input-sidebar:focus {
  box-shadow: none;
  outline: none;
}

.newsletter-btn-sidebar {
  background: white;
  color: var(--clr-primary);
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-btn-sidebar:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--clr-primary-dark);
}

/* ===== RESPONSIVE STYLES FOR BLOG DETAIL ===== */
@media (max-width: 991px) {
  .article-hero {
    padding: 60px 0 30px;
  }
  
  .article-body {
    padding: 40px;
  }
  
  .article-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .article-featured-image {
    padding: 30px 0 40px;
  }
}

@media (max-width: 767px) {
  .article-hero {
    padding: 40px 0 20px;
  }
  
  .article-title {
    font-size: clamp(24px, 6vw, 32px);
  }
  
  .article-body {
    padding: 24px;
  }
  
  .article-text h2 {
    font-size: 24px;
    margin: 32px 0 16px 0;
  }
  
  .article-text h3 {
    font-size: 20px;
    margin: 24px 0 12px 0;
  }
  
  .article-quote {
    padding: 16px 20px;
    font-size: 16px;
  }
  
  .article-highlight {
    padding: 20px;
  }
  
  .stats-container .row {
    margin: 0 -8px;
  }
  
  .stats-container .col-md-6 {
    padding: 0 8px;
  }
  
  .stat-box {
    padding: 16px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .sidebar-widget {
    padding: 24px;
  }
  
  .share-buttons {
    justify-content: center;
  }
  
  .article-meta {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .article-author {
    padding: 16px;
  }
  
  .tip-item {
    padding: 16px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .article-body {
    padding: 20px;
  }
  
  .article-intro .lead {
    font-size: 18px;
  }
  
  .article-text {
    font-size: 15px;
  }
  
  .article-text h2 {
    font-size: 20px;
  }
  
  .article-text h3 {
    font-size: 18px;
  }
  
  .stats-container .col-md-6 {
    margin-bottom: 16px;
  }
  
  .share-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .newsletter-sidebar {
    padding: 24px;
  }
}
