/* MCC Blog Content Styles - Tailwind Typography Alternative */
.prose h1 {
    font-size: 2em !important;
    font-weight: 800 !important;
    color: #111827 !important;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.2;
    border-bottom: 2px solid rgba(81, 105, 201, 0.2);
    padding-bottom: 0.3em;
}
.prose h2 {
    font-size: 1.5em !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.3;
}
.prose h3 {
    font-size: 1.25em !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin-top: 1.3em;
    margin-bottom: 0.4em;
    line-height: 1.4;
}
.prose h4 {
    font-size: 1.1em !important;
    font-weight: 600 !important;
    color: #4b5563 !important;
    margin-top: 1.2em;
    margin-bottom: 0.4em;
}
.prose p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.2em;
}
.prose strong, .prose b {
    font-weight: 700 !important;
    color: #111827 !important;
}
.prose em, .prose i {
    font-style: italic;
}
.prose u {
    text-decoration: underline;
}
.prose a {
    color: #5169c9;
    font-weight: 600;
    text-decoration: underline;
}
.prose a:hover {
    color: #3b4fa8;
}
.prose blockquote {
    border-left: 4px solid #5169c9;
    background: rgba(81, 105, 201, 0.05);
    padding: 1em 1.5em;
    margin: 1.5em 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #374151;
}
.prose blockquote p {
    margin-bottom: 0;
}
.prose ul {
    list-style-type: disc !important;
    padding-left: 1.5em;
    margin: 1em 0;
    color: #4b5563;
}
.prose ol {
    list-style-type: decimal !important;
    padding-left: 1.5em;
    margin: 1em 0;
    color: #4b5563;
}
.prose li {
    margin-bottom: 0.5em;
    line-height: 1.7;
}
.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 1.5em auto;
    display: block;
}
.prose code {
    background: #f3f4f6;
    color: #dc2626;
    padding: 0.15em 0.4em;
    border-radius: 4px;
    font-size: 0.875em;
}
.prose pre {
    background: #1f2937;
    color: #e5e7eb;
    padding: 1.2em;
    border-radius: 12px;
    overflow-x: auto;
    margin: 1.5em 0;
}
.prose pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}
.prose hr {
    border: none;
    border-top: 2px solid #e5e7eb;
    margin: 2em 0;
}
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}
.prose th, .prose td {
    border: 1px solid #e5e7eb;
    padding: 0.75em 1em;
    text-align: left;
}
.prose th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
}