/* Resalta el campo del justificante */
.acf-field.receipt-highlight{
  border: 2px solid #CCC;
  background: #f4f4f4;
  padding: 16px;
  border-radius: 10px;
}
.acf-field.receipt-highlight .acf-label label{
  font-weight: 700;
  font-size: 1.05em;
}
/* Botón ACF "Add File" en el campo receipt */
.acf-field[data-name="receipt"] a.acf-button.button[data-name="add"]{
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #00294d;
  border-radius: 8px;
  background: #004888;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}

/* Hover / focus */
.acf-field[data-name="receipt"] a.acf-button.button[data-name="add"]:hover,
.acf-field[data-name="receipt"] a.acf-button.button[data-name="add"]:focus{
  filter: brightness(0.95);
  text-decoration: none !important;
  outline: none;
}

/* Mantener aspecto cuando está deshabilitado (si aplica) */
.acf-field[data-name="receipt"] a.acf-button.button[data-name="add"].disabled{
  opacity: .6;
  pointer-events: none;
}
/* Asterisco Rojo en campos requeridos*/
.form-group.required > label::after {
    content: " *";
    color: #d00;
    font-size: 0.75em;
    vertical-align: super;
    margin-left: 2px;
}

/* ARREGLO LOGOS PATROCINADORES*/

#sponsors .row {
    display: flex;
    flex-wrap: wrap;
}

#sponsors .col-md-3 {
    display: flex;
    align-items: stretch;
    margin-bottom: 30px;
}

#sponsors .col-md-3 a,
#sponsors .col-md-3 > div {
    display: flex
    flex-direction: column;
    width: 100%;
    height: 100%;
}

#sponsors .col-md-3 img {
    max-height: 120px;
    object-fit: contain;
    margin: auto;
}

#sponsors .col-md-3 p {
    margin-top: 15px;
    text-align: center;
}