/* ===== GLOBAL ===== */
body {
  background-color: #f8f9fa;
  font-family: Arial, Helvetica, sans-serif;
}

/* ===== CARD WRAPPER ===== */
.border {
  border: 1px solid #e5e5e5 !important;
}

.shadow-sm {
  box-shadow: 0 8px 25px rgba(0,0,0,0.12) !important;
}

.rounded {
  border-radius: 12px !important;
}

/* ===== TEXT AREA ===== */
strong {
  font-size: 13px;
  letter-spacing: 0.5px;
}

h5 {
  font-size: 20px;
  font-weight: 600;
}

.text-muted {
  font-size: 13px;
}

p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* ===== READ MORE LINK ===== */
a.text-primary {
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}

a.text-primary:hover {
  text-decoration: underline;
}

/* ===== IMAGE ===== */
.card-img-mobile {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

/* ===== ROW FIX ===== */
.row.g-0 {
  margin-right: 0;
  margin-left: 0;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 576px) {

  h5 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
  }

  strong {
    font-size: 12px;
  }

  .card-img-mobile {
    max-height: 180px;
  }

  .shadow-sm {
    box-shadow: 0 5px 18px rgba(0,0,0,0.1) !important;
  }
}

/* ===== TABLET ===== */
@media (min-width: 577px) and (max-width: 991px) {

  h5 {
    font-size: 19px;
  }

  .card-img-mobile {
    max-height: 200px;
  }
}

/* ===== DESKTOP ===== */
@media (min-width: 992px) {

  .card-img-mobile {
    max-height: 220px;
  }
}
