/* Local theme variables (no liga.css needed) */
:root {
    --accent: #e08a00;       /* orange */
    --navy-600: #1e2a44;     /* dark navy */
    --navy: #12233a;         /* navy */
    --bg: #f7f8fb;           /* light bg */
    --hair: #e6e8ef;         /* subtle border */
    --radius: 10px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  }
  
  /* Minimal page-specific styles for liga_etap_wojewodzki.html */
  body.etap-woj { background: var(--bg); }
  
  h1.page-title {
    margin: 1.2rem 0 0.4rem;
    font-size: clamp(1.7rem, 2.2vw + 1rem, 2.3rem);
    font-weight: 800;
    color: var(--navy-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  /* Ensure the title row (text + icon) is centered and orange on this page */
  body.etap-woj h1.page-title {
    justify-content: center;
    text-align: center;
    color: var(--accent);
  }
  
  .orange { color: var(--accent); }
  .bi.bi-trophy-fill { color: var(--accent); font-size: 1.05em; }
  
  h2.sub-title {
    margin: 0.5rem 0 0.75rem;
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 700;
    text-align: center;
  }
  
  /* Base list styling */
  .list-bordered { 
    list-style: none !important; 
    list-style-type: none !important;
    padding: 0; 
    margin: 0.75rem 0 1.25rem; 
  }
  .list-bordered li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 0 0.65rem;
    border: 1px solid var(--hair);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
  }
  .list-bordered li::before,
  .list-bordered li::marker {
    content: none !important;
    display: none !important;
  }
  .list-bordered li.disabled {
    opacity: 0.5;
    background: #f5f5f5;
  }
  .list-bordered li.disabled span {
    display: block;
    padding: 0.7rem 0.95rem;
    color: #999;
    cursor: not-allowed;
    text-align: center;
  }
  .list-bordered a {
    display: block;
    padding: 0.7rem 0.95rem;
    color: var(--navy-600);
    text-decoration: none;
    text-align: center;
  }
  .list-bordered a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    color: var(--navy);
  }
  
  /* Highlighted span used in announcements */
  .box_h2 {
    display: inline-block;
    padding: 0.28rem 0.5rem;
    border-radius: 6px;
    background: rgba(224,138,0,0.1);
    color: var(--accent);
    font-weight: 600;
  }
  
  /* Center the list block on the page, keep list text left-aligned */
  body.etap-woj .ann-wrapper {
    display: block;         /* no flex needed */
    width: 50%;
    margin: 2rem auto;      /* centers the wrapper */
  }
  body.etap-woj .ann-wrapper .list-bordered {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  
  /* Mobile tweaks */
  @media (max-width: 780px) {
    body.etap-woj .ann-wrapper {
      width: 92%;
      margin: 1rem auto;
    }
  }
  @media (max-width: 520px) {
    h1.page-title { font-size: 1.6rem; }
    h2.sub-title { font-size: 1.1rem; }
  }