
.category-hero {
    background: linear-gradient(131deg, #2D318B 0%, #0090D2 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
}

.category-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-hero::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: white;
    margin: 20px auto 0;
}

.categories-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blogs-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}


.blog-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    padding-top: 40px;
}

.blogs-item {
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
}
.blogs-link {
   
font-size: 16px;
font-weight: 500;
line-height: 23.8px;
color: rgb(102, 102, 102);
padding:0;

}


.blogs-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
     
}

.blogs-item img:hover {
    transform: scale(1.10); 
    cursor: pointer;
}

.blogs-item h2,
.blogs-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 12px 0 6px;
    text-transform: uppercase;
    line-height: 1.4;
    padding: 0 12px;
}

.blogs-item .blog-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    padding: 0 12px 12px;
}
.link-blog:hover  {
    text-decoration: underline;
}

.blog-header-link {
font-size: 20px;
font-weight: 800;
line-height: 28px;
color: rgb(51, 51, 51);
}
.blogs-item .blog-header-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--fship-link, #2D318B);
    text-decoration: none;
    
}

.blogs-item .blog-header-link:hover {
    text-decoration: underline;
}


.blogs-item .blogs-tags a:hover {
    text-decoration: underline;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #777;
}
.blogs-tags {
margin-left: 12px;
}

.empty-state i {
    font-size: 40px;
    margin-bottom: 16px;
    color: #2D318B;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    color: #555;
}

/* Responsive tweaks */
@media screen and (max-width: 620px) {
    .category-hero h1 {
        font-size: 2rem;
    }
}
