


.prose {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #374151;
    max-width: none;
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    color: #1f2937;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

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

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

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

.prose p {
    margin-bottom: 1.5rem;
}

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

.prose li {
    margin-bottom: 0.5rem;
}

.prose blockquote {
    border-left: 4px solid #e91e63;
    padding-left: 1rem;
    margin: 2rem 0;
    font-style: italic;
    background-color: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.prose strong {
    font-weight: 600;
    color: #1f2937;
}

.prose em {
    font-style: italic;
}

.prose a {
    color: #e91e63;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.prose a:hover {
    color: #c2185b;
}

.prose img {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
}


.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #ff6b9d);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 4px rgba(233, 30, 99, 0.3);
}


.social-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.social-share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-share-button:active {
    transform: translateY(0);
}


.blog-category-badge {
    background: linear-gradient(135deg, #e91e63, #ff6b9d);
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-category-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.blog-category-badge:hover::before {
    left: 100%;
}


.blog-featured-image {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-featured-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(233, 30, 99, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-featured-image:hover::after {
    opacity: 1;
}


.related-post-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.related-post-card .post-image {
    position: relative;
    overflow: hidden;
}

.related-post-card .post-image img {
    transition: transform 0.3s ease;
}

.related-post-card:hover .post-image img {
    transform: scale(1.05);
}


.blog-tag {
    background: rgba(233, 30, 99, 0.1);
    color: #e91e63;
    border: 1px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: #e91e63;
    color: white;
    transform: translateY(-1px);
}


.notification {
    backdrop-filter: blur(10px);
    background: rgba(34, 197, 94, 0.9);
    border: 1px solid rgba(34, 197, 94, 0.2);
    animation: slideInRight 0.3s ease, fadeOut 0.3s ease 2.7s;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}


@media (max-width: 768px) {
    .prose {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .prose h2 { 
        font-size: 1.5rem; 
    }
    
    .prose h3 { 
        font-size: 1.25rem; 
    }
    
    .prose h4 { 
        font-size: 1.125rem; 
    }
    
    .prose blockquote {
        margin: 1.5rem 0;
        padding: 0.75rem;
    }
    
    .social-share-button {
        width: 2.25rem;
        height: 2.25rem;
    }
}

@media (max-width: 640px) {
    .prose {
        font-size: 0.95rem;
    }
    
    .prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }
}


@media (prefers-color-scheme: dark) {
    .prose {
        color: #d1d5db;
    }
    
    .prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
        color: #f9fafb;
    }
    
    .prose blockquote {
        background-color: #1f2937;
        border-left-color: #e91e63;
    }
    
    .related-post-card {
        background: #1f2937;
    }
}


.prose img {
    will-change: transform;
}

.social-share-button,
.related-post-card,
.blog-tag {
    will-change: transform;
}


.prose a:focus,
.social-share-button:focus,
.blog-tag:focus {
    outline: 2px solid #e91e63;
    outline-offset: 2px;
}


@media print {
    .reading-progress,
    .social-share-button,
    .blog-tag {
        display: none;
    }
    
    .prose {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
    }
    
    .prose a {
        color: black;
        text-decoration: underline;
    }
}
