/* Blog Detail Page Styles */

/* Article Content Styles */
.prose h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-left: 1.5rem;
}

.prose h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
    border-radius: 3px;
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #6b21a8;
}

.prose p {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.25rem;
}

.prose strong {
    color: #9333ea;
    font-weight: 700;
}

.prose ul, .prose ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.prose li {
    margin: 0.75rem 0;
    padding-left: 0.5rem;
    position: relative;
}

.prose ul li:before {
    content: '';
    position: absolute;
    left: -1.25rem;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
    border-radius: 50%;
}

.prose blockquote {
    border-left: 4px solid #ec4899;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, #fdf4ff 0%, #fce7f3 100%);
    border-radius: 0.5rem;
    font-style: italic;
    color: #6b21a8;
}

.prose code {
    background: #f3e8ff;
    color: #9333ea;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.9em;
}
