/* ===== Related Posts Styles ===== */
.related-posts-box {
  margin-top: 20px;
  font-family: 'Arial', sans-serif;
}

.related-title {
  background-color: #ffc059;
  color: #000000;
  padding: 10px 15px;
  font-size: 24px;
  font-weight: bold;
  border: 0.5px dashed #000000;
  border-radius: 5px 0 5px 0;
  display: block;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.related-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 10px 15px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  text-decoration: none;
  color: #0073aa;
  flex: 1 1 calc(50% - 10px);
  transition: 0.3s;
}

.related-card:hover {
  background-color: #f2faff;
  border-color: #3fa9f5;
  color: #005077;
}

/* ===== Mobile Responsive Styles for Related Posts ===== */
@media screen and (max-width: 768px) {
    
    
 .related-title {
    font-size: 18px !important;
    padding: 10px !important;
  }
    
  .related-links {
    flex-direction: column;
  }

  .related-card {
    flex: 1 1 100% !important;
  }
}
