/* --- KEY FINDINGS MODERN LOOK --- */
.blog-text-content ul:first-of-type {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.blog-text-content ul:first-of-type li {
    background: linear-gradient(to right, #ffffff, #f8faff);
    border: 1px solid #e1e8f0;
    border-left: 5px solid #004b87;
    padding: 18px 20px 18px 45px !important;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    font-size: 15px;
    color: #333;
    list-style: none !important;
}

.blog-text-content ul:first-of-type li::before {
    content: "\f147"; /* Checkmark icon */
    font-family: Dashicons;
    position: absolute;
    left: 15px;
    top: 18px;
    color: #004b87;
    font-size: 22px;
}

/* --- BY REGION GRID STYLE --- */
.blog-text-content ul li strong:contains("North America"),
.blog-text-content ul li strong:contains("Europe"),
.blog-text-content ul li strong:contains("Asia"),
.blog-text-content ul li strong:contains("Latin"),
.blog-text-content ul li strong:contains("Middle") {
    display: block;
    color: #004b87;
    font-size: 18px;
    margin-top: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

/* Region ke andar wale bullet points ko tags banayein */
.blog-text-content ul ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 0 !important;
    list-style: none !important;
}

.blog-text-content ul ul li {
    background: #f1f1f1;
    padding: 5px 15px !important;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
    border: 1px solid #ddd;
    margin: 0 !important;
}

.blog-text-content ul ul li::before { content: none !important; }

/* --- TRENDING INSIGHTS (SIDEBAR/BOTTOM) --- */
.widget-title, .trending-title {
    font-size: 20px;
    font-weight: 800;
    color: #222;
    border-left: 4px solid #d08484;
    padding-left: 12px;
    margin-bottom: 20px;
}

.side-item-modern {
    background: #fff;
    padding: 15px;
    border: 1px solid #eee;
    margin-bottom: 12px;
    border-radius: 6px;
    transition: 0.3s;
}

.side-item-modern:hover {
    border-color: #004b87;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.side-item-modern a {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    font-weight: 700;
    text-decoration: none;
}