﻿.search-box {
    position: relative;
}

    .search-box i {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
    }

    .search-box input {
        padding-right: 45px;
        border-radius: 30px;
        height: 50px;
        border: 1px solid #ddd;
        transition: all .3s;
    }

        .search-box input:focus {
            border-color: #6c63ff;
            box-shadow: 0 0 0 3px rgba(108,99,255,.15);
        }

.btn-gradient {
    height: 50px;
    border-radius: 30px;
    padding: 0 30px;
    background: linear-gradient(135deg, #6c63ff, #4a47d5);
    color: #fff;
    border: none;
    transition: all .3s;
}

    .btn-gradient:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(108,99,255,.3);
    }


.blog-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .3s;
    height: 100%;
}

    .blog-item:hover {
        transform: translateY(-8px);
        box-shadow: 4px 20px 40px rgba(0,0,0,.15);
    }

.blog-img img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.blog-content {
    padding: 20px;

}

.index-blog-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.6;
}

.index-blog-body {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    min-height: 90px;
}

.blog-meta {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

    .blog-meta .more a {
        color: #6c63ff;
        font-weight: 500;
    }

    .blog-meta .date {
        font-size: 13px;
        color: #888;
    }


.pagination {
    justify-content: center;
}

    .pagination .page-link {
        border-radius: 50%;
        margin: 0 5px;
        color: #555;
        border: none;
        box-shadow: 0 4px 10px rgba(0,0,0,.08);
    }

    .pagination .active .page-link {
        background: #6c63ff;
        color: #fff;
    }

    .pagination .page-link:hover {
        background: #6c63ff;
        color: #fff;
    }
