.blog-hero {
	width: 100% !important;
    min-height: 700px;
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}
.hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 60px;
	position: relative;
	min-height: 600px;
	width: 100%;
	z-index: 1
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/themes/base/assets/images/blog-hero-bg.jpg'); /* Thay bằng ảnh của bạn */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 34, 59, 0.6); /* Lớp phủ màu tối */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 48px;
    margin: 0 0 15px 0;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.search-bar {
    position: relative;
    margin-bottom: 20px;
}

.search-bar input {
    width: 100%;
    height: 55px;
    border-radius: 30px;
    border: 1px solid #ced4da;
    padding: 0 25px 0 50px;
    font-size: 16px;
}

.search-bar i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.filter-tags .tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    margin: 5px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.filter-tags .tag:hover {
    background: rgba(255, 255, 255, 0.4);
}