/* ==== BLOG LIST LEFT SIDE ==== */

.blog-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    transition: transform .2s ease, box-shadow .2s ease;
    min-height: 180px;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* IMAGE FIXED SIZE */
.blog-thumb img {
    width: 180px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
}

/* TEXT AREA */
.blog-info {
    flex: 1;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0a3d62;
}

.blog-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

/* SHORT DESCRIPTION (LIMIT 3 LINES) */
.blog-desc {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;

    display: -webkit-box;
    -webkit-line-clamp: 3;   
    line-clamp: 3;    /* Show max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* READ MORE */
.read-more {
    font-size: 14px;
    font-weight: bold;
    color: #0a84ff;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}


/* ==== RIGHT SIDE NEWS ==== */
/* ================= SIDEBAR RIGHT ================= */
.sidebar-box {
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ================= WHY CHOOSE ================= */
.sidebar-box h4 {
    color: #dc3545;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
}

.why-list li:last-child {
    border-bottom: none;
}

.why-list li::before {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url("/img/check.png");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* ================= SUPPORT 24/7 ================= */
.support-box {
    border: 2px solid #dc3545;
    border-radius: 12px;
    background: #fff;
}

.support-title {
    color: #dc3545;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.support-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 12px;
}

.support-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-phone {
    font-size: 20px;
    font-weight: 700;
    color: #0a6847;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .sidebar-box {
        margin-top: 20px;
    }
}


/* ==== RESPONSIVE ==== */

@media (max-width: 768px) {
    .blog-card {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .blog-thumb img {
        width: 100%;
        height: 180px;
        margin-bottom: 12px;
    }

    .blog-info {
        padding-left: 0 !important;
    }
}
