.listado-castings {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.casting-item-horizontal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center; /* CLAVE: centramos todo verticalmente */
  padding: 1rem; /* margen interior igualado */
  transition: 0.3s ease;
}

.casting-item-horizontal:hover {
  transform: translateY(-5px);
}

.casting-thumb {
  width: 180px;
  height: 180px;
  overflow: hidden;
  border-radius: 10px;
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.casting-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.4s;
}

.casting-thumb img:hover {
  transform: scale(1.05);
}

.casting-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #7722e6, #5425ff);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.5rem;
}

.casting-info {
  flex: 1;
  padding-left: 2rem;
}

.casting-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000000;
}

.casting-info p {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #444;
}

.casting-info a {
  display: inline-block;
  margin-top: 1rem;
  background: #000000;
  color: #fff;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.casting-info a:hover {
  background: #530045;
}

@media(max-width: 768px) {
  .casting-item-horizontal {
    flex-direction: column;
    align-items: stretch;
  }

  .casting-thumb {
    width: 100%;
    height: 220px;
    margin-bottom: 1rem;
  }

  .casting-info {
    padding-left: 0;
  }
}
