html {
    scroll-behavior: smooth;
}

img {
    pointer-events: none;
}

.banner {
    background-image: url('/illustrations/lines-bg.webp');
    background-size: cover;
    background-position: center bottom;
}

.blog-banner {
    background-image: url("/illustrations/blog-bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.line-bg {
    background-image: url("/illustrations/bg-lines.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.testimonial {
    background-image: url("/illustrations/testimonial-bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.font-hand {
    font-family: "Patrick Hand", cursive;
    font-weight: 400;
    font-style: normal;
}

.pagination {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.pagination li {
    display: inline-flex;
    padding: 5px 13px;
    font-size: 15px;
    border-radius: 5px;
    background-color: #e2e8f0;
    cursor: pointer;
}

.pagination li.active {
    background-color: rgb(79, 91, 166);
    color: #fff;
}

.pagination li.disabled {
    background-color: #f8fafc;
    color: #cbd5e1;
    cursor: not-allowed;
}

.article-content * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.article-content p {
    font-weight: 300;
    font-size: 1.1rem;
}

.article-content h2 {
    font-weight: 500;
    font-size: 1.5rem;
}

.article-content h3 {
    font-weight: 500;
    font-size: 1.3rem;
}

.article-content h4 {
    font-weight: 500;
    font-size: 1.2rem;
}

.article-content blockquote p {
    font-style: normal;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.5rem;
    color: #334155;
    padding: 10px;
}

.article-content blockquote {
    border-inline-start-color: #B3B8DB
}

img, video {
    margin: auto;
}