.blog-card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.author-img {
    width: 40px;
    height: 40px;
}
.card-title {
    font-size: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.card-text {
    font-size: 0.875rem;
    color: #6c757d;
}
.category-badge {
    position: absolute;
    bottom: 8px;
    left: 16px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
}
.author-info {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}
.author-name {
    margin-left: 0.5rem;
}
.tab {
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 16px;
    padding: 14px 16px;
    transition: background-color 0.3s;
    margin-right: 5px;
    color: black; /* Ensuring text color is black */
}
.tab:hover {
    background-color: #f1f1f1;
}
.tab.active {
    background-color: #6c757d !important; /* Darker grey background for active tab */
    color: white !important;
}
.tab-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.hero-section {
    text-align: center;
    padding: 50px 0;
}
.card-body {
    text-align: left;
}
.card-body .text-warning, 
.card-body h5.card-title, 
.card-body p.card-text {
    text-align: left;
}
.card-body .d-flex {
    justify-content: space-between;
    align-items: center;
}
