body{
    background-color:#f6f9f9 
}
.blog-title-container {
    position: relative;
    margin: 3rem 0;
    padding-bottom: 10px;
    margin-top: 10% ;
}


.blog-title {
    color: #3b3a3a !important;
    margin-top:-10%;
    font-weight:300 !important;
}

.card {
    border: none;
    margin-bottom: 2rem;
    transition: all 0.2s ease;
    border-radius: -7px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-top: 0 !important; /* Changed from -70px to 0 */
    margin-bottom: 80px !important;
  
}
.card {
    margin-top: -55px !important; /* Adjust to 20px */
}


/* Rest of your existing CSS remains unchanged */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.position-relative {
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.card-img-top {
    height: 240px;
    object-fit: cover;
}

.category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgb(109, 109, 109);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgb(251, 248, 248);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 195px;
    left: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: -229px;
}

.user-avatar img {
    width: 40px !important;
    height: 40px !important;
    opacity: 0.9;
}

.card-body {
    padding: 3rem 1.5rem 1.5rem;
    position: relative;
}

.card-title {
    color: #4a4a4a;
    font-weight: 500;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.card-text {
    color: #676666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.read-more {
    color: #060505;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.2s ease;
}
