/* 
 * Yoto Answers Custom Styles
 */

.question-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.search-highlight {
    background-color: #FEF08A;
    padding: 0 2px;
    border-radius: 2px;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

/* Prose styling for answer content */
.prose {
    max-width: 65ch;
    line-height: 1.6;
}

.prose p {
    margin-bottom: 1em;
}

.prose a {
    color: #4F46E5;
    text-decoration: none;
}

.prose a:hover {
    text-decoration: underline;
}

.prose ul, .prose ol {
    margin-left: 1.5em;
    margin-bottom: 1em;
}

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

.prose h2, .prose h3, .prose h4 {
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

/* Breadcrumb styles */
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 0.5rem;
    color: #9CA3AF;
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
} 