/*
Theme Name: deepl Theme
Description: A WordPress theme inspired by chrom-pc.com design
Version: 1.0
Author: Chrome Theme
*/

/* Reset and Base Styles */
html, body {
    margin: 0;
    padding: 0;
}
body {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}
a {
    text-decoration: none
}





.blog-page .content {
    width: 1168px;
    margin: 0 auto;
    padding-bottom: 80px;
}
.blog-page .content h1 {
    font-size: 32px;
    line-height: 37px;
    color: #383838;
}
.blog-page .content .blog-text {
    margin-top: 25px;
}
.blog-page .content .articles {
    padding-top: 40px;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
.blog-page .content .article-card {
    display: block;
    background: #FFFFFF;
    box-shadow: 0px 2px 12px rgba(214, 214, 214, 0.5);
    border-radius: 8px;
    width: 362px;
    height: 440px;
    margin-bottom: 40px;
    position: relative;
    margin-right: 25px;
    transition: all 0.3s ease;
}
.blog-page .content .article-card:hover {
    transform: translateY(-5px);
}
.blog-page .content .article-card img {
    border-radius: 8px;
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.blog-page .content .article-card .card-content {
    padding: 20px;
}
.blog-page .content .article-card .card-content .title {
    font-size: 20px;
    line-height: 30px;
    color: #1A1A1A;
    font-weight: 500;
}
.blog-page .content .article-card .card-content .updated-at {
    font-size: 11px;
    line-height: 13px;
    color: #666666;
    position: absolute;
    bottom: 20px;
}
.blog-page .content .article-card .card-content .article-body {
    margin-top: 15px;
    font-weight: 300;
    height: 96px;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: wrap;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 24px;
    color: #1A1A1A;
}
.blog-page .content .article-card .card-content .article-body em span {
    word-break: break-all;
}
.blog-page .content .load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}
.blog-page .content .load-more .button {
    display: inline-block;
    background: #098DE6;
    box-shadow: 0px 2px 8px #E6E8EB;
    border-radius: 4px;
    padding: 8px 43px;
    cursor: pointer;
}
.blog-page .content .load-more p {
    font-size: 18px;
    line-height: 21px;
    letter-spacing: -0.128571px;
    color: #FFFFFF;
    margin-bottom: 0;
}
@media (max-width: 860px) {
    .blog-page .content {
        padding: 0 1rem;
        width: 100%;
    }
    .blog-page .content .articles {
        padding-top: 10px;
    }
    .blog-page .content .article-card {
        width: calc(100vw - 2em);
        margin-right: 0;
    }
    .blog-page .content .load-more {
        margin-top: 40px;
        padding-bottom: 85px;
    }
}