/*
Theme Name: Neve Child
Template: neve
Version: 1.0
*/

.entry-title,
.nv-page-title h1 {
  display: inline-block;
  background: #e86c00;
  padding: 4px 14px;
  border-radius: 12px;
  color: #0b1f8a;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  
  box-shadow: -4px 4px 0px #0b1f8a;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Hover */
.entry-title:hover,
.nv-page-title h1:hover {
  transform: translate(1px, -1px);
  box-shadow: -2px 2px 0px #0b1f8a;
}

/* Centrado */
.nv-page-title {
  text-align: center;
}

/* 📱 MÓVIL */
@media (max-width: 768px) {
  .entry-title,
  .nv-page-title h1 {
    padding: 6px 10px;
    font-size: 20px;
    line-height: 1.3;
    border-radius: 8px;
    box-shadow: -2px 2px 0px #0b1f8a;

    max-width: 90%; /* 👈 lo movemos aquí */
  }
}