

/* CARD */
.eresource-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* TOP ACCENT BORDER */
.eresource-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-blue), var(--accent-red));
}

/* IMAGE */
.eresource-image img {
  width: 100%;
  border-radius: 12px;
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.eresource-image img:hover {
  transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .eresource-card {
    padding: 15px;
  }
}