                                                 /* ===============================
   HELPMETER EDITORIAL MODE
=============================== */

body{
  font-family: 'Hind Siliguri', sans-serif;
}

.hm-container{
  max-width:760px;
  margin:40px auto;
  padding:0 16px;
  color:#111;
  line-height:1.9;
  background:#fff;
}

/* Headings */
.hm-container h1{
  font-size:24px;
  font-weight:800;
  margin-bottom:14px;
  line-height:1.4;
}

.hm-container h2{
  font-size:20px;
  font-weight:600;
  margin:40px 0 12px;
}

.hm-container h3{
  font-size:17px;
  font-weight:600;
  margin:24px 0 8px;
}

/* Paragraph spacing */
.hm-container p{
  font-size:16px;
  margin:16px 0;
  color:#111;
  font-weight:500;   /* এটা যোগ করুন */
}

/* Lists */
.hm-container ul,
.hm-container ol{
  margin:16px 0 16px 22px;
}

.hm-container li{
  margin-bottom:8px;
  font-size:15px;
}

/* Links */
.hm-container a{
  color:var(--hm-primary);
  text-decoration:none;
}

.hm-container a:hover{
  text-decoration:underline;
}

/* ===============================
   FAQ
=============================== */

.hm-faq details{
  background:#ffffff;
  border:1px solid #e5e7eb;          /* হালকা border */
  border-radius:12px;
  padding:14px 16px;
  margin-bottom:12px;
  box-shadow:0 2px 8px rgba(0,0,0,.04);
  transition:all .2s ease;
}

.hm-faq details:hover{
  box-shadow:0 4px 14px rgba(0,0,0,.06);
}

.hm-faq summary{
  font-weight:600;
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  font-size:15px;
  color:#111827;
}

.hm-faq summary::-webkit-details-marker{
  display:none;                      /* default arrow hide */
}

.hm-faq summary::before{
  content:"➤";
  margin-right:10px;
  font-size:14px;
  transition:transform .25s ease;
  color:#2563eb;                     /* primary color feel */
}

.hm-faq details[open] summary::before{
  transform:rotate(90deg);
}

.hm-faq details p{
  margin-top:10px;
  font-size:14px;
  color:#111;
  line-height:1.7;
}

/*===============================
   Related
===============================*/

.hm-related{
  margin:40px 0;
}

.hm-related h3{
  font-size:inherit;
  margin-bottom:14px;
}

.hm-related-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

.hm-related-card{
  display:flex;
  align-items:center;
  gap:12px;
  background:#fff;
  border:1px solid #dadce0;
  border-radius:14px;
  padding:16px;
  font-size:15px;
  color:#111;
  font-weight:600;   /* এটা যোগ করো */
  text-decoration:none;
  box-shadow:0 1px 2px rgba(0,0,0,.05);
  transition:.15s;
}

.hm-related-card:hover{
  background:#f8f9fa;
}

.hm-related-card:active{
  transform:scale(.98);
}

.hm-related-card img{
  width:28px;
  height:28px;
  object-fit:contain;
}

@media(min-width:600px){
  .hm-related-grid{
    grid-template-columns:1fr 1fr;
  }
}

/* ===============================
   AUTHOR
=============================== */

.hm-author{
  margin-top:20px;
  padding:10px 15px;
  background:#fff;
  border-radius:10px;
  border:1px solid #eee;
  border-left:5px solid #28a745;
  display:flex;
  flex-direction:column;
  gap:3px;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.hm-author p{
  font-size:13px;
  color:#333;
  margin:0;
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:600;
}

.hm-author b{
  color:#28a745;
  font-weight:700;
}

.hm-author small{
  font-size:13px;
  color:#777;
  display:block;
}

.hm-ad{
  margin:30px 0;
  text-align:center;
}

/* Small ads (Article middle + After FAQ) */
.hm-ad-middle,
.hm-ad-after-faq{
  max-width:320px;
  margin:25px auto;
}

/* Wide footer ad */
.hm-ad-footer{
  width:100%;
  margin:10px 0;
} 

/* ===============================
   Quick Action Summary
   Helpmeter Editorial Style
=============================== */

.hm-quick-grid{
display:block;
margin-top:22px;
}

.hm-quick-card{
background:#ffffff;
border:1px solid #e5e7eb;
border-left:4px solid #2563eb;
padding:18px;
border-radius:10px;
margin-bottom:18px;
box-shadow:0 4px 12px rgba(0,0,0,0.06);
transition:all .2s ease;
}

.hm-quick-card:hover{
box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.hm-quick-card h3{
font-size:18px;
margin-bottom:8px;
font-weight:600;
color:#111827;
}

.hm-quick-card p{
margin:6px 0;
line-height:1.7;
font-size:15px;
color:#111;
}

/* Desktop: 2 column layout */
@media(min-width:768px){

.hm-quick-grid{
display:flex;
flex-wrap:wrap;
gap:20px;
}

.hm-quick-card{
flex:1 1 calc(50% - 10px);
margin-bottom:0;
}

}  

/* ===============================
   HELPMETER TIP CARD
=============================== */

.hm-tip-card{
background:#ffffff;
border:1px solid #e5e7eb;
border-left:4px solid #f59e0b;
padding:16px;
border-radius:10px;
margin:18px 0;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.hm-tip-header{
font-weight:700;
font-size:15px;
margin-bottom:6px;
color:#111827;
display:flex;
align-items:center;
gap:6px;
}

.hm-tip-card p{
font-size:15px;
line-height:1.7;
margin:0;
}   

.hm-tip-header svg{
width:18px;
height:18px;
color:#f59e0b;
flex-shrink:0;
}