/* Hot Badge Styles */
.hot-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
    animation: hotPulse 2s infinite;
}

@keyframes hotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.blog-image-wrap {
    position: relative;
}

.category-archive-container{
    margin-top:50px;
}
.category-heading{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.category-heading .category-title{
    display:flex;
    justify-content: center;
    align-items: center;
    gap:5px;
}
.category-heading .category-title::before {
    width: 6px;
    height: 10px;
    flex: 0 0 .6rem;
    border-radius: 50%;
    background-color: #8c5eee;
    content: "";
}
.category-heading h1, .category-heading p{
    margin-bottom: 0px;
}
ul li {
    list-style: none;
}