/* ============================================================
   Hair Trail — Single Post & Article Styling
   Modern Magazine-Style Design with Hero Section
   ============================================================ */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ht-pink: #F7649A;
  --ht-pink-deep: #D4276F;
  --ht-dark: #2D0A1E;
  --ht-cream: #FFF5F9;
  --ht-blush: #FFE0EF;
  --ht-text: #1E0A14;
  --ht-text-light: #7A3D5A;
  --ht-white: #FFFFFF;
  --ht-border: #FFCCE3;
  --ht-font-head: 'Playfair Display', 'Georgia', serif;
  --ht-font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* ============================================================
   HERO SECTION - Magazine Style
   ============================================================ */

.single-post .ht-post-hero {
  position: relative;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}

.single-post .ht-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 10, 20, 0.4) 0%,
    rgba(30, 10, 20, 0.7) 60%,
    rgba(30, 10, 20, 0.92) 100%
  );
  z-index: 1;
}

/* Breadcrumb */
.single-post .ht-breadcrumb-wrapper {
  position: relative;
  z-index: 2;
  padding: 24px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
}

.single-post .ht-breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  font-family: var(--ht-font-body);
}

.single-post .ht-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  font-weight: 500;
}

.single-post .ht-breadcrumb a:hover {
  color: var(--ht-pink);
}

.single-post .ht-breadcrumb svg {
  flex-shrink: 0;
}

.single-post .ht-separator {
  color: rgba(255, 255, 255, 0.5);
}

.single-post .ht-current {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Hero Content */
.single-post .ht-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px 80px;
  text-align: center;
}

/* Category Badges */
.single-post .ht-hero-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 20px;
  flex-wrap: wrap;
}

.single-post .ht-hero-cat-badge {
  display: inline-block;
  background: rgba(247, 100, 154, 0.9);
  backdrop-filter: blur(8px);
  color: var(--ht-white);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: var(--ht-font-body);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(247, 100, 154, 0.3);
}

.single-post .ht-hero-title {
  font-family: var(--ht-font-head) !important;
  font-size: clamp(38px, 5.5vw, 64px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: var(--ht-white) !important;
  margin: 0 0 28px !important;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.single-post .ht-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.single-post .ht-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--ht-font-body);
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.single-post .ht-meta-item svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.single-post .ht-meta-item a {
  color: var(--ht-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.single-post .ht-meta-item a:hover {
  color: var(--ht-pink);
}

.single-post .ht-meta-item strong {
  font-weight: 700;
}

.single-post .ht-author-avatar-small {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  margin-right: 4px;
}

.single-post .ht-meta-separator {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
}

/* Scroll Indicator */
.single-post .ht-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  opacity: 0.8;
}

.single-post .ht-scroll-indicator svg {
  color: var(--ht-white);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ============================================================
   CONTENT WRAPPER - Overlaps Hero
   ============================================================ */

.single-post .ht-post-content-wrapper {
  max-width: 820px;
  margin: -40px auto 60px;
  position: relative;
  z-index: 3;
  background: var(--ht-white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(212, 39, 111, 0.12);
  padding: 48px 56px;
  border: 1px solid rgba(212, 39, 111, 0.06);
}

/* ============================================================
   CATEGORIES
   ============================================================ */

.single-post .ht-post-categories {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--ht-border);
  font-size: 14px;
  flex-wrap: wrap;
}

.single-post .ht-post-categories svg {
  flex-shrink: 0;
  color: var(--ht-pink);
}

.single-post .ht-cat-label {
  font-weight: 600;
  color: var(--ht-text-light);
  font-family: var(--ht-font-body);
}

.single-post .ht-category-link {
  display: inline-block;
  background: var(--ht-blush);
  color: var(--ht-pink-deep);
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.single-post .ht-category-link:hover {
  background: var(--ht-pink-deep);
  color: var(--ht-white);
  transform: translateY(-2px);
}

/* ============================================================
   ENTRY CONTENT - Typography
   ============================================================ */

.single-post .ht-entry-content {
  font-family: var(--ht-font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ht-text);
}

/* Headings */
.single-post .ht-entry-content h1,
.single-post .ht-entry-content h2,
.single-post .ht-entry-content h3,
.single-post .ht-entry-content h4,
.single-post .ht-entry-content h5,
.single-post .ht-entry-content h6 {
  font-family: var(--ht-font-head);
  font-weight: 700;
  color: var(--ht-text);
  letter-spacing: -0.5px;
  margin: 36px 0 16px;
}

.single-post .ht-entry-content h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-top: 48px;
}

.single-post .ht-entry-content h2 {
  font-size: 34px;
  line-height: 1.25;
  margin-top: 44px;
  color: var(--ht-pink-deep);
  position: relative;
  padding-bottom: 12px;
}

.single-post .ht-entry-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--ht-pink), var(--ht-pink-deep));
  border-radius: 2px;
}

.single-post .ht-entry-content h3 {
  font-size: 28px;
  line-height: 1.3;
  margin-top: 40px;
  color: var(--ht-text);
}

.single-post .ht-entry-content h4 {
  font-size: 23px;
  line-height: 1.4;
  margin-top: 36px;
  color: var(--ht-text-light);
}

.single-post .ht-entry-content h5 {
  font-size: 20px;
  line-height: 1.4;
  margin-top: 32px;
}

.single-post .ht-entry-content h6 {
  font-size: 17px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  color: var(--ht-pink-deep);
}

/* Paragraphs */
.single-post .ht-entry-content p {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.7;
}

.single-post .ht-entry-content p:first-of-type {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ht-text-light);
}

/* Lists */
.single-post .ht-entry-content ul,
.single-post .ht-entry-content ol {
  margin: 0 0 24px 0;
  padding: 0;
}

.single-post .ht-entry-content li {
  margin-bottom: 12px;
  line-height: 1.7;
  padding-left: 8px;
}

.single-post .ht-entry-content ul li {
  list-style: none;
  position: relative;
  padding-left: 28px;
}

.single-post .ht-entry-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--ht-pink);
  border-radius: 50%;
}

.single-post .ht-entry-content ol {
  counter-reset: item;
  list-style: none;
}

.single-post .ht-entry-content ol li {
  counter-increment: item;
  position: relative;
  padding-left: 32px;
}

.single-post .ht-entry-content ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--ht-pink);
  color: var(--ht-white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

/* Links */
.single-post .ht-entry-content a {
  color: var(--ht-pink-deep);
  text-decoration: none;
  font-weight: 600;
  background-image: linear-gradient(var(--ht-pink), var(--ht-pink));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.3s ease;
  padding-bottom: 2px;
}

.single-post .ht-entry-content a:hover {
  color: var(--ht-pink);
  background-size: 100% 2px;
}

/* Blockquotes */
.single-post .ht-entry-content blockquote {
  position: relative;
  background: var(--ht-cream);
  border-left: 4px solid var(--ht-pink);
  margin: 32px 0;
  padding: 28px 36px 28px 44px;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ht-text-light);
}

.single-post .ht-entry-content blockquote::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 48px;
  font-family: var(--ht-font-head);
  color: var(--ht-pink);
  line-height: 1;
  opacity: 0.4;
}

.single-post .ht-entry-content blockquote p {
  margin: 0;
}

/* Strong & Emphasis */
.single-post .ht-entry-content strong {
  font-weight: 700;
  color: var(--ht-text);
}

.single-post .ht-entry-content em {
  font-style: italic;
  color: var(--ht-text-light);
}

/* Code */
.single-post .ht-entry-content code {
  background: var(--ht-blush);
  color: var(--ht-pink-deep);
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 15px;
  font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
  font-weight: 600;
}

.single-post .ht-entry-content pre {
  background: var(--ht-dark);
  color: var(--ht-white);
  padding: 24px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 32px 0;
  border: 1px solid rgba(212, 39, 111, 0.1);
}

.single-post .ht-entry-content pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  font-weight: 400;
}

/* Images */
.single-post .ht-entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 32px 0;
  box-shadow: 0 4px 20px rgba(212, 39, 111, 0.12);
}

/* Tables */
.single-post .ht-entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: var(--ht-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(212, 39, 111, 0.08);
  border: 1px solid var(--ht-border);
}

.single-post .ht-entry-content table th {
  background: linear-gradient(135deg, var(--ht-pink-deep), var(--ht-pink));
  color: var(--ht-white);
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single-post .ht-entry-content table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--ht-border);
  font-size: 16px;
}

.single-post .ht-entry-content table tr:last-child td {
  border-bottom: none;
}

.single-post .ht-entry-content table tr:hover {
  background: var(--ht-cream);
}

/* Horizontal Rule */
.single-post .ht-entry-content hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ht-border), transparent);
  margin: 40px 0;
}

/* ============================================================
   TAGS SECTION
   ============================================================ */

.single-post .ht-post-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0 0;
  padding-top: 32px;
  border-top: 2px solid var(--ht-border);
  flex-wrap: wrap;
}

.single-post .ht-post-tags svg {
  flex-shrink: 0;
  color: var(--ht-pink);
}

.single-post .ht-tags-label {
  font-weight: 600;
  color: var(--ht-text-light);
  font-family: var(--ht-font-body);
  font-size: 14px;
}

.single-post .ht-post-tags a {
  display: inline-block;
  background: var(--ht-cream);
  color: var(--ht-pink-deep);
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid var(--ht-border);
}

.single-post .ht-post-tags a:hover {
  background: var(--ht-pink-deep);
  color: var(--ht-white);
  border-color: var(--ht-pink-deep);
  transform: translateY(-2px);
}

/* ============================================================
   AUTHOR BIO
   ============================================================ */

.single-post .ht-author-bio {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  padding: 32px;
  background: var(--ht-cream);
  border-radius: 16px;
  border: 1px solid var(--ht-border);
}

.single-post .ht-author-avatar {
  flex-shrink: 0;
}

.single-post .ht-author-avatar img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  border: 3px solid var(--ht-white);
  box-shadow: 0 4px 16px rgba(212, 39, 111, 0.15);
}

.single-post .ht-author-info {
  flex: 1;
}

.single-post .ht-author-name {
  font-family: var(--ht-font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--ht-text);
  margin: 0 0 8px;
}

.single-post .ht-author-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ht-text-light);
  margin: 0 0 12px;
}

.single-post .ht-author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ht-pink-deep);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.single-post .ht-author-link:hover {
  color: var(--ht-pink);
  gap: 10px;
}

.single-post .ht-author-link svg {
  flex-shrink: 0;
}

/* ============================================================
   POST NAVIGATION (Prev/Next)
   ============================================================ */

.single-post .ht-post-navigation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 48px 0 0;
}

.single-post .ht-nav-prev,
.single-post .ht-nav-next {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--ht-blush);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ht-text);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.single-post .ht-nav-prev:hover,
.single-post .ht-nav-next:hover {
  background: var(--ht-pink);
  color: var(--ht-white);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 39, 111, 0.25);
  border-color: var(--ht-pink-deep);
}

.single-post .ht-nav-prev svg,
.single-post .ht-nav-next svg {
  flex-shrink: 0;
}

.single-post .ht-nav-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.single-post .ht-nav-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
}

.single-post .ht-nav-title {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--ht-font-head);
  line-height: 1.3;
}

/* ============================================================
   COMMENTS SECTION
   ============================================================ */

.single-post .ht-comments-section {
  max-width: 820px;
  margin: 0 auto 60px;
  padding: 48px 56px;
  background: var(--ht-cream);
  border-radius: 20px;
  border: 1px solid var(--ht-border);
}

.single-post .ht-comments-section h2,
.single-post .ht-comments-section h3 {
  font-family: var(--ht-font-head);
  color: var(--ht-text);
}

/* ============================================================
   RELATED ARTICLES SECTION
   ============================================================ */

.single-post .ht-related-articles {
  background: linear-gradient(135deg, #FFF9F5 0%, #FFF0EB 100%);
  padding: 80px 0;
  margin: 60px 0 0;
  border-top: 3px solid var(--ht-pink);
}

.single-post .ht-related-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.single-post .ht-related-header {
  text-align: center;
  margin-bottom: 48px;
}

.single-post .ht-related-title {
  font-family: var(--ht-font-head);
  font-size: 42px;
  font-weight: 700;
  color: var(--ht-text);
  margin: 0 0 12px;
  letter-spacing: -1px;
}

.single-post .ht-related-subtitle {
  font-size: 17px;
  color: var(--ht-text-light);
  margin: 0;
  font-weight: 500;
}

.single-post .ht-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.single-post .ht-related-card {
  background: var(--ht-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(212, 39, 111, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 39, 111, 0.08);
}

.single-post .ht-related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 39, 111, 0.2);
}

.single-post .ht-related-image-link {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.single-post .ht-related-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.single-post .ht-related-card:hover .ht-related-image {
  transform: scale(1.08);
}

.single-post .ht-related-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(247, 100, 154, 0.85), rgba(212, 39, 111, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.single-post .ht-related-card:hover .ht-related-overlay {
  opacity: 1;
}

.single-post .ht-related-overlay svg {
  color: var(--ht-white);
  width: 40px;
  height: 40px;
  transform: translateX(-10px);
  transition: transform 0.4s ease;
}

.single-post .ht-related-card:hover .ht-related-overlay svg {
  transform: translateX(0);
}

.single-post .ht-related-content {
  padding: 24px;
}

.single-post .ht-related-category {
  display: inline-block;
  background: var(--ht-blush);
  color: var(--ht-pink-deep);
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.single-post .ht-related-category:hover {
  background: var(--ht-pink-deep);
  color: var(--ht-white);
}

.single-post .ht-related-post-title {
  margin: 0 0 12px;
  font-family: var(--ht-font-head);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.single-post .ht-related-post-title a {
  color: var(--ht-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.single-post .ht-related-post-title a:hover {
  color: var(--ht-pink-deep);
}

.single-post .ht-related-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--ht-text-light);
  font-weight: 500;
}

.single-post .ht-related-date,
.single-post .ht-related-read-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.single-post .ht-related-meta svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* ============================================================
   CONTAINER OVERRIDE
   ============================================================ */

.single-post .single-post-container {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.single-post .nv-single-post-wrap {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 768px) {
  .single-post .ht-post-hero {
    height: 500px;
  }
  
  .single-post .ht-breadcrumb-wrapper {
    padding: 16px 0;
  }
  
  .single-post .ht-breadcrumb {
    padding: 0 24px;
    font-size: 13px;
  }
  
  .single-post .ht-hero-content {
    padding: 0 24px 60px;
  }
  
  .single-post .ht-hero-title {
    font-size: 36px !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.8px;
  }
  
  .single-post .ht-hero-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .single-post .ht-meta-separator {
    display: none;
  }
  
  .single-post .ht-meta-item {
    font-size: 13px;
    padding: 6px 12px;
  }
  
  .single-post .ht-post-content-wrapper {
    margin: -30px 20px 40px;
    padding: 36px 28px;
    border-radius: 16px;
  }
  
  .single-post .ht-entry-content {
    font-size: 16px;
  }
  
  .single-post .ht-entry-content h1 { font-size: 32px; }
  .single-post .ht-entry-content h2 { font-size: 28px; }
  .single-post .ht-entry-content h3 { font-size: 24px; }
  .single-post .ht-entry-content h4 { font-size: 20px; }
  .single-post .ht-entry-content h5 { font-size: 18px; }
  
  .single-post .ht-author-bio {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .single-post .ht-author-avatar {
    margin: 0 auto;
  }
  
  .single-post .ht-post-navigation {
    grid-template-columns: 1fr;
  }
  
  .single-post .ht-comments-section {
    margin: 0 20px 40px;
    padding: 36px 28px;
  }
  
  .single-post .ht-related-articles {
    padding: 60px 0;
  }
  
  .single-post .ht-related-container {
    padding: 0 24px;
  }
  
  .single-post .ht-related-header {
    margin-bottom: 36px;
  }
  
  .single-post .ht-related-title {
    font-size: 32px;
  }
  
  .single-post .ht-related-subtitle {
    font-size: 15px;
  }
  
  .single-post .ht-related-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .single-post .ht-post-hero {
    height: 440px;
  }
  
  .single-post .ht-breadcrumb {
    padding: 0 16px;
    font-size: 12px;
  }
  
  .single-post .ht-hero-content {
    padding: 0 16px 50px;
  }
  
  .single-post .ht-hero-title {
    font-size: 28px !important;
    margin-bottom: 16px !important;
  }
  
  .single-post .ht-hero-cat-badge {
    font-size: 11px;
    padding: 6px 14px;
  }
  
  .single-post .ht-meta-item {
    font-size: 12px;
  }
  
  .single-post .ht-author-avatar-small {
    width: 28px !important;
    height: 28px !important;
  }
  
  .single-post .ht-post-content-wrapper {
    margin: -25px 16px 32px;
    padding: 28px 20px;
  }
  
  .single-post .ht-entry-content blockquote {
    padding: 20px 24px 20px 32px;
    font-size: 17px;
  }
  
  .single-post .ht-comments-section {
    margin: 0 16px 32px;
    padding: 28px 20px;
  }
  
  .single-post .ht-related-articles {
    padding: 48px 0;
    margin: 40px 0 0;
  }
  
  .single-post .ht-related-container {
    padding: 0 16px;
  }
  
  .single-post .ht-related-header {
    margin-bottom: 28px;
  }
  
  .single-post .ht-related-title {
    font-size: 28px;
  }
  
  .single-post .ht-related-subtitle {
    font-size: 14px;
  }
  
  .single-post .ht-related-grid {
    gap: 20px;
  }
  
  .single-post .ht-related-post-title {
    font-size: 18px;
  }
  
  .single-post .ht-related-content {
    padding: 20px;
  }
}
