/* HERO */

.events-hero {
    background:linear-gradient(160deg,var(--g9),var(--g7) 55%,var(--g6));
    color:var(--w);
    padding:26px 0;
    position:relative;
    overflow:hidden;
}

.events-hero-inner {
    max-width:1320px;
    margin:0 auto;
    padding:0 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
    z-index:2;
}

.events-hero h1 {
    font-size:28px;
    font-weight:800;
    margin-bottom:3px;
}

.events-hero h1 span {
    color:var(--gold);
}

.events-hero .sub {
    font-size:12.5px;
    opacity:.7;
}

.events-hero-deco {
    position:absolute;
    right:230px;
    top:50%;
    transform:translateY(-50%);
    opacity:.1;
    font-size:95px;
    color:var(--gold);
}


/* THỐNG KÊ */

.stats {
    background:var(--w);
    border-bottom:1px solid #eee;
}

.stats-inner {
    max-width:1320px;
    margin:0 auto;
    padding:0 28px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:1px;
}

.st-cell {
    background:var(--w);
    padding:15px 14px;
    display:flex;
    align-items:center;
    gap:11px;
}

.st-icon {
    width:40px;
    height:40px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:19px;
    flex-shrink:0;
}

.sti-total {
    background:var(--g50);
    color:var(--g7);
}

.sti-sap {
    background:var(--st-sap-bg);
    color:var(--st-sap);
}

.sti-dang {
    background:var(--st-dang-bg);
    color:var(--st-dang);
}

.sti-da {
    background:var(--st-da-bg);
    color:var(--st-da);
}

.sti-dk {
    background:var(--lv-dinhky-bg);
    color:var(--lv-dinhky);
}

.st-d .n {
    font-size:21px;
    font-weight:800;
    line-height:1.1;
}

.st-d .l {
    font-size:10.5px;
    color:var(--g500);
}

.n-total {
    color:var(--g7);
}

.n-sap {
    color:var(--st-sap);
}

.n-dang {
    color:var(--st-dang);
}

.n-da {
    color:var(--st-da);
}

.n-dk {
    color:var(--lv-dinhky);
}

/*CALENDAR*/

.ev-block-calendar {
    position: relative;
    padding: 20px;
}
.ev-cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.ev-cal-month {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}
.ev-cal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #555;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}
.ev-cal-btn:hover {
    background-color: #f0f8f1;
    color: #1a6b35;
}
.ev-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}
.ev-cal-dow {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    margin-bottom: 10px;
}
.ev-cal-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 38px;
    border-radius: 8px;
    font-size: 13px;
    color: #444;
    text-decoration: none;
    position: relative;
    transition: all 0.2s;
}
.ev-cal-cell:hover:not(.ev-cal-other-month) {
    background: #f0f8f1;
    color: #1a6b35;
}
.ev-cal-other-month {
    color: #ccc;
    pointer-events: none;
}
.ev-cal-has-event {
    font-weight: 600;
    color: #222;
}
.ev-cal-dot {
    width: 4px;
    height: 4px;
    background: #d32f2f;
    border-radius: 50%;
    position: absolute;
    bottom: 6px;
}
.ev-cal-active, .ev-cal-today {
    background: #1a6b35 !important;
    color: #fff !important;
    font-weight: 700;
}
.ev-cal-active .ev-cal-dot, .ev-cal-today .ev-cal-dot {
    background: #f5a623;
}

/* TABS TRẠNG THÁI */

.tabs-bar {
    background:var(--w);
    border-bottom:1px solid #eee;
}

.tabs-inner {
    max-width:1320px;
    margin:0 auto;
    padding:0 28px;
    display:flex;
    gap:0;
    overflow-x:auto;
    scrollbar-width:none;
}

.tabs-inner::-webkit-scrollbar {
    display:none;
}

.tab {
    padding:14px 20px;
    font-size:12.5px;
    font-weight:600;
    color:var(--g600);
    cursor:pointer;
    border-bottom:2.5px solid transparent;
    transition:.2s;
    white-space:nowrap;
    display:flex;
    align-items:center;
    gap:6px;
}

.tab:hover {
    color:var(--g7);
    background:var(--g50);
}

.tab.active {
    color:var(--g7);
    border-bottom-color:var(--g7);
}

.tab i {
    font-size:16px;
}

.tab .cnt {
    font-size:11px;
    color:var(--g500);
    font-weight:400;
}

/* FILTER MỨC ĐỘ */

.filter-bar {
    background:var(--f5);
    border-bottom:1px solid #eee;
    padding:12px 0;
}

.filter-inner {
    max-width:1320px;
    margin:0 auto;
    padding:0 28px;
    display:flex;
    gap:8px;
    align-items:center;
    flex-wrap:wrap;
}

.f-label {
    font-size:11.5px;
    color:var(--g500);
    margin-right:3px;
    display:flex;
    align-items:center;
    gap:4px;
}

.f-label i {
    font-size:14px;
}

.lv-tag {
    padding:6px 14px;
    border-radius:18px;
    font-size:11.5px;
    font-weight:600;
    cursor:pointer;
    transition:.15s;
    display:flex;
    align-items:center;
    gap:6px;
    background:var(--w);
    border:1.5px solid var(--e0);
    color:var(--g700);
}

.lv-tag:hover {
    border-color:currentColor;
}

.lv-tag.active {
    color:var(--w);
    background-color: var(--cat-color);
}

.lv-tag .dot {
    background-color: var(--dot-color);
    width:8px;
    height:8px;
    border-radius:50%;
    flex-shrink:0;
}

.lv-tag.active .dot{
    background-color: #fff;
}

.lv-all.active {
    background:var(--g7);
    border-color:var(--g7);
}

.lv-daihoi .dot {
    background:var(--lv-daihoi);
}

.lv-daihoi.active {
    background:var(--lv-daihoi);
    border-color:var(--lv-daihoi);
}

.lv-daihoi.active .dot {
    background:var(--w);
}

.lv-giaothuong .dot {
    background:var(--lv-giaothuong);
}

.lv-giaothuong.active {
    background:var(--lv-giaothuong);
    border-color:var(--lv-giaothuong);
}

.lv-giaothuong.active .dot {
    background:var(--w);
}

.lv-dinhky .dot {
    background:var(--lv-dinhky);
}

.lv-dinhky.active {
    background:var(--lv-dinhky);
    border-color:var(--lv-dinhky);
}

.lv-dinhky.active .dot {
    background:var(--w);
}

.lv-nho .dot {
    background:var(--lv-nho);
}

.lv-nho.active {
    background:var(--lv-nho);
    border-color:var(--lv-nho);
}

.lv-nho.active .dot {
    background:var(--w);
}

.search-mini {
    margin-left:auto;
    position:relative;
}

.search-mini i {
    position:absolute;
    left:11px;
    top:50%;
    transform:translateY(-50%);
    color:var(--bd);
    font-size:15px;
}

.search-mini input {
    padding:7px 12px 7px 33px;
    border:1px solid var(--e0);
    border-radius:18px;
    font-size:12px;
    font-family:inherit;
    width:220px;
    background:var(--w);
}

.search-mini input:focus {
    outline:none;
    border-color:var(--g6);
    box-shadow:0 0 0 3px rgba(31,122,61,.08);
}

.view-toggle {
    display:flex;
    border:1px solid var(--e0);
    border-radius:7px;
    overflow:hidden;
    background:var(--w);
}

.view-toggle button {
    padding:6px 10px;
    border:none;
    background:var(--w);
    cursor:pointer;
    color:var(--g500);
    font-size:15px;
    display:flex;
    align-items:center;
}

.view-toggle button.active {
    background:var(--g50);
    color:var(--g7);
}

.view-toggle button+button {
    border-left:1px solid var(--e0);
}

/* EVENT CARD */
.ev-list {
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-bottom:26px;
}

.ev-card {
    background:var(--w);
    border:1px solid #eee;
    border-radius:12px;
    display:flex;
    gap:0;
    overflow:hidden;
    cursor:pointer;
    transition:.2s;
    border-left:4px solid;
}

.ev-card:hover {
    box-shadow:0 4px 16px rgba(0,0,0,.07);
}

.ev-card.lv-1 {
    border-left-color:var(--lv-daihoi);
}

.ev-card.lv-2 {
    border-left-color:var(--lv-giaothuong);
}

.ev-card.lv-3 {
    border-left-color:var(--lv-dinhky);
}

.ev-card.lv-4 {
    border-left-color:var(--lv-nho);
}

/* Date block */

.ev-date {
    width:88px;
    flex-shrink:0;
    background:var(--f5);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:14px 8px;
    border-right:1px solid #f0f0f0;
}

.ev-date .day {
    font-size:28px;
    font-weight:800;
    color:var(--g900);
    line-height:1;
}

.ev-date .month {
    font-size:11px;
    font-weight:600;
    color:var(--g600);
    margin-top:2px;
    text-transform:uppercase;
}

.ev-date .year {
    font-size:10.5px;
    color:var(--g500);
}

.ev-date .dow {
    font-size:10px;
    color:var(--g500);
    margin-top:4px;
    padding-top:4px;
    border-top:1px solid var(--e0);
    width:100%;
    text-align:center;
}

.ev-date.past {
    background:#fafafa;
    opacity:.75;
}

/* Image */

.ev-img {
    width:220px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:rgba(255,255,255,.35);
    position:relative;
}

.ev-img a{
    height: 100%;
}

.ev-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ev-img .countdown {
    position:absolute;
    bottom:8px;
    left:8px;
    right:8px;
    padding:4px 8px;
    border-radius:5px;
    font-size:10px;
    font-weight:700;
    background:rgba(0,0,0,.65);
    color:var(--w);
    text-align:center;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:4px;
}

.ev-img .countdown i {
    font-size:11px;
}

/* Events Body */

.ev-body {
    flex:1;
    min-width:0;
    padding:14px 18px;
    display:flex;
    flex-direction:column;
}

.ev-top {
    display:flex;
    align-items:center;
    gap:7px;
    margin-bottom:7px;
    flex-wrap:wrap;
}

.lv-badge {
    padding:3px 10px;
    border-radius:6px;
    font-size:10px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:4px;
    text-transform:uppercase;
    letter-spacing:.2px;
}

.lv-badge i {
    font-size:12px;
}

.lvb-1 {
    background:var(--lv-daihoi-bg);
    color:var(--lv-daihoi);
}

.lvb-2 {
    background:var(--lv-giaothuong-bg);
    color:var(--lv-giaothuong);
}

.lvb-3 {
    background:var(--lv-dinhky-bg);
    color:var(--lv-dinhky);
}

.lvb-4 {
    background:var(--lv-nho-bg);
    color:var(--lv-nho);
}

.st-badge {
    padding:3px 10px;
    border-radius:6px;
    font-size:10px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:4px;
}

.st-badge i {
    font-size:11px;
}

.stb-sap,
.stb-upcoming {
    background:var(--st-sap-bg);
    color:var(--st-sap);
}

.stb-dang,
.stb-ongoing{
    background:var(--st-dang-bg);
    color:var(--st-dang);
    animation:blink 1.8s infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity:1;
    }
    50% {
        opacity:.6;
    }
}

.stb-da,
.stb-past {
    background:var(--st-da-bg);
    color:var(--st-da);
}

.dinhky-badge {
    padding:3px 9px;
    border-radius:6px;
    font-size:10px;
    font-weight:600;
    background:#f3e5f5;
    color:#6a1b9a;
    display:flex;
    align-items:center;
    gap:4px;
}

.dinhky-badge i {
    font-size:11px;
}

.ev-title {
    font-size:16px;
    font-weight:700;
    color:var(--g900);
    line-height:1.4;
    margin-bottom:5px;
    margin-top: 0;
}

.ev-desc {
    font-size:12.5px;
    color:var(--g600);
    line-height:1.65;
    margin-bottom:9px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.ev-meta {
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    font-size:11.5px;
    color:var(--g600);
    margin-bottom:9px;
}

.ev-meta span {
    display:flex;
    align-items:center;
    gap:4px;
}

.ev-meta i {
    font-size:14px;
    color:var(--g500);
}

.ev-meta strong {
    font-weight:600;
    color:var(--g800);
}

.ev-footer {
    display:flex;
    align-items:center;
    gap:9px;
    margin-top:auto;
    padding-top:10px;
    border-top:1px solid #f8f8f8;
}

.ev-attendees {
    display:flex;
    align-items:center;
    gap:-6px;
    cursor: pointer;
}

.att-av {
    width:24px;
    height:24px;
    border-radius:50%;
    background:var(--g7);
    color:var(--w);
    font-size:9px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid var(--w);
    margin-left:-6px;
}

.att-av:first-child {
    margin-left:0;
}

.att-more {
    width:24px;
    height:24px;
    border-radius:50%;
    background:var(--f5);
    color:var(--g600);
    font-size:9px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid var(--w);
    margin-left:-6px;
}

.att-txt {
    font-size:11px;
    color:var(--g500);
    margin-left:6px;
}

.btn-ev {
    padding:7px 16px;
    border-radius:7px;
    font-size:12px;
    font-weight:600;
    cursor:pointer;
    font-family:inherit;
    border:1.5px solid var(--e0);
    background:var(--w);
    color:var(--g700);
    display:flex;
    align-items:center;
    gap:5px;
    transition:.15s;
    margin-left:auto;
}

.btn-ev:hover {
    border-color:var(--g7);
    color:var(--g7);
    background:var(--g50);
}

.btn-ev.primary {
    background:var(--g7);
    color:var(--w);
    border-color:var(--g7);
}

.btn-ev.primary:hover {
    background:var(--g8);
}

.btn-ev.past {
    background:var(--f5);
    color:var(--g600);
    border-color:var(--e0);
}

.btn-ev i {
    font-size:14px;
}

/* Registration Modal & Form */
.modal-content.ev-modal {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}
.ev-modal .modal-header {
    background: var(--f5);
    border-bottom: 1px solid var(--e0);
    padding: 15px 20px;
    display: flex;
    align-items: center;
}
.ev-modal .modal-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--g8);
}
.ev-modal .close {
    padding: 0;
    margin: 0 10px 0 auto;
    font-size: 22px;
    color: var(--g700);
    opacity: 1;
    background: transparent;
    border: none;
}
.ev-modal .close:hover {
    color: var(--g8);
}
.ev-modal .modal-body {
    padding: 24px;
}
.ev-form-group {
    margin-bottom: 15px;
}
.ev-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--g700);
    margin-bottom: 6px;
}
.ev-req {
    color: #e74c3c;
}
.ev-input {
    width: 100%;
    border: 1px solid var(--e0);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--g8);
    transition: all 0.2s;
    background: #fff;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.ev-input:focus {
    border-color: var(--g7);
    box-shadow: 0 0 0 3px rgba(33,37,41,0.1);
}
.ev-input::placeholder {
    color: #666;
}
.ev-btn-join {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    background: var(--g7);
    color: var(--w);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
}
.ev-btn-join:hover {
    background: var(--g8);
}
.ev-reg-event-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--g8);
    margin-bottom: 20px;
    line-height: 1.4;
}
.ev-alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14.5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
    animation: fadeInDown 0.3s ease forwards;
}
.ev-alert i {
    font-size: 20px;
    flex-shrink: 0;
}
.ev-alert-success {
    background: #ecfdf5;
    border: 1px solid #10b981;
    color: #065f46;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}
.ev-alert-success i {
    color: #10b981;
}
.ev-alert-error {
    background: #fef2f2;
    border: 1px solid #ef4444;
    color: #991b1b;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}
.ev-alert-error i {
    color: #ef4444;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.block-recurring-events {
    display:flex;
    flex-direction:column;
}

.recurring-event-item {
    display:flex;
    align-items:center;
    padding:12px 16px;
    border-bottom:1px solid #f8f8f8;
}

.recurring-event-item:last-child {
    border-bottom:none;
}

.recurring-event-item .re-icon {
    width:40px;
    height:40px;
    border-radius:12px;
    background-color:#e3f2fd;
    color:#1976d2;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    margin-right:15px;
    flex-shrink:0;
}

.recurring-event-item .re-info .re-title {
    margin:0 0 4px 0;
    font-size:13px;
    font-weight:600;
    color:#333;
}

.recurring-event-item .re-info .re-time {
    font-size:10.5px;
    color:#888;
    display:flex;
    align-items:center;
}

.recurring-event-item .re-info .re-time i {
    margin-right:5px;
    font-size:13px;
}

/* KHÔNG CÓ SỰ KIỆN */
.ev-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #f9fbfd;
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    text-align: center;
    color: #64748b;
    margin-bottom: 26px;
}

.ev-empty i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 15px;
}

.ev-empty p {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}


/* EVENT HERO */

.ev-hero {
    height: 220px;
    background: linear-gradient(357deg, #15522a, #7db28f 55%, #ffffff);
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.ev-hero-icon {
    position:absolute;
    right:80px;
    top:50%;
    transform:translateY(-50%);
    font-size:130px;
    color:rgba(255,255,255,.12);
}

.ev-hero-inner {
    max-width:1240px;
    margin:0 auto;
    padding:0 26px 26px;
    width:100%;
    position:relative;
    z-index:2;
}

.ev-badges {
    display:flex;
    gap:8px;
    margin-bottom:10px;
    flex-wrap:wrap;
}

.ev-badges .st-badge{
    font-size: 12px;
}

.ev-hero h1 {
    font-size:30px;
    font-weight:800;
    color:#fff;
    line-height:1.35;
    max-width:800px;
    margin-bottom:8px;
}

.ev-hero-meta {
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    color:rgba(255,255,255,.9);
    font-size:13px;
}

.ev-hero-meta span {
    display:flex;
    align-items:center;
    gap:5px;
}

.ev-hero-meta i {
    font-size:16px;
}

/* COUNTDOWN BAR */

.cd-bar {
    background:var(--g8);
    color:#fff;
    padding:14px 0;
}

.cd-inner {
    max-width:1240px;
    margin:0 auto;
    padding:0 26px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.cd-left {
    display:flex;
    align-items:center;
    gap:12px;
}

.cd-label {
    font-size:12.5px;
    opacity:.8;
}

.cd-boxes {
    display:flex;
    gap:8px;
}

.cd-box {
    background:rgba(255,255,255,.14);
    border-radius:8px;
    padding:7px 13px;
    text-align:center;
    min-width:56px;
}

.cd-box .n {
    font-size:20px;
    font-weight:800;
    line-height:1;
}

.cd-box .l {
    font-size:9.5px;
    opacity:.7;
    margin-top:2px;
}

.cd-right {
    display:flex;
    gap:9px;
}

.btn-cd {
    padding:10px 22px;
    border-radius:8px;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
    font-family:inherit;
    border:none;
    display:flex;
    align-items:center;
    gap:6px;
    transition:.2s;
}

.btn-join {
    background:var(--gold);
    color:#3d2b00;
}

.btn-join:hover {
    background:#c9a52f;
}

.btn-cal {
    background:rgba(255,255,255,.16);
    color:#fff;
}

.btn-cal:hover {
    background:rgba(255,255,255,.26);
}

.btn-cd i {
    font-size:16px;
}

/* Đăng ký box */

.reg-box {
    background:linear-gradient(160deg,var(--g8),var(--g6));
    color:#fff;
    border-radius:12px;
    padding:18px;
    text-align:center;
}

.reg-box .cnt {
    font-size:32px;
    font-weight:800;
    line-height:1;
    margin-bottom:3px;
}

.reg-box .cnt-l {
    font-size:11.5px;
    opacity:.75;
    margin-bottom:12px;
}

.reg-prog {
    height:7px;
    background:rgba(255,255,255,.2);
    border-radius:4px;
    overflow:hidden;
    margin-bottom:6px;
}

.reg-fill {
    height:100%;
    background:var(--gold);
    border-radius:4px;
}

.reg-note {
    font-size:10.5px;
    opacity:.72;
    margin-bottom:13px;
}

.btn-reg {
    width:100%;
    padding:11px;
    background:var(--gold);
    color:#3d2b00;
    border:none;
    border-radius:8px;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
    font-family:inherit;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
}

.btn-reg:hover {
    background:#c9a52f;
}

.btn-reg i {
    font-size:16px;
}

/* Tabs */

.tabs {
    display:flex;
    border-bottom:2px solid #f0f0f0;
    padding:0 20px;
    background:var(--w);
}

.tab {
    padding:13px 16px;
    font-size:12.5px;
    font-weight:600;
    color:var(--g600);
    cursor:pointer;
    border-bottom:2.5px solid transparent;
    margin-bottom:-2px;
    transition:.2s;
    white-space:nowrap;
}

.tab:hover {
    color:var(--g7);
}

.tab.active {
    color:var(--g7);
    border-bottom-color:var(--g7);
}

.content {
    font-size:13.5px;
    color:var(--g700);
    line-height:1.85;
}

.content p {
    margin-bottom:14px;
}

.content h4 {
    font-size:15px;
    font-weight:700;
    color:var(--g900);
    margin:20px 0 10px;
    font-family:'Inter',sans-serif;
}

.content ul {
    margin:0 0 14px 20px;
}

.content li {
    margin-bottom:7px;
}

.content strong {
    color:var(--g900);
    font-weight:600;
}

/* Agenda */

.agenda {
    display:flex;
    flex-direction:column;
    gap:0;
}

.ag-item {
    display:flex;
    gap:14px;
    padding:13px 0;
    border-bottom:1px dashed #eee;
    position:relative;
}

.ag-item:last-child {
    border-bottom:none;
}

.ag-time {
    width:120px;
    flex-shrink:0;
    font-size:12.5px;
    font-weight:700;
    color:var(--g7);
    display:flex;
    align-items:flex-start;
    gap:5px;
}

.ag-time i {
    font-size:14px;
    margin-top:2px;
}

.ag-body {
    flex:1;
}

.ag-title {
    font-size:13px;
    font-weight:600;
    color:var(--g900);
    margin-bottom:2px;
}

.ag-desc {
    font-size:12px;
    color:var(--g600);
    line-height:1.6;
}

.ag-speaker {
    font-size:11.5px;
    color:var(--g7);
    margin-top:4px;
    display:flex;
    align-items:center;
    gap:5px;
}

.ag-speaker i {
    font-size:13px;
}

/* Speakers */

.spk-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.spk {
    text-align:center;
    padding:14px;
    border:1px solid #eee;
    border-radius:10px;
    transition:.2s;
}

.spk:hover {
    border-color:var(--g4);
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.spk-av {
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--g7);
    color:#fff;
    font-size:19px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 9px;
}

.spk-name {
    font-size:13px;
    font-weight:700;
    color:var(--g900);
    margin-bottom:2px;
}

.spk-role {
    font-size:11px;
    color:var(--g600);
    line-height:1.5;
}

/* Share */

.share-btns {
    display:flex;
    gap:7px;
    padding:14px 16px;
    flex-wrap:wrap;
}

.sb {
    width:36px;
    height:36px;
    border-radius:8px;
    border:none;
    cursor:pointer;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
}

.sb:hover {
    opacity:.85;
}

.sb-fb {
    background:#1877f2;
}

.sb-li {
    background:#0a66c2;
}

.sb-za {
    background:#0068ff;
}

.sb-cp {
    background:var(--g600);
}

/* Map */

.map-box {
    height:200px;
    border-radius:10px;
    background:linear-gradient(135deg,#e8f5e9,#c8e6c9);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:8px;
    color:var(--g7);
    border:1px solid #c8e6c9;
    margin-bottom:12px;
    overflow:hidden;
}

.map-box iframe {
    width:100% !important;
    height:100% !important;
    border:none !important;
}

.map-box i {
    font-size:38px;
}

.map-box span {
    font-size:12.5px;
    font-weight:600;
}

.loc-rows {
    display:flex;
    flex-direction:column;
    gap:9px;
}

.loc-row {
    display:flex;
    align-items:flex-start;
    gap:9px;
    font-size:12.5px;
}

.loc-row i {
    font-size:15px;
    color:var(--g7);
    margin-top:2px;
    flex-shrink:0;
}

.loc-row .lbl {
    color:var(--g500);
    min-width:90px;
}

.loc-row .val {
    font-weight:600;
    color:var(--g800);
}

/* Gallery */

.gal-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:9px;
}

.gal-item {
    height:90px;
    border-radius:8px;
    cursor:pointer;
    transition:.2s;
    position:relative;
    overflow: hidden;
}

.gal-item img{
    width: 100%;
    height:90px;
    object-fit: cover;
    transition:.2s;
}

.gal-item:hover img{
    transform:scale(1.03);
}

.gal-more {
    background:#37474f;
    color:#fff;
    font-size:15px;
    font-weight:700;
}

/* Attendees List */
.ev-attendees-wrap {
    padding: 0;
}
.ev-attendees-list {
    display: flex;
    flex-direction: column;
}
.ev-attendee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-bottom: 1px solid #f9f9f9;
}
.ev-attendee-modal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-bottom: 1px solid #f9f9f9;
}
.ev-attendee-avatar-wrap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
}
.ev-attendee-initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ev-attendee-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ev-attendee-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.ev-attendee-name {
    font-weight: 600;
    color: #333;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ev-attendee-company {
    color: #999;
    font-size: 12px;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ev-attendee-more {
    display: block;
    text-align: center;
    padding: 15px;
    color: #1a6b35;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
}
.ev-attendee-more:hover {
    color: #124d26;
    text-decoration: none;
}

/* Modal Attendees */
.ev-attendees-modal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.ev-attendees-modal .modal-header {
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
}
.ev-attendees-modal .modal-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0;
}
.ev-attendees-modal .close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    margin: 0 10px 0 auto;
}
.ev-attendees-modal .modal-body {
    padding: 0;
    max-height: 400px;
    overflow-y: auto;
}

/* Event Documents List */
.ev-docs-wrap {
    padding: 0;
}
.ev-docs-head {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
}
.ev-docs-list {
    display: flex;
    flex-direction: column;
}
.ev-doc-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-bottom: 1px solid #f9f9f9;
    text-decoration: none;
    transition: background 0.2s;
}
.ev-doc-item:hover {
    background: #fafafa;
    text-decoration: none;
}
.ev-doc-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    flex-direction: column;
    gap: 2px;
}
.ev-doc-icon {
    font-size: 20px;
}
.ev-doc-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.ev-doc-title {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ev-doc-meta {
    color: #999;
    font-size: 12px;
}

/* Bản tin liên quan (Related News) */
.ev-news-item {
    display: flex;
    text-decoration: none;
    padding: 12px 15px;
    border-bottom: 1px solid #f9f9f9;
    color: inherit;
    transition: 0.2s;
}
.ev-news-item:last-child{
    border: none;
}
.ev-news-item:hover {
    opacity: 0.8;
}
.ev-news-thumb {
    width: 70px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 10px;
    background: #f0f0f0;
}
.ev-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ev-news-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ev-news-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #333;
}
.ev-news-meta {
    font-size: 11px;
    color: #888;
    margin-top: 3px;
}