/* Portfolio Cards */

.work-card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.portfolio-section {
  padding: 60px 30px;
  background: #fff;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.work-card {
  background: #f0f0f0;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.189);
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.work-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.414);
}

.work-card h4 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #333;
}

.work-card p {
  font-size: 16px;
  color: #888;
}
.poster-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
}
