/* ================================
   PLOUTION CARD GRID SYSTEM
   ================================ */

/* Ensure each row in the View behaves like a flex item */
.view-id-intro .views-row {
  display: flex;
  padding: 0;

  /* Always visible border */
  background: #ffffff;
  border: 2px solid #002452;
  border-radius: 16px;
  padding: 18px;
  width: 100%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: all .25s ease;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

/* ================================
   HOVER EFFECT — SOFT GLOW
   ================================ */
.view-id-intro .views-row:hover {
  transform: translateY(-4px);
  border-color: #f3e8d8;
  box-shadow:
    0 12px 32px rgba(0,0,0,0.12),
    0 0 22px rgba(255, 240, 220, 0.7);
}

/* ================================
   IMAGE HANDLING
   ================================ */
.view-id-intro .views-row img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ================================
   TYPOGRAPHY (optional)
   ================================ */
.view-id-intro .views-row h3,
.view-id-intro .views-row h2,
.view-id-intro .views-row h4 {
  margin: 0;
  font-weight: 600;
  color: #222;
}

.view-id-intro .views-row p {
  margin: 0;
  color: #555;
}

/* ================================
   RESPONSIVE GRID SUPPORT
   ================================ */
@media (max-width: 768px) {
  .view-id-intro .views-row {
    padding: 14px;
  }
}
