/**
 * PinkCode LearnDash Beautifier - Typography Module
 *
 * Applies coherent font families, heading scale, and body text styling
 * across LearnDash LD30 interfaces.
 */

.learndash-wrapper h1,
.learndash-wrapper .ld-lesson-item-preview h3 {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--pcld-color-slate-700);
    margin-bottom: 12px;
}

.learndash-wrapper h1 {
    font-size: 2.25rem;
    line-height: 1.2;
}

.learndash-wrapper h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--pcld-color-slate-700);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.learndash-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pcld-color-slate-600);
}

.learndash-wrapper h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pcld-color-slate-500);
}

.learndash-wrapper .ld-item-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--pcld-color-slate-700);
    line-height: 1.5;
}

.learndash-wrapper .ld-item-details {
    font-size: 0.875rem;
    color: var(--pcld-color-slate-500);
}

.learndash-wrapper p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--pcld-color-slate-600);
}

@media (max-width: 768px) {
    .learndash-wrapper h1 {
        font-size: 1.75rem;
    }

    .learndash-wrapper h2 {
        font-size: 1.5rem;
    }

    .learndash-wrapper h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .learndash-wrapper h1 {
        font-size: 1.5rem;
    }

    .learndash-wrapper h2 {
        font-size: 1.375rem;
    }

    .learndash-wrapper h3 {
        font-size: 1.125rem;
    }
}
