/**
 * Single Post/Page Styles
 */

/* Single Post Hero */
.hvn-theme-single-hero {
  position: relative;
  background: var(--hvn-theme-color-gray-900);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: var(--hvn-theme-space-2xl);
}

.hvn-theme-single-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hvn-theme-single-hero-content {
  position: relative;
  z-index: 2;
  padding: var(--hvn-theme-space-2xl);
  color: var(--hvn-theme-color-white);
}

.hvn-theme-single-hero-content .entry-title {
  color: var(--hvn-theme-color-white);
  font-size: var(--hvn-theme-font-size-5xl);
  margin-bottom: var(--hvn-theme-space-md);
}

.hvn-theme-single-hero-content .entry-meta {
  color: rgba(255, 255, 255, 0.8);
}

.hvn-theme-single-hero-content .entry-meta a {
  color: var(--hvn-theme-color-white);
}

/* Single Post Layout Variations */
.hvn-theme-single-layout-default .hvn-theme-single-hero {
  display: none;
}

.hvn-theme-single-layout-hero .hvn-theme-single-featured-image {
  display: none;
}

/* Post Footer */
.hvn-theme-post-footer {
  margin-top: var(--hvn-theme-space-xl);
  padding-top: var(--hvn-theme-space-lg);
  border-top: 1px solid var(--hvn-theme-border-color);
}

/* Page Specific */
.hvn-theme-page .hvn-theme-single-content {
  padding: var(--hvn-theme-space-2xl);
}

/* Responsive Single */
@media (max-width: 768px) {
  .hvn-theme-single-hero {
    min-height: 300px;
  }
  
  .hvn-theme-single-hero-content .entry-title {
    font-size: var(--hvn-theme-font-size-3xl);
  }
  
  .hvn-theme-single-hero-content {
    padding: var(--hvn-theme-space-lg);
  }
  
  .hvn-theme-page .hvn-theme-single-content {
    padding: var(--hvn-theme-space-lg);
  }
}