.css_Div_my_post_view_test {
    display: inline;
    color:  rgb(7, 130, 253);
}

.css_Div_my_post_view_test .post-views {
    display: inline;
    font-size: 18px;
}

/* 🌈 Câu chuyện về những gam màu chủ đạo */
    :root {
        --sac-bien-sang: #0d6efd; /* ánh xanh tràn đầy năng lượng */
        --sac-bien-dem: #0b5ed7; /* xanh đậm như biển chiều */
        --nen-phang-lanh: #f8fafc; /* màn sương trắng nhẹ */
        --chu-trang-thuan-khiet: #ffffff;
        --diem-sang-vang: #ffff00;
        --xam-thi-tham: #dddddd;
    }

    /* 📘 Mở trang sách */
    body {
        background: var(--nen-phang-lanh);
        font-family: Arial, sans-serif;
        margin: 0;
        padding-bottom: 50px;
    }

    .container {
        max-width: 920px;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* 🔖 Mỗi chương mở ra bằng một tiêu đề */
    .section-header {
        background: linear-gradient(135deg, var(--sac-bien-sang), var(--sac-bien-dem));
        color: var(--chu-trang-thuan-khiet);
        padding: 16px 20px;
        margin: 30px auto 0;
        border-radius: 12px;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(13,110,253,0.3);
        user-select: none;
        transition: 0.25s ease;
    }
    .section-header:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(13,110,253,0.4);
    }
    .section-header h3 {
        margin: 0;
        font-size: 1.4rem;
        font-weight: bold;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .section-header .icon {
        font-size: 1.4rem;
        transition: transform 0.3s ease;
    }
    .section-header.collapsed .icon {
        transform: rotate(-90deg);
    }

    /* 🔲 Những trang ô chữ xếp ngay ngắn */
    .grid-container {
        display: grid;
        gap: 12px;
        margin: 15px 0 30px;
    }
    .alphabet-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .chart-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    /* 🔊 Ô âm thanh – nơi kí tự sống dậy */
    .sound-box {
        background: linear-gradient(135deg, var(--sac-bien-sang), var(--sac-bien-dem));
        color: var(--chu-trang-thuan-khiet);
        font-weight: bold;
        text-align: center;
        border-radius: 10px;
        cursor: pointer;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.2s ease;
        font-size: 24px;
    }
    .sound-box:hover {
        background: var(--sac-bien-dem);
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    /* 🔤 Những âm vị cất tiếng */
    .phonic-item {
        width: 100%;
        line-height: 1.3;
    }
    .phonic-main {
        font-size: 20px;
        font-weight: bold;
    }
    .phonic-example {
        font-size: 20px;
        color: var(--xam-thi-tham);
    }
    .vowel-highlight {
        color: var(--diem-sang-vang);
        font-weight: bold;
    }

    /* 🖼️ Hình minh họa nhỏ bé đi kèm */
    .chart-img {
        width: 70px;
        height: 70px;
        object-fit: contain;
        /* background: rgba(255,255,255,0.2); */
        border-radius: 6px;
        margin-top: 5px;
        padding: 4px;
    }

    /* 📱 Ứng xử linh hoạt khi màn hình nhỏ */
    @media (max-width: 768px) {
        .alphabet-grid { grid-template-columns: repeat(5, 1fr); }
        .chart-grid { grid-template-columns: repeat(4, 1fr); }
        .sound-box { font-size: 20px; padding: 8px; }
        .phonic-main { font-size: 18px; }
        .phonic-example { font-size: 13px; }
        .chart-img { width: 60px; height: 60px; }
    }
    @media (max-width: 480px) {
        .alphabet-grid { grid-template-columns: repeat(4, 1fr); }
        .chart-grid { grid-template-columns: repeat(3, 1fr); }
        .sound-box { font-size: 16px; padding: 6px; }
        .phonic-main { font-size: 16px; }
        .phonic-example { font-size: 12px; }
        .chart-img { width: 50px; height: 50px; }
    }