body {
    font-family: var(--dil-font-family);
    font-size: var(--dil-body-font-size);
    line-height: var(--dil-line-height-body);
    color: var(--dil-text-color);
}

h1, h2, h3, h4, h5, h6 {
    line-height: var(--dil-line-height-heading);
    color: var(--dil-text-color);
    font-weight: var(--dil-font-weight-bold);
    margin: 1.5em 0 0.75em;
    letter-spacing: -0.01em;
}

h1 { font-size: var(--dil-h1-size); }
h2 { font-size: var(--dil-h2-size); }
h3 { font-size: var(--dil-h3-size); }
h4 { font-size: var(--dil-h4-size); }

p {
    margin: 0 0 var(--dil-spacing-md);
}

/* Metadata styling */
.entry-meta, .post-category, .card-meta {
    font-size: 0.85rem;
    color: var(--dil-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: var(--dil-font-weight-bold);
}

a {
    color: var(--dil-primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dil-primary-hover);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}
