
.fw-blog-section-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #181d38;
    padding-bottom: 50px;
    width: 100%;
}

/* --- Top Search Panel --- */
.fw-top-panel {
    background: #E9F9FF;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.fw-search-wrap {
    position: relative;
    width: 100%;
}

.fw-search-input {
    width: 100%;
    padding: 5px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    color: #181d38;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.fw-search-input:focus {
    border-color: #cf9c0a;
    box-shadow: 0 4px 12px rgba(207, 156, 10, 0.1);
}

.fw-search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: #181d38;
    font-size: 18px;
    cursor: pointer;
}

.fw-cat-wrap {
    position: relative;
}

.fw-cat-select {
    width: 100%;
    padding: 5px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    color: #181d38;
    font-size: 16px;
    font-weight: 600;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.fw-cat-wrap::after {
    content: '\f078';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #181d38;
    pointer-events: none;
    font-size: 14px;
}

/* --- Blog Card Design --- */
.fw-blog-card {
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #181d38;
    text-decoration: none !important;
}

.fw-blog-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.fw-card-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.fw-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fw-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fw-meta {
    font-size: 13px;
    color: #cf9c0a;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.fw-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #181d38;
    line-height: 1.4;
}

.fw-card-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fw-read-btn {
    margin-top: auto;
    color: #181d38;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fw-read-btn:hover {
    color: #cf9c0a !important;
    gap: 10px;
}

/* Category Icons Styling */
.browsec-item {
    transition: 0.3s;
    border-radius: 10px;
}

.browsec-item:hover {
    background: #E9F9FF;
    transform: translateY(-5px);
}

.browsec-item img {
    max-height: 60px;
}

/* Responsive Design - Mobile & Tablet Optimizations */
@media (max-width: 992px) {
    .fw-card-title {
        font-size: 16px;
    }
    
    .fw-card-desc {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .fw-top-panel .row {
        gap: 15px;
    }
    
    .fw-top-panel {
        padding: 12px 0;
    }
    
    .fw-card-img {
        height: 200px;
    }
    
    .fw-card-body {
        padding: 15px;
    }
    
    .fw-card-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .fw-card-desc {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .fw-meta {
        font-size: 12px;
    }
    
    .fw-read-btn {
        font-size: 13px;
    }
    
    .container.py-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .fw-card-img {
        height: 180px;
    }
    
    .fw-card-body {
        padding: 12px;
    }
    
    .fw-card-title {
        font-size: 15px;
    }
    
    .fw-card-desc {
        font-size: 12px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .fw-search-input,
    .fw-cat-select {
        font-size: 14px;
        padding: 4px 15px;
    }
}
