/* Blog content styles — applied inside .blog-content */

.blog-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #171717;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #171717;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #404040;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.blog-content a {
    color: #052F5F;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-content a:hover {
    color: #168B3F;
}

.blog-content img {
    border-radius: 0.75rem;
    margin: 2rem 0;
    width: 100%;
    height: auto;
}

.blog-content blockquote {
    border-left: 3px solid #F1A208;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #525252;
}

.blog-content blockquote p {
    color: #525252;
}

.blog-content ul,
.blog-content ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
    color: #404040;
    font-weight: 300;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.blog-content ul {
    list-style-type: disc;
}

.blog-content ol {
    list-style-type: decimal;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content hr {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 2.5rem 0;
}

.blog-content strong {
    font-weight: 600;
    color: #171717;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination ul {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    padding: 0;
    margin: 0;
}

.pagination li a,
.pagination li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #404040;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.pagination li a:hover {
    background-color: #e5e5e5;
}

.pagination li.active span {
    background-color: #052F5F;
    color: #fff;
}

.pagination li.disabled span {
    color: #a3a3a3;
    cursor: default;
}

/* Line clamp utility for post cards */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
