/*
Theme Name: vivuthegioi
*/

/* ==========================================================================
   Custom Prose Styles (Nội dung bài viết)
   ========================================================================== */
.prose {
    color: #4b5563; /* Màu chữ xám nhạt */
    line-height: 1.8;
}

/* Các thẻ Heading (tiêu đề) trong bài */
.prose h1, .prose h2, .prose h3, .prose h4 {
    color: #173A66;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}
.prose h1 { font-size: 2.25rem; }
.prose h2 { font-size: 1.75rem; }
.prose h3 { font-size: 1.5rem; }
.prose h4 { font-size: 1.25rem; }

/* Đoạn văn */
.prose p {
    margin-bottom: 1.25em;
}

/* Danh sách */
.prose ul {
    list-style-type: disc;
    padding-left: 1.5em;
    margin-bottom: 1.25em;
}
.prose ol {
    list-style-type: decimal;
    padding-left: 1.5em;
    margin-bottom: 1.25em;
}
.prose li {
    margin-bottom: 0.5em;
}

/* Thẻ trích dẫn */
.prose blockquote {
    border-left: 4px solid #fbcfe8; /* Viền màu hồng nhạt */
    padding-left: 1em;
    font-style: italic;
    color: #6b7280;
    margin-bottom: 1.25em;
    background: #fdf2f8; /* Nền hồng nhạt */
    padding: 1rem;
    border-radius: 0.5rem;
}

/* Hình ảnh */
.prose img {
    border-radius: 0.75rem;
    margin: 1.5em auto;
    max-width: 100%;
    height: auto;
}

/* Link (Thẻ a) */
.prose a {
    color: #ec4899; /* pink-500 */
    text-decoration: none;
}
.prose a:hover {
    color: #be185d; /* pink-700 */
    text-decoration: underline;
}

/* ==========================================================================
   Pagination Styles
   ========================================================================== */
.pagination-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}
.pagination-links .nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.pagination-links .page-numbers {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #E4EEF5;
    background: white;
    color: #40566D;
    transition: all 0.2s;
    text-decoration: none;
    font-weight: 600;
}
.pagination-links .page-numbers:hover {
    border-color: #087FC3;
    color: #087FC3;
}
.pagination-links .page-numbers.current {
    background: #087FC3;
    color: white;
    border-color: #087FC3;
}
.pagination-links .page-numbers.dots {
    border: none;
    background: transparent;
    padding: 0.5rem;
}