/* Ocultar badge de reCAPTCHA v3 (reemplazado por aviso de texto en el formulario) */
.grecaptcha-badge {
    visibility: hidden !important;
}

/* Custom styles for blog content images to match main image style */
.prose img {
    border-radius: 0.75rem;
    /* rounded-xl */
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    /* shadow-lg */
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}

/* Typography improvements based on site style */
.prose p {
    margin-bottom: 1.25em;
    line-height: 1.75;
    font-family: 'Inter', sans-serif;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4 {
    color: #1e293b;
    /* slate-800 */
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 0.8em;
    line-height: 1.3;
}

.prose h2 {
    font-size: 1.5rem;
    /* 24px */
    border-bottom: 1px solid #cbd5e1;
    /* slate-300 */
    padding-bottom: 0.5rem;
}

.prose h3 {
    font-size: 1.25rem;
    /* 20px */
}


.prose a {
    color: #6CBF91;
    /* primary-500 */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.prose a:hover {
    text-decoration: underline;
    color: #5aa87f;
    /* primary-600 aprox */
}

.prose ul,
.prose ol {
    padding-left: 1.625em;
    margin-bottom: 1.25em;
    font-family: 'Inter', sans-serif;
}

.prose ul {
    list-style-type: disc;
}

.prose ol {
    list-style-type: decimal;
}

.prose li {
    margin-bottom: 0.5em;
}

.prose b,
.prose strong {
    font-weight: 600;
    color: #1e293b;
    /* slate-800 */
}

.prose blockquote {
    font-style: italic;
    border-left: 4px solid #6CBF91;
    /* primary-500 */
    padding-left: 1rem;
    color: #475569;
    /* slate-600 */
    margin-bottom: 1.5em;
}

.prose pre {
    background-color: #0f172a;
    /* slate-900 */
    color: #f8fafc;
    /* slate-50 */
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin-bottom: 1.5em;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.875em;
    border: 1px solid #1e293b;
    /* slate-800 */
}

.prose code {
    color: #6CBF91;
    /* primary-500 */
    font-weight: 600;
    background-color: #f1f5f9;
    /* slate-100 */
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.prose pre code {
    background-color: transparent;
    color: inherit;
    padding: 0;
    font-weight: 400;
    font-size: inherit;
    border: none;
}