.prose blockquote {
    background-color: #f3f4f6;
    border-left-color: #4f46e5;
    padding: 1rem;
}

.prose img {
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

/* Títulos - Mobile First (< 768px) */
.prose h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.prose h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.prose h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.prose h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.prose h5 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.prose h6 {
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Tablet (≥ 768px) */
@media (min-width: 768px) {
    .prose h1 {
        font-size: 1.875rem;
    }

    .prose h2 {
        font-size: 1.5rem;
    }

    .prose h3 {
        font-size: 1.25rem;
    }

    .prose h4 {
        font-size: 1.125rem;
    }

    .prose h5 {
        font-size: 1rem;
    }

    .prose h6 {
        font-size: 0.875rem;
    }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
    .prose h1 {
        font-size: 2rem;
    }

    .prose h2 {
        font-size: 1.625rem;
    }

    .prose h3 {
        font-size: 1.375rem;
    }

    .prose h4 {
        font-size: 1.125rem;
    }

    .prose h5 {
        font-size: 1rem;
    }

    .prose h6 {
        font-size: 0.875rem;
    }
}

.prose a {
    color: #4f46e5;
    text-decoration: underline;
}

.prose a:hover {
    color: #4338ca;
}