.blog-boxs {
    padding: 70px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

a.blog-more {
    text-decoration: none;
    color: #ffffff;
    font-weight: 900;
    text-align: left;
    display: inline-block;
    font-size: 17px;
    background: var(--main-gradient);
    padding: 10px 15px 10px 15px;
    border-radius: 10px;
    transition: 0.3s;
}

a.blog-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

p.blog-excerpt {
    padding: 15px 0;
    color: #686868;
    font-size: 15px;
}

.blog-img {
    text-align: center;
}

.blog-box {
    width: 100%;
    text-align: right;
    position: relative;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 16px 0 rgb(0 0 0/20%), 0 6px 20px 0 rgb(0 0 0/19%);
    padding: 14px;
    background: #fff;
    transition: 0.3s ease;
}

.blog-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

.blog-content {
    padding: 21px 23px;
}

.blog-innr {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 15px;
}

a.blog-title {
    text-decoration: none;
    padding: 0;
    font-size: 19px;
    font-weight: 900;
    display: block;
    color: var(--dark-text);
    transition: 0.3s;
}

a.blog-title:hover {
    color: var(--main-color);
}

a.blog-category {
    position: absolute;
    left: 0;
    top: 10%;
    background-color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    padding: 4px 18px;
    color: var(--main-color);
    font-weight: 900;
    border-right: 4px solid var(--main-color);
    border-radius: 0 10px 10px 0;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}

.blog-innr img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.4s ease;
}

.blog-innr img:hover {
    transform: scale(1.05);
}

.blog-box-small {
    display: flex;
    flex-direction: column;
}

.blog-innr-small {
    width: 100%;
    display: flex;
    margin-bottom: 35px;
    align-items: flex-start;
    text-align: right;
}

.blog-innr-small img {
    width: 90px;
    border-radius: 17px;
    border: 3px solid var(--main-color);
}

a.blog-title-small {
    display: inline-block;
    width: 60%;
    text-decoration: none;
    margin-right: 17px;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-text);
    transition: 0.3s;
}

a.blog-title-small:hover {
    color: var(--main-color);
}

@media (min-width: 992px) {
    .blog-box {
        width: 23%;
        margin-top: 0;
    }
}