/* Ex-presidentes */

.mural-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  padding: 20px;
}

.photo-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(46, 125, 50, 0.15);
  transition: transform 0.3s ease;
}

.photo-card:hover {
  transform: translateY(-5px);
}

.photo-image a{
  width: 100%;
  height: 300px;
  background-color: #c8e6c9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #388e3c;
  font-weight: bold;
  overflow: hidden;
}

.photo-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-info {
  padding: 18px;
  text-align: center;
}

.photo-name {
  color: #000000;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.photo-date {
  color: #000000;
  font-size: 0.95rem;
  font-weight: 500;
}