/* Blog page start */
a{
    text-decoration: none;
}
body{
    background-color: #121212;
}
.container-2{
    max-width: 1200px;
}
.blog-top{
    margin-bottom: 100px;
}
.blog-top h2{
    font-weight: 900;
    font-size: 50px;
    line-height: 60px;
    color: #fff;
    margin-bottom: 10px;
}
.blog-top h4{
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px;
}
.tags-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.tags-box a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 32px;
    background: #222222;
    border-radius: 50px;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    transition: .3s all linear;
}
.tags-box a:hover{
    background: #fff;
    color: #222222;
}

.single-blog{
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    padding-bottom: 35px;
    position: relative;
    margin-bottom: 60px;
}
.single-blog::before{
    content: "";
    width: calc(100% - 180px);
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    bottom: 0;
    right: 0;
}
.single-blog:last-child::before{
    display: none;
}
.single-blog-img{
    margin-top: 5px;
}
.single-blog-text h3{
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}
.single-blog-text p{
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #fff;
}
.blog-button{
    margin-bottom: 50px;
    margin-top: 70px;
}
.blog-button h4{
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}
/* Blog page end */

/* article page start */
.article-top h1{
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}
.article-top p{
    font-size: 14px;
    line-height: 24px;
    color: #7D8096;
    margin-bottom: 25px;
}
.article-top{
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 50px;
}
.article-box p{
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}
.article-box p a{
    color: #fff;
}
.article-box p:last-child{
    margin-bottom: 50px;
}
.article-box p a:hover{
    text-decoration: underline;
}
.article-box video{
    width: 100%;
    border-radius: 30px;
    margin-top: 15px;
}
.article-box h3{
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    margin-top: 30px;
    color: #fff;
}
.article iframe,.article img{
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 30px;
}
.article img{
    object-fit: cover;
}
/* article page end */