/**
 * SmartCMS Highlight - Frontend CSS
 * Version: 1.0.0
 */

/* Base Box */
.smartcms-highlight-box {
    margin: 20px 0;
    padding: 15px 20px;
    box-sizing: border-box;
    clear: both;
}

.smartcms-highlight-box * {
    box-sizing: border-box;
}

/* Alignment */
.smartcms-align-none {
    width: 100%;
    clear: both;
}

.smartcms-align-left {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    clear: left;
}

.smartcms-align-right {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
    clear: right;
}

/* Title (cho Template F) */
.smartcms-highlight-title {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    padding: 8px 15px;
    margin: -15px -20px 15px -20px;
}

/* Content */
.smartcms-highlight-content {
    font-size: 15px;
    line-height: 1.7;
}

.smartcms-highlight-content p:first-child {
    margin-top: 0;
}

.smartcms-highlight-content p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   TEMPLATE STYLES
   ========================================== */

/* Template E (Orange) */
.smartcms-highlight-e_orange {
    border: 2px solid #f5a623;
    border-left-width: 5px;
    background: #fffbf5;
}

/* Template E (Gray) */
.smartcms-highlight-e_gray {
    border: 2px solid #999999;
    border-left-width: 5px;
    background: #f9f9f9;
}

/* Template F - Có tiêu đề TIN LIÊN QUAN */
.smartcms-highlight-f {
    border: 2px solid #0099cc;
    background: #fff;
}

.smartcms-highlight-f .smartcms-highlight-title {
    background: #0099cc;
    color: #fff;
}

/* Template D (Green) */
.smartcms-highlight-d {
    border: 2px solid #28a745;
    border-left-width: 5px;
    background: #f8fff8;
}

/* Template G (Gray Box) */
.smartcms-highlight-g {
    border: 2px solid #6c757d;
    background: #f5f5f5;
}

/* Template E_blue (Curve) */
.smartcms-highlight-e_blue {
    border: 2px solid #17a2b8;
    background: #f0fafc;
    border-radius: 0 0 25px 0;
}

/* Template B (Solid Blue) */
.smartcms-highlight-b {
    background: #17a2b8;
    color: #fff;
    border-radius: 4px;
}

.smartcms-highlight-b .smartcms-highlight-content {
    color: #fff;
}

.smartcms-highlight-b .smartcms-highlight-content a {
    color: #fff;
    text-decoration: underline;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media screen and (max-width: 768px) {
    .smartcms-highlight-box {
        width: 100% !important;
        float: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .smartcms-highlight-box {
        padding: 12px 15px;
    }

    .smartcms-highlight-title {
        margin: -12px -15px 12px -15px;
        padding: 6px 12px;
        font-size: 13px;
    }

    .smartcms-highlight-content {
        font-size: 14px;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    .smartcms-highlight-box {
        border: 1px solid #333 !important;
        background: #f5f5f5 !important;
        page-break-inside: avoid;
    }

    .smartcms-highlight-b {
        background: #333 !important;
    }
}

/* ==========================================
   CLEARFIX
   ========================================== */

.smartcms-highlight-box::after {
    content: "";
    display: table;
    clear: both;
}

/* Đảm bảo nội dung sau highlight không bị đè */
.entry-content::after,
.post-content::after,
.article-content::after {
    content: "";
    display: table;
    clear: both;
}
