/* mod_magicpark_ticketbuttons */
.mod-mptb{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 640px){
  .mod-mptb{
    grid-template-columns: 1fr;
  }
}

.mod-mptb__btn{
  --mptb-color: #111827;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none !important;

  padding: 18px 14px;
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, 0.10);
  background: #ffffff;

  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;

  min-height: 132px;

  color: var(--mptb-color);
}

.mod-mptb__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.14);
  border-color: rgba(17, 24, 39, 0.18);
}

.mod-mptb__btn:focus-visible{
  outline: 3px solid rgba(59, 130, 246, 0.35);
  outline-offset: 3px;
}

.mod-mptb__icon{
  width: 56px;
  height: auto;
  margin-bottom: 10px;
  display: block;
}

.mod-mptb__label{
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
}

/* Slightly smaller label on very small screens */
@media (max-width: 380px){
  .mod-mptb__label{ font-size: 1rem; }
}
