/* =========================
   BREADCRUMB
========================= */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 15px;
  padding: 8px 14px;
  background: #f7f9fc;
  border-left: 4px solid #0b5ed7;
  border-radius: 4px;
  color: #444;
}


.breadcrumb a {
  color: #0b5ed7;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
  color: #084298;
}



.post-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}


/* =========================
   RELATED ARTICLES BOX
========================= */

.related-box {
    margin-top: 50px;
    padding: 25px 22px;
    background: #f4f8ff;
    border-left: 5px solid #0b3c5d;
    border-radius: 8px;
}

.related-box h2 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #0b3c5d;
}

.related-box p {
    background: #ffffff;
    padding: 12px 15px;
    margin-bottom: 12px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.7;
    transition: all 0.2s ease;
}

.related-box p:last-child {
    margin-bottom: 0;
}

.related-box a {
    color: #0b3c5d;
    font-weight: 600;
    text-decoration: none;
}

.related-box a:hover {
    text-decoration: underline;
}

/* Hover effect */
.related-box p:hover {
    background: #eef4ff;
    transform: translateX(4px);
}

/* =========================
   RELATED BOX ICON STYLE
========================= */

.related-box p {
    position: relative;
    padding-left: 38px; /* icon space */
}

/* Symbol before each line */
.related-box p::before {
    content: "➤";
    position: absolute;
    left: 14px;
    top: 12px;
    color: #0b3c5d;
    font-size: 16px;
    font-weight: bold;
}

