.pwnf-footer-wrap {
  width: 100%;
  background: #fff;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  border-top: 1px solid #eee;
  isolation: isolate;
  position: relative;
  z-index: 2;
}

.pwnf-footer-wrap .pwnf-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pwnf-footer-wrap .pwnf-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pwnf-footer-wrap .pwnf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.pwnf-footer-wrap .pwnf-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.pwnf-footer-wrap .pwnf-content {
  padding: 16px 18px;
  text-align: center;
}

.pwnf-footer-wrap .pwnf-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
  display: block;
  margin-bottom: 6px;
}

.pwnf-footer-wrap .pwnf-title:hover {
  color: #0066cc;
}

.pwnf-footer-wrap .pwnf-date {
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .pwnf-footer-wrap { padding: 40px 0; }
  .pwnf-footer-wrap .pwnf-image img { height: 200px; }
}

@media (max-width: 768px) {
  .pwnf-footer-wrap { padding: 30px 0; }
  .pwnf-footer-wrap .pwnf-container { gap: 20px; padding: 0 15px; }
  .pwnf-footer-wrap .pwnf-image img { height: 180px; }
  .pwnf-footer-wrap .pwnf-title { font-size: 14px; }
  .pwnf-footer-wrap .pwnf-content { padding: 14px; }
}

@media (max-width: 480px) {
  .pwnf-footer-wrap .pwnf-container { grid-template-columns: 1fr; }
  .pwnf-footer-wrap .pwnf-image img { height: 160px; }
}
