.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-header {
    background: linear-gradient(135deg, #7036ff 0%, rgb(184 23 182) 100%);
    padding: 6rem 0;
    color: white;
}

.blog-meta {
    color: #6b7280;
    font-size: 0.9rem;
}

.category-badge {
    background-color: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.category-badge:hover {
    background-color: rgb(184 23 182);
    color: white;
}

.featured-image {
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-button:hover {
    transform: translateY(-3px);
}

.related-post {
    transition: all 0.3s ease;
}

.related-post:hover {
    transform: translateX(5px);
}

.search-box {
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
}

.pagination .page-link {
    border-radius: 50%;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-link {
    color: rgb(184 23 182);
}

.active > .page-link,
.page-link.active {
    z-index: 3;
    color: white;
    background-color: rgb(184 23 182);
    border-color: rgb(184 23 182);
}
