/* ========================================
   Blog Post Detail Styles
   ======================================== */

.montor-blog-post-detail {
  position: relative;
  width: 100% !important;
  margin: 0 !important;
  background-color: #FFFFFF;
}

.post-container {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

/* Post Header */
.post-header {
  margin-bottom: 40px;
  text-align: left;
}

.post-title {
  margin: 0 0 16px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #023047;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666666;
}

.post-date {
  position: relative;
}

.post-category {
  position: relative;
  padding-left: 16px;
}

.post-category::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #666666;
  border-radius: 50%;
}

/* Featured Image */
.post-featured-image {
  margin-bottom: 48px;
  border-radius: 12px;
  overflow: hidden;
}

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

/* Post Content */
.post-content {
  margin-bottom: 60px;
}

.post-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 48px;
  font-weight: 400;
}

.content-section {
  margin-bottom: 40px;
}

.content-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: #023047;
  margin: 0 0 20px 0;
}

.content-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  margin: 0;
}

/* Categories */
.post-categories {
  padding-top: 40px;
  border-top: 1px solid #E8F4F5;
}

.categories-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #023047;
  margin: 0 0 20px 0;
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-item {
  display: inline-block;
  padding: 8px 20px;
  background-color: #F8FAFB;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-item:hover {
  background-color: #019EB2;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .post-title {
    font-size: 40px;
  }

  .content-heading {
    font-size: 28px;
  }

  .post-intro {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .montor-blog-post-detail {
    padding: 80px 20px 60px 20px;
  }

  .post-title {
    font-size: 32px;
  }

  .content-heading {
    font-size: 24px;
  }

  .post-intro {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .content-text {
    font-size: 15px;
  }

  .post-featured-image {
    margin-bottom: 32px;
    border-radius: 8px;
  }

  .content-section {
    margin-bottom: 32px;
  }

  .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .post-category::before {
    display: none;
  }

  .post-category {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .post-title {
    font-size: 28px;
  }

  .content-heading {
    font-size: 20px;
  }

  .categories-list {
    gap: 8px;
  }

  .category-item {
    padding: 6px 16px;
    font-size: 13px;
  }
}


