/* SECTION */
.portfolio-section {
  padding: 20px 20px;
  background: #f8fafc;
}

/* HEADER */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: #0ea5e9;
}

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* CARD */
.portfolio-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* MEDIA */
.portfolio-image {
  position: relative;
  overflow: hidden;
}

/* VIDEO */
.portfolio-image video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* IMAGE */
.portfolio-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* OVERLAY */
.portfolio-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

/* CONTENT */
.portfolio-content {
  padding: 20px;
}

.portfolio-client {
  font-size: 12px;
  color: #0ea5e9;
}

.portfolio-content h3 {
  margin: 10px 0;
}

/* FEATURES */
.portfolio-features {
  margin-top: 15px;
}

.portfolio-features span {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  margin-right: 5px;
  margin-bottom: 5px;
}

/* HOVER EFFECT VIDEO */
.portfolio-card video {
  transition: 0.3s;
}

.portfolio-card:hover video {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .portfolio-image video,
  .portfolio-image img {
    height: 180px;
  }
}