/* Text-Only Post Styling - Simple and Clean */

/* Feature posts without images get subtle enhancement */
.feature-post:not(.has-image) {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: var(--color-border-light);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.03) 0%, 
    rgba(255, 255, 255, 0.01) 100%) !important;
}

/* Medium posts without images get enhanced headers */
.medium-post .card-header {
  border-bottom: 1px solid var(--color-border-light);
}

/* Text-only posts get slightly better spacing */
.card-content-text-only {
  padding: 2rem 1.5rem;
}

