/* assets/css/frontend.css */

/* =========================================
   1. CẤU HÌNH KHOẢNG THỤT MẶC ĐỊNH (FALLBACK)
   ========================================= */
:root {
    --mfs-indent: 20px; 
}
@media (min-width: 768px) { :root { --mfs-indent: 20vw; } }
@media (min-width: 1024px) { :root { --mfs-indent: 14vw; } }

/* =========================================
   2. CONTAINER CHÍNH
   ========================================= */
.mfs-wrapper {
    width: 100%;
    margin: 60px 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    /* Các biến CSS màu sắc/font sẽ được inline style gán vào đây */
}

/* =========================================
   3. HEADER
   ========================================= */
.mfs-header {
    width: 100%; max-width: none; margin: 0 0 40px 0;
    padding-left: var(--mfs-indent); padding-right: 5vw;
    display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; box-sizing: border-box;
}
.mfs-header-content { max-width: 600px; }

/* [CẬP NHẬT] Sử dụng biến cho Title & Description */
.mfs-title { 
    font-weight: 700; margin: 0 0 20px 0; line-height: 1.2;
    color: var(--mfs-main-title-color, #111); /* Fallback #111 */
    font-size: var(--mfs-main-title-size, 42px);
}
.mfs-desc { 
    margin: 0; 
    color: var(--mfs-main-desc-color, #555);
    font-size: var(--mfs-main-desc-size, 18px);
}

.mfs-nav-container { display: flex; gap: 12px; }

/* [CẬP NHẬT QUAN TRỌNG] Nút điều hướng sử dụng biến */
.mfs-button-prev, .mfs-button-next {
    width: 48px; height: 48px; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; cursor: pointer; 
    transition: all 0.3s ease; z-index: 20;
    
    /* Sử dụng biến màu nền và màu icon */
    background: var(--mfs-nav-btn-bg, #fff);
    color: var(--mfs-nav-btn-color, #111);
    border: 1px solid var(--mfs-nav-btn-bg, #ddd); /* Viền cùng màu nền */
}
.mfs-button-prev:hover, .mfs-button-next:hover {
    /* Sử dụng biến màu hover */
    background: var(--mfs-nav-btn-bg-hover, #111);
    color: var(--mfs-nav-btn-color-hover, #fff);
    border-color: var(--mfs-nav-btn-bg-hover, #111);
}

/* =========================================
   4. SLIDER AREA
   ========================================= */
.mfs-slider-container { width: 100%; position: relative; height: 550px; padding: 0; z-index: 10; }
.mfs-swiper { width: 100%; height: 100%; padding-left: var(--mfs-indent); overflow: visible !important; box-sizing: border-box; display: block; }
.swiper-wrapper { position: relative; width: 100%; height: 100%; z-index: 1; display: flex; transition-property: transform; box-sizing: content-box; }
.swiper-slide { flex-shrink: 0; width: 100%; height: 100%; max-height: 480px; position: relative; transition-property: transform; border-radius: 0; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* =========================================
   5. CARD STYLE (ĐÃ NÂNG CẤP GIAI ĐOẠN 3)
   ========================================= */
.mfs-card { display: block; width: 100%; height: 100%; position: relative; text-decoration: none; overflow: hidden; border-radius: 0; }

/* [UPDATE] Background xử lý tốt hơn cho ảnh blog */
.mfs-card-bg { 
    width: 100%; 
    height: 100%; 
    background-size: cover; 
    background-position: center center; 
    background-repeat: no-repeat; 
    background-color: #333; /* Màu tối dự phòng để text trắng vẫn đọc được khi ảnh chưa load */
    transition: transform 0.6s ease; 
}
.mfs-card:hover .mfs-card-bg { transform: scale(1.08); }

.mfs-card-content { 
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; 
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, transparent 100%); 
    z-index: 2; pointer-events: none; 
}

/* Title của Card */
.mfs-card-title { 
    font-weight: 700; margin: 0 0 10px 0; line-height: 1.3; 
    color: var(--mfs-card-title-color, #fff);
    font-size: var(--mfs-card-title-size, 24px);
}

/* [UPDATE QUAN TRỌNG] Giới hạn mô tả đúng 2 dòng cho Blog */
.mfs-card-text { 
    display: -webkit-box;
    -webkit-line-clamp: 2;           /* Giới hạn số dòng là 2 */
    -webkit-box-orient: vertical;    /* Hướng box dọc */
    overflow: hidden;                /* Ẩn phần thừa */
    text-overflow: ellipsis;         /* Thêm dấu ... */
    
    margin: 0; 
    line-height: 1.5; 
    max-height: 3em; /* Fallback: 1.5em * 2 dòng = 3em */
    
    color: var(--mfs-card-text-color, #e0e0e0);
    font-size: var(--mfs-card-text-size, 16px);
}

/* =========================================
   6. MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .mfs-slider-container { height: 450px; }
    .swiper-slide { max-height: 380px; }
}
@media (max-width: 768px) {
    .mfs-wrapper { margin: 40px 0; }
    .mfs-header { display: block; padding-right: 20px; }
    .mfs-nav-container { margin-top: 15px; justify-content: flex-end; }
    
    /* Mobile: Giảm kích thước font một chút nếu cần, hoặc để scale theo biến */
    .mfs-slider-container { height: 400px; }
    .swiper-slide { max-height: 340px; }
    
    /* Mobile: Giảm padding trong card */
    .mfs-card-content { padding: 20px; }
}