.image-wrapper {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.person-card {
  transition: all 0.3s ease;
}

.person-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.line {
  width: 120px;
  height: 2px;
  background-color: #0d6efd;
  position: relative;
}

.line::before,
.line::after {
  content: "";
  position: absolute;
  top: 0;
  width: 40px;
  height: 2px;
  background-color: #0d6efd;
}

.line::before {
  left: -60px;
}

.line::after {
  right: -60px;
}

@media (max-width: 768px) {
  .line::before,
  .line::after {
    display: none;
  }
}

.event-banner {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
}

.event-doc {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
