/* CONTAINER CHÍNH */
.vn-ue-wrapper { width: 100%; max-width: 1200px; margin: 0 auto; padding: 40px 15px; background: #fafafa; border-radius: 8px;}

/* HEADER */
.vn-ue-header { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 40px; }
.vn-ue-title-icon { display: flex; align-items: center; }
.vn-ue-title { font-size: 32px; font-weight: 700; color: #111; margin: 0; line-height: 1; letter-spacing: 0.5px; }

/* BỌC SLIDER ĐỂ CHỨA NÚT MŨI TÊN OUTSIDE */
.vn-ue-slider-container { position: relative; padding: 0 45px; margin-bottom: 30px; }

/* SWIPER NAV (MŨI TÊN TRÒN ĐEN) */
.vn-ue-nav-prev, .vn-ue-nav-next { 
    background: #111; color: #fff !important; 
    width: 40px !important; height: 40px !important; 
    border-radius: 50%; margin-top: -20px !important; 
    transition: 0.3s; opacity: 0.8; 
}
.vn-ue-nav-prev:hover, .vn-ue-nav-next:hover { opacity: 1; background: #000; }
.vn-ue-nav-prev:after, .vn-ue-nav-next:after { font-size: 16px !important; font-weight: bold; }
.vn-ue-nav-prev { left: 0 !important; }
.vn-ue-nav-next { right: 0 !important; }
.swiper-button-disabled { opacity: 0.3 !important; cursor: not-allowed; }

/* CARD THIẾT KẾ TRẮNG TINH KHÔI */
.vn-ue-card { 
    background: #fff; border-radius: 8px; overflow: hidden; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.04); 
    display: flex; flex-direction: column; height: 100%; 
    border: 1px solid #f0f0f0; transition: 0.3s;
}
.vn-ue-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-5px); }

.vn-ue-card-img { width: 100%; height: 220px; overflow: hidden; display: block; }
.vn-ue-card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.vn-ue-card:hover .vn-ue-card-img img { transform: scale(1.05); }

.vn-ue-card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.vn-ue-card-title { font-size: 18px; font-weight: 700; margin: 0 0 0 0; line-height: 1.4; }
.vn-ue-card-title a { color: #222; text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: 0.2s; height: 50px;}
.vn-ue-card-title a:hover { color: #c4b07b; }

.vn-ue-card-date { font-size: 14px; color: #444; margin-bottom: 0; font-weight: 500; }

.vn-ue-card-cat { display: flex; align-items: center; gap: 5px; font-size: 13px; color: #888; margin-bottom: 10px; }
.vn-ue-card-cat svg { color: #999; }

.vn-ue-card-venue { font-size: 14px; color: #555; line-height: 1.5; margin-bottom: 25px; flex-grow: 1; min-height: 63px;}
.vn-ue-card-venue strong { color: #222; font-weight: 600; }

/* NÚT READ MORE TRONG CARD */
.vn-ue-card-btn { 
    display: inline-flex; justify-content: center; align-items: center; gap: 8px;
    width: 100%; background: #d32f2f; color: #FFF; 
    padding: 12px; border-radius: 4px; font-size: 14px; font-weight: 400; 
    text-decoration: none; transition: 0.3s; margin-top: auto;
}
.vn-ue-card-btn:hover { background: #cbb982; color: #111; }

/* PAGINATION (DẤU CHẤM DƯỚI) */
.vn-ue-swiper { padding-bottom: 50px !important; }
.vn-ue-pagination { bottom: 10px !important; }
.vn-ue-pagination .swiper-pagination-bullet { width: 8px; height: 8px; background: #d6c89a; opacity: 1; transition: 0.3s; margin: 0 6px !important; }
.vn-ue-pagination .swiper-pagination-bullet-active { width: 25px; border-radius: 4px; background: #111; }

/* NÚT XEM TẤT CẢ CUỐI CÙNG */
.vn-ue-footer-btn { text-align: center; margin-top: 10px; }
.vn-ue-btn-all { 
    display: inline-flex; align-items: center; gap: 10px; 
    background: #d32f2f; color: #FFF; font-size: 15px; font-weight: 600; 
    padding: 12px 40px; border-radius: 30px; text-decoration: none; 
    transition: 0.3s; 
}
.vn-ue-btn-all:hover { background: #cbb982; transform: translateY(-2px); }

/* RESPONSIVE */
@media (max-width: 992px) {
    .vn-ue-slider-container { padding: 0 20px; }
    .vn-ue-nav-prev { left: -10px !important; }
    .vn-ue-nav-next { right: -10px !important; }
}
@media (max-width: 768px) {
    .vn-ue-nav-prev, .vn-ue-nav-next { display: none !important; }
    .vn-ue-slider-container { padding: 0; }
}