
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'poppins', sans-serif;
}

p,a,input,label,textarea,span,ul,li{
    font-family: 'poppins', sans-serif;
}

body {
    color: #333;
    background-color: #fff;
}

/* Header Banner */
.product-cat-banner {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #005587;
    align-items: center;
    justify-content: center;
    background-size: cover;
    display: flex;
    padding: 0 5%;
    margin-bottom: 15px;
}

.product-cat-banner h1 {
    color: #fff;
    font-family: 'Yantramanav', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Container styles */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Breadcrumb Navigation */
.breadcrumb {
    padding: 0;
    margin-bottom: 2rem;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin: 0 0.5rem;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #333;
}

.breadcrumb li:last-child {
    color: #333;
    font-weight: 500;
}

/* Blog post list styles */
.blog-post {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #cccccc;
}

/* Thumbnail styles */
.thumbnail {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: 5px;
    overflow: hidden;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content styles */
.post-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
}

.post-excerpt {
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.read-more {
    color: #005587;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.read-more:after {
    content: '→';
    transition: transform 0.2s;
}

.read-more:hover:after {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.pagination a {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
}

.pagination a.active {
    background-color: #233b55;
    color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
    .blog-post {
        flex-direction: column;
        gap: 1.5rem;
    }

    .thumbnail {
        width: 100%;
        height: 100%;
    }

    .container {
        padding: 1.5rem;
    }

    .post-title {
        font-size: 1.5rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }
}
