/* Single Post Typography Enhancements */
.post-content {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #334155;
}

/* Improve Hindi typography */
.hindi-font {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-display: swap;
}

/* Better spacing for verses */
.post-content h3 {
    margin: 2rem 0 1rem;
    padding-left: 1rem;
    border-left: 3px solid #f59e0b;
}

/* Responsive tables */
@media (max-width: 768px) {
    .metadata-table th,
    .metadata-table td {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .metadata-table th {
        font-weight: bold;
        background: none;
        color: #475569;
        border-bottom: none;
        padding-top: 1rem;
    }
    
    .metadata-table tr {
        border-bottom: 1px solid #e2e8f0;
        padding: 1rem 0;
        display: block;
    }
    
    .metadata-table tr:last-child {
        border-bottom: none;
    }
}