/* Estilos para o conteúdo do post */
.prose {
    max-width: 65ch;
    color: #374151;
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    color: #0c2340;
    font-weight: 600;
    margin-top: 2em;
    margin-bottom: 0.5em;
}

.prose h1 {
    font-size: 2.25em;
    margin-top: 0;
}

.prose h2 {
    font-size: 1.5em;
}

.prose h3 {
    font-size: 1.25em;
}

.prose p {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}

.prose a {
    color: #1e4b82;
    text-decoration: underline;
    font-weight: 500;
}

.prose a:hover {
    color: #0c2340;
}

.prose ul, .prose ol {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-left: 1.625em;
}

.prose ul {
    list-style-type: disc;
}

.prose ol {
    list-style-type: decimal;
}

.prose li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.prose blockquote {
    font-style: italic;
    color: #4b5563;
    border-left: 4px solid #e5e7eb;
    padding-left: 1em;
    margin: 1.5em 0;
}

.prose code {
    color: #1e4b82;
    background-color: #f3f4f6;
    padding: 0.2em 0.4em;
    border-radius: 0.25em;
    font-family: monospace;
}

.prose pre {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 1em;
    border-radius: 0.375em;
    overflow-x: auto;
    margin: 1.5em 0;
}

.prose pre code {
    color: inherit;
    background-color: transparent;
    padding: 0;
}

.prose img {
    margin: 2em auto;
    border-radius: 0.375em;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.prose table th {
    background-color: #f3f4f6;
    padding: 0.75em;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #e5e7eb;
}

.prose table td {
    padding: 0.75em;
    border-bottom: 1px solid #e5e7eb;
}

/* Estilos para comentários */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    border-color: #1e4b82;
    box-shadow: 0 0 0 3px rgba(30, 75, 130, 0.1);
}

.comment-form input[type="submit"],
.comment-reply-link {
    background-color: #1e4b82;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.comment-form input[type="submit"]:hover,
.comment-reply-link:hover {
    background-color: #0c2340;
    transform: translateY(-1px);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

.comment:last-child {
    border-bottom: none;
}

.comment .comment-author img {
    border-radius: 50%;
}

.comment .comment-author .fn {
    font-weight: 600;
    margin-left: 0.5rem;
}

.comment-meta {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.children {
    list-style: none;
    margin-left: 2rem;
    padding: 0;
}

/* Line clamp utilities */
.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;
}
