/* ===== BODY NỀN (giữ nếu bạn đang dùng) ===== */
.body {
    background: #ffffff;
    /* nền trắng đúng như bạn nói */
    width: 100%;
    min-height: 100%;
    margin: 32px 0;
}

/* ===== LAYOUT 2 CỘT ===== */

.search-layout {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    /* sidebar rộng hơn */
    column-gap: 32px;
}

/* ===== SIDEBAR TÌM KIẾM ===== */

.search-sidebar {
    /* bỏ card */
    background: transparent;
    border: none;

    padding: 0 24px 0 0;
    /* chỉ padding bên phải */
    border-right: 1px solid #e5e7eb;
    /* đường kẻ phân cách với cột kết quả */
    box-sizing: border-box;
}

.search-sidebar-title {
    font-family: Inter;
    font-weight: 700;
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0px;
    color: var(--Text-Neutral-Default, rgba(48, 48, 48, 1));
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
	padding-bottom: 18px;
}

.search-field label {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0px;
    color: rgba(48, 48, 48, 1);
}

.search-input {
    width: 100%;
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    line-height: 160%;
    outline: none;
    box-sizing: border-box;
}

.search-input:focus {
    border-color: #0d47a1;
    box-shadow: 0 0 0 1px rgba(13, 71, 161, 0.15);
}

/* Từ ngày / Đến ngày */
.search-date-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 8px;
}

.search-date-input {
    position: relative;
}

.search-date-input .search-input {
    padding-right: 32px;
}

.search-date-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0.7;
}

/* Nút Tìm kiếm */
.search-btn {
    margin-top: 6px;
    width: 100%;
    height: 38px;
    border-radius: 4px;
    border: 1px solid #0d47a1!important;
    background: #0d47a1!important;
    color: #ffffff!important;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* ===== MAIN KẾT QUẢ GIỮ NGUYÊN (chỉ để lại nếu bạn chưa có) ===== */
.line-footer-bottom {
    background: rgba(48, 48, 48, 0.15);
}

.search-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-result-header {
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0px;
    color: var(--Text-Neutral-Default, rgba(48, 48, 48, 1));
}

.search-key {
    font-weight: 700;
}

.search-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-item {
    display: flex;
    gap: 12px;
}

.search-item img {
    width: 210px;
}

.content-box-same-category {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.title-content-box-same-category {
    font-family: Noto Serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0px;
    color: var(--Text-Neutral-Default, rgba(48, 48, 48, 1));
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-content-box-same-category {
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0px;
    color: var(--Text-Neutral-Secondary, rgba(90, 90, 90, 1));
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ... (phần .search-thumb, .search-content, .search-title, .search-desc,
        .search-pagination và responsive giữ như bạn đang dùng) ... */

/* ===== RESPONSIVE ===== */

@media (max-width: 991.98px) {
    .search-layout {
		display: flex;
		flex-direction: column;
    }

    .search-sidebar {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 0 0 16px 0;
    }
}

@media (max-width: 575.98px) {
    .search-item {
        flex-direction: column;
    }

    .search-thumb {
        width: 100%;
        height: 180px;
    }

    .search-pagination {
        justify-content: center;
    }
	
	.body {
		width: 100vw;
	}
}