/* ========================================= */
/* THEME TỐI GIẢN (MINIMALIST) - V2 (Mobile Optimized) */
/* ========================================= */

/* --- Cài đặt Font & Cơ bản --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Quicksand:wght@400;500;700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background: #ffffff;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: #111;
}

section {
    width: 100%;
    padding: 80px 5%;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- 1. Header & Menu --- */
.header {
    background: #ffffff;
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between; /* Đẩy logo và menu ra 2 bên */
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

/* Logo / Tên cặp đôi */
.header-logo {
    flex-shrink: 0; /* Không bị co lại */
}
.header-logo a {
    text-decoration: none;
    color: #111;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; /* Tăng kích thước tên */
    font-weight: 600;
}

.main-nav ul {
    list-style: none; margin: 0; padding: 0; display: flex;
}
.main-nav ul li {
    margin: 0 15px;
}
.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}
.main-nav ul li a:hover,
.main-nav ul li.current_page_item a {
    color: #888;
}

/* --- 2. Hero Section --- */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 5%;
    min-height: 80vh;
}
.hero-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    padding-right: 40px;
    margin-right: 40px;
    border-right: 2px solid #333;
}
.hero-main {
    text-align: center;
}
.hero-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px auto;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #eee;
}
.hero-names {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 10px 0;
}
.hero-footer-date {
    margin-top: 20px;
}
.hero-footer-date .label,
.hero-footer-date .date {
    display: block;
    font-family: 'Cormorant Garamond', serif;
}
.hero-footer-date .label {
    font-size: 1.2rem;
}
.hero-footer-date .date {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* --- 3. Story Section (Cập nhật - 2 ảnh tách biệt) --- */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: #fdfdfd;
}

/* Container (Cột trái) - Dùng Flexbox */
.story-images {
    display: flex;
    flex-direction: column; /* Xếp 2 ảnh theo chiều dọc */

    height: 280px; /* Cần chiều cao cố định để 'space-between' hoạt động */
   
}

.story-images img {
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    object-fit: cover;
    height: auto; /* Chiều cao tự động */
    max-width: 100%; /* Đảm bảo không bị tràn */
}

/* Ảnh 1 (Lớn, canh TRÁI) */
.story-img-1 {
    width: 60%; /* Lớn hơn */
    align-self: flex-start; /* Căn lề trái */
    /* Reset position */
    position: static; 
}

/* Ảnh 2 (Nhỏ, canh PHẢI) */
.story-img-2 {
    width: 40%; /* Nhỏ hơn */
    align-self: flex-end; /* Căn lề phải */
    /* Reset position */
    position: static;
}

/* Văn bản câu chuyện (Cột phải) */
.story-content {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

/* --- 4. Invitation Section --- */
.invitation-section h2 {
    text-align: center;
    font-size: 2rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 40px;
}
.invitation-divider {
    width: 100px;
    height: 1px;
    background: #ccc;
    margin: 0 auto 40px auto;
}
.invitation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.invitation-parents h3 {
    font-weight: 600;
    margin-bottom: 5px;
}
.invitation-parents p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}
.invitation-photo-1 img,
.invitation-photo-2 img {
    width: 100%;
    height: auto;
}
.invitation-details {
    text-align: center;
    padding-top: 60px;
}
.invitation-details h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.invitation-details p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* --- 5. Timeline Section --- */
.timeline-section {
    max-width: 600px;
    position: relative;
    padding-top: 50px;
}
.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 89px;
    height: 100%;
    width: 2px;
    background-color: #ddd;
    z-index: 1;
}
.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}
.timeline-icon {
    width: 60px;
    text-align: right;
    margin-right: 50px;
}
.timeline-dot {
    width: 14px;
    height: 14px;
    background: #aaa;
    border-radius: 50%;
    position: absolute;
    left: 82px;
}
.timeline-content {
    margin-left: 20px;
}
.timeline-content span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
}
.timeline-content .time {
    font-size: 1.3rem;
    font-weight: 600;
}
.timeline-content .activity {
    font-size: 1.1rem;
}
.timeline-footer {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    margin-top: 40px;
}
.icon-champagne { background-image: url('https://img.icons8.com/ios/50/000000/champagne-flutes.png'); }
.icon-ring { background-image: url('https://img.icons8.com/ios/50/000000/wedding-rings.png'); }
.icon-food { background-image: url('https://img.icons8.com/ios/50/000000/tableware.png'); }
.timeline-icon span {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* --- 6. Gallery Section --- */
.gallery-section .wp-block-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.gallery-section .wp-block-gallery .blocks-gallery-item {
    list-style: none;
    flex-grow: 1;
}
.gallery-section .wp-block-gallery .blocks-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- 7. RSVP Section --- */
.rsvp-section {
    background: #f9f9f9;
    text-align: center;
}
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}
.countdown-box {
    background: #666;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    min-width: 60px;
}
.countdown-box span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}
.rsvp-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    text-align: left;
}
.rsvp-form-wrapper h2 { text-align: center; margin-top: 0; margin-bottom: 25px; }
.rsvp-form-wrapper p { margin-bottom: 15px; }
.rsvp-form-wrapper label { display: block; font-weight: 600; margin-bottom: 5px; }
.rsvp-form-wrapper input[type="text"],
.rsvp-form-wrapper input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.rsvp-form-wrapper .wpcf7-list-item { display: block; margin: 5px 0; }
.rsvp-form-wrapper input[type="submit"] {
    background: #333;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    margin-top: 15px;
    transition: background 0.3s ease;
}
.rsvp-form-wrapper input[type="submit"]:hover { background: #555; }


/* --- 2. Hero Section (Đã cập nhật đủ 3 chi tiết) --- */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 120px 5%;
    min-height: 80vh;
}
.hero-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 300;
    line-height: 1.3;
    padding-right: 35px;
    margin-right: 35px;
    border-right: 1px solid #333;
    color: #222;
}
.hero-main {
    text-align: center;
}

/* Khung chứa ảnh (QUAN TRỌNG) */
.hero-image {
    position: relative; /* Bắt buộc */
    width: 200px;
    height: 200px;
    margin: 0 auto 60px auto; /* Thêm margin-bottom */
}
.hero-image img {
    position: relative;
    z-index: 2; /* Nằm trên */
    background: #fff; /* Che đường kẻ đi qua */
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* 1. Vòng cung (::before) */
.hero-image::before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: -5%;
    left: -15%;
    border-radius: 50%;
    border: 2px solid #222;
    border-color: #222 transparent transparent #222; /* Kỹ thuật vẽ cung */
    transform: rotate(-25deg);
}

/* 2. Đường kẻ dọc (::after) */
.hero-image::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 1px;
    height: 40px;
    background: #222;
    bottom: -50px; /* Vị trí dưới ảnh */
    left: 50%;
    transform: translateX(-50%);
}

/* 3. Đường kẻ ngang (element mới) */
.hero-decor-cross {
    content: '';
    position: absolute;
    z-index: 1;
    width: 40px; /* Độ dài đường kẻ ngang */
    height: 1px;
    background: #222;
    bottom: 50%; /* Nằm giữa ảnh */
    left: -30px; /* Nằm bên trái ảnh */
    transform: translateY(50%);
}

/* Tên & Ngày (Giữ nguyên) */
.hero-names {
    font-size: 3.5rem;
    font-weight: 500;
    color: #222;
    line-height: 1.2;
    margin: 10px 0;
}
.hero-footer-date {
    margin-top: 25px;
}
.hero-footer-date .label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #555;
}
.hero-footer-date .date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #111;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

/* ========================================= */
/* CSS TỐI ƯU CHO MOBILE (Bản sửa Căn Lề Phải) */
/* ========================================= */
    
@media (max-width: 768px) {

    /* --- Sửa Section Chung --- */
    section {
        padding: 40px 15px; 
    }

    /* --- Sửa Header & Menu --- */
    .header {
        flex-direction: column; 
        padding: 10px;
    }
    .header-logo {
        margin-bottom: 10px;
    }
    .main-nav ul {
        flex-direction: column; 
        align-items: center;
    }
    .main-nav ul li {
        margin: 5px 0;
    }

    /* --- Sửa HERO SECTION --- */
    .hero-section {
        align-items: flex-start; 
        padding-top: 40px;
        padding-bottom: 40px;
        gap: 15px; 
    }
    
    /* Cột Ngày (Bên trái) */
    .hero-date {
        font-size: 2.5rem; 
        border-right: 1px solid #333; 
        border-bottom: none; 
        padding-right: 15px; 
        margin: 0; 
        width: auto;
        flex-shrink: 0; 
    }

    /* Cột chính (Bên phải) */
    .hero-main {
        width: 100%; 
        flex-grow: 1; 
        /* === THAY ĐỔI 1 === */
        text-align: right; /* Căn phải cho văn bản */
        display: flex;
        flex-direction: column;
        /* === THAY ĐỔI 2 === */
        align-items: flex-end; /* Căn phải cho các khối */
        margin-right: 25px; 
        margin-top: 80px;
    }

    /* Khung chứa ảnh */
    .hero-image {
        width: 170px;  
        height: 170px;
        /* === THAY ĐỔI 3 === */
        margin: 0 0 40px 0; /* Bỏ margin-left: 30px */
    }
    
    /* Vòng cung (Mobile) */
    .hero-image::before {
        content: ''; 
        position: absolute; 
        z-index: 1;
        width: 100%;
        height: 100%;
        top: -5%;
        left: -15%;
        border-radius: 50%;
        border: 1px solid #222; 
        border-color: #222 transparent transparent #222;
        transform: rotate(-25deg);
    }

    /* Đường kẻ dọc (Mobile) */
    .hero-image::after {
        content: ''; 
        position: absolute; 
        z-index: 1;
        width: 1px;
        height: 30px; 
        background: #222;
        bottom: -40px; 
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Đường kẻ ngang (Mobile) */
    .hero-decor-cross {
        content: ''; 
        position: absolute; 
        z-index: 1;
        width: 30px; 
        height: 1px;
        background: #222;
        bottom: 50%;
        left: -25px; 
        transform: translateY(50%);
    }
    
    /* Tên cặp đôi */
    .hero-names {
        font-size: 1.9rem; 
        /* === THAY ĐỔI 4 === */
        text-align: right; /* Căn phải văn bản */
        width: 100%; 
        margin-top: 10px; 
        line-height: 1.4; 
    }

    /* Ngày tháng */
    .hero-footer-date {
        /* === THAY ĐỔI 5 === */
        text-align: right; /* Căn phải văn bản */
        width: 100%; 
    }
    .hero-footer-date .label {
        font-size: 1rem; 
    }
    .hero-footer-date .date {
        font-size: 1.2rem; 
    }

/* --- Sửa Story Section (Mobile - Xếp chồng) --- */
.story-section {
        display: grid; /* Sử dụng grid */
        grid-template-columns: 4fr 6fr; /* Chia cột 4/6 */
        gap: 20px; /* Giảm khoảng cách */
        align-items: center; /* Căn giữa theo chiều dọc */
    }

    .story-images {
        height: auto; /* Bỏ chiều cao cố định, để flex tự tính */
        order: 1; 
        gap: 10px; /* Giảm gap ảnh */
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Căn lên trên */
    }
    
    /* Reset ảnh */
    .story-img-1,
    .story-img-2 {
        position: static; 
        height: auto; 
        margin-bottom: 0;
        max-width: 100%; 
    }
    
    /* Căn lề 2 ảnh (giống desktop) */
    .story-img-1 {
        width: 100%; /* 100% của cột 4fr */
        align-self: flex-start; /* Ảnh 1 căn trái */
    }
    .story-img-2 {
        width: 80%; /* 80% của cột 4fr */
        align-self: flex-end; /* Ảnh 2 căn phải */
    }

    .story-content {
        order: 2; 
        font-size: 0.9rem; /* Thu nhỏ font chữ cho vừa cột 6fr */
        text-align: left; 
        line-height: 1.6; 
    }
    
    .invitation-content {
        grid-template-columns: 1fr;
    }
    .invitation-details {
        padding-top: 20px;
        order: -1;
    }
    .timeline-section::before { left: 39px; }
    .timeline-icon { width: 30px; margin-right: 30px; }
    .timeline-dot { left: 32px; }
    .countdown-timer { flex-wrap: wrap; }
    .countdown-box { padding: 10px; min-width: 70px; margin: 5px; }
    .countdown-box span { font-size: 1.5rem; }
    .rsvp-form-wrapper { padding: 20px; }
}
    
/* Sửa lỗi cho màn hình rất nhỏ */
@media (max-width: 360px) {
    .hero-date {
        font-size: 1.6rem; 
    }
    .hero-image {
        width: 120px;
        height: 120px;
        margin-left: 0; /* Đảm bảo không có margin-left */
    }
    .hero-names {
        font-size: 1.7rem; 
    }
    .hero-footer-date .label {
        font-size: 0.9rem;
    }
    .hero-footer-date .date {
        font-size: 1.1rem;
    }
}



/* ========================================= */
/* 11. LOVE STORY SECTION (Timeline lãng mạn - Có Trang Trí Ảnh) */
/* ========================================= */

/* Font chữ kiểu viết tay cho tiêu đề */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

.love-story-section {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    overflow: hidden; /* Tránh bị tràn */
}

.love-story-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: #a7b9c9; /* Màu xanh xám nhạt */
    text-align: center;
    margin-bottom: 50px;
}

.love-story-timeline {
    position: relative;
    padding-top: 50px; /* Thêm padding để có khoảng trống cho đường cong đầu tiên */
}

/* Đường kẻ chấm (Timeline chính) */
.love-story-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    border-left: 2px dotted #c9d7e3; /* Màu xanh nhạt */
    z-index: 1;
}

.story-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2; /* Đảm bảo item nằm trên đường timeline */
}

/* Cột hình ảnh (RẤT QUAN TRỌNG) */
.story-item-image {
    text-align: center;
    position: relative; /* Bắt buộc cho các pseudo-elements */
    width: 300px; /* Cố định kích thước khung ảnh */
    height: 300px;
    margin: 0 auto;
}
.story-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 5; /* Đảm bảo ảnh nằm trên tất cả các đường nét */
}

/* --- TRANG TRÍ ẢNH (MỚI) --- */

/* 1. Vòng tròn nét đứt quanh ảnh (::before) */
.story-item-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px dashed #c9d7e3; /* Nét đứt màu xanh nhạt */
    border-radius: 50%;
    z-index: 4;
}

/* 2. Đường cong nét đứt nối vào timeline (::after) */
.story-item-image::after {
    content: '';
    position: absolute;
    width: 150px; /* Chiều dài đường cong */
    height: 150px; /* Chiều cao đường cong */
    border: 1px dashed #c9d7e3;
    border-color: transparent transparent transparent #c9d7e3; /* Vẽ cung tròn dưới trái */
    border-radius: 50%;
    z-index: 3;
    
    /* Vị trí ban đầu: Đặt ở góc dưới phải của ảnh */
    bottom: -75px; 
    right: -75px; /* Điều chỉnh để nối vào timeline */
    transform: rotate(45deg); /* Xoay cho đúng hướng */
}

/* Vị trí đường cong cho layout "Ảnh trái, Chữ phải" */
.story-item.layout-anh-trai .story-item-image::after {
    bottom: -75px; 
    right: -75px; /* Nối từ ảnh bên trái sang timeline ở giữa */
    transform: rotate(45deg); /* Góc dưới-phải của ảnh, cung quay xuống phải */
}

/* Vị trí đường cong cho layout "Chữ trái, Ảnh phải" */
.story-item.layout-chu-trai .story-item-image::after {
    bottom: -75px;
    left: -75px; /* Nối từ ảnh bên phải sang timeline ở giữa */
    border-color: transparent #c9d7e3 transparent transparent; /* Vẽ cung tròn dưới phải */
    transform: rotate(-45deg); /* Góc dưới-trái của ảnh, cung quay xuống trái */
}


/*3. Icon Trái Tim (Trang trí) */
.story-item-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.heart-icon {
    /* Vẽ trái tim bằng CSS */
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #f06aab; /* Màu hồng */
    transform: rotate(-45deg);
}
.heart-icon::before,
.heart-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #f06aab;
    border-radius: 50%;
}
.heart-icon::before { top: -5px; left: 0; }
.heart-icon::after { top: 0; left: 5px; }


/* Cột nội dung (Chữ) */
.story-item-content {
    padding: 20px;
    background: #fbfbfb; /* Thêm nền nhẹ cho dễ đọc */
    border-radius: 5px;
}
.story-item-date {
    font-size: 0.9rem;
    color: #999;
}
.story-item-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #a7b9c9; /* Đồng bộ màu */
    margin: 10px 0;
}
.story-item-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* --- Phép thuật đảo layout (giữ nguyên) --- */
.story-item.layout-anh-trai .story-item-content {
    text-align: left;
}
.story-item.layout-chu-trai .story-item-image {
    grid-column: 2;
    grid-row: 1;
}
.story-item.layout-chu-trai .story-item-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}


/* ========================================= */
/* 12. LOVE STORY SECTION (Mobile - Cập nhật) */
/* ========================================= */
@media (max-width: 768px) {
    .love-story-title {
        font-size: 2.5rem;
    }
    
    /* Ẩn đường kẻ dọc chính trên mobile */
    .love-story-timeline::before {
        display: none;
    }

    .story-item {
        grid-template-columns: 1fr; /* 1 cột duy nhất */
        gap: 20px;
        margin-bottom: 40px;
    }
    
    /* Reset layout cho mobile */
    .story-item.layout-chu-trai .story-item-image,
    .story-item.layout-anh-trai .story-item-image {
        grid-column: 1;
        grid-row: 1;
    }
    .story-item.layout-chu-trai .story-item-content,
    .story-item.layout-anh-trai .story-item-content {
        grid-column: 1;
        grid-row: 2;
        text-align: center; /* Căn giữa hết cho mobile */
    }
    
    .story-item-image {
        width: 250px; /* Thu nhỏ ảnh mobile */
        height: 250px;
        margin: 0 auto;
    }
    .story-item-image img {
        border-width: 3px; /* Viền ảnh nhỏ hơn */
    }

    /* ẨN TẤT CẢ TRANG TRÍ ẢNH TRÊN MOBILE CHO GỌN GÀNG */
    .story-item-image::before,
    .story-item-image::after,
    .story-item-icon {
        display: none;
    }
    /* Hoặc, nếu muốn giữ vòng tròn nét đứt: */
    /* .story-item-image::before {
        display: block;
        top: -5px; left: -5px; right: -5px; bottom: -5px;
        border-width: 1px;
    } */

    .story-item-content {
        padding: 15px; /* Giảm padding */
        text-align: center;
    }
    .story-item-title {
        font-size: 1.8rem;
    }
    .story-item-text {
        font-size: 0.9rem;
    }
}