/* LAN Party Z — tarjetas de fase del torneo (acordeon nativo <details>/<summary>) */

.lpz-phase{
  margin-bottom: 16px;
}
.lpz-phase__summary{
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  cursor: pointer;
}
.lpz-phase__summary::-webkit-details-marker{ display: none; }
.lpz-phase__thumb{
  width: 72px;
  height: 72px;
  flex: none;
  object-fit: cover;
  border-radius: var(--lpz-r-md);
  box-shadow: 0 0 0 2px var(--lpz-line);
}
.lpz-phase__meta{ flex: 1; min-width: 0; }
.lpz-phase__title{
  font-family: var(--lpz-font-display);
  font-size: 18px;
  margin: 0 0 6px;
}
.lpz-phase__chips{ display: flex; gap: 6px; flex-wrap: wrap; }
.lpz-phase__chevron{
  flex: none;
  font-family: var(--lpz-font-display);
  color: var(--lpz-accent);
  transition: transform .15s;
}
.lpz-phase[open] .lpz-phase__chevron{ transform: rotate(180deg); }
.lpz-phase__body{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid color-mix(in srgb, var(--lpz-muted) 25%, transparent);
}

@media (max-width: 767.98px){
  .lpz-phase__summary{
    position: relative;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .lpz-phase__thumb{
    width: 96px;
    height: 96px;
  }
  .lpz-phase__meta{
    width: 100%;
  }
  .lpz-phase__chips{
    justify-content: center;
  }
  .lpz-phase__chevron{
    position: absolute;
    top: 0;
    right: 0;
  }

  .lpz-note{
    flex-direction: column;
    text-align: center;
  }
}
