.blog-container {
    background-color: #ffffff;
    padding: 40px 20px;
    border-radius: 12px;
}

.blog-card {
    border: 1px solid #e0e0e0;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}


.blog-card img {
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 5px;
}

.blog-card .blog-content {
    padding: 15px 5px;
    flex: 1;
}

.blog-card h5 {
        font-size: 1rem;
    color: #545454;
    display: -webkit-box;
    font-weight: 600;
    line-height: 26px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.blog-link {
    text-decoration: none;
    color: var(--site-color);
}

.blog-category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--site-color);
    margin-bottom: 20px;
    text-align: center;
}

.view-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #061722;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid #eee;
    border-radius: 5px;
}

.updated-on i {
    font-size: 14px;
    margin-right: 5px;
}

.updated-on,
.blog-category-name {
    font-size: 13px;
}
.blog-category-name {
    color: #555;
}
.updated-on time {
    /* font-weight: bold; */
    color: #555;
}
.blog-category-name i{
    color: var(--site-color);
}

.like-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: red;
}