<style>
  .wildcats-program-details {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
  .wildcats-details-image {
    display: block;
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    margin-bottom: 28px;
    border-radius: 14px;
  }
  .wildcats-details-header {
    margin-bottom: 32px;
  }
  .wildcats-details-title {
    margin: 0 0 16px;
    color: #111827;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
  }
  .wildcats-details-description {
    color: #4b5563;
    font-size: 1.08rem;
    line-height: 1.7;
  }
  .wildcats-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 32px;
  }
  .wildcats-details-card {
    padding: 22px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-left: 5px solid #f58220;
    border-radius: 12px;
  }
  /* Coach Information spans full width */
  .wildcats-card-full {
    grid-column: 1 / -1;
  }
  .wildcats-details-card h2,
  .wildcats-details-section h2 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
  }
  .wildcats-details-card > div,
  .wildcats-rich-content {
    color: #374151;
    font-size: 1rem;
    line-height: 1.65;
  }
  .wildcats-details-section {
    margin-top: 30px;
    padding: 26px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: 5px solid #f58220;
    border-radius: 12px;
  }
  .wildcats-season-schedule {
    overflow-x: auto;
  }
  .wildcats-rich-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
  }
  .wildcats-rich-content th {
    padding: 12px;
    color: #111827;
    background: #f58220;
    border: 1px solid #cbd5e1;
    font-weight: 700;
    text-align: left;
  }
  .wildcats-rich-content td {
    padding: 12px;
    color: #374151;
    border: 1px solid #cbd5e1;
    vertical-align: top;
  }
  .wildcats-rich-content tr:nth-child(even) td {
    background: #f9fafb;
  }
  /* Tournament section — bold contrast against the cream page background */
  .wildcats-tournament-section {
    background: #c2410c;
    border: none;
    border-radius: 12px;
  }
  .wildcats-tournament-section h2 {
    color: #ffffff;
  }
  .wildcats-tournament-date {
    margin: 0 0 14px;
    color: #fed7aa;
    font-size: 1rem;
  }
  .wildcats-tournament-date strong {
    color: #ffffff;
  }
  .wildcats-tournament-section .wildcats-rich-content {
    color: #fed7aa;
  }
  .wildcats-details-actions {
    margin-top: 30px;
  }
  .wildcats-details-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    color: #ffffff;
    background: #f58220;
    border: 2px solid #f58220;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
  }
  .wildcats-details-button:hover,
  .wildcats-details-button:focus {
    color: #ffffff;
    background: #d96d13;
    border-color: #d96d13;
    text-decoration: none;
  }
  .wildcats-program-not-found {
    padding: 40px 24px;
    text-align: center;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
  }
  .wildcats-program-not-found h1 {
    margin: 0 0 12px;
    color: #111827;
  }
  @media (max-width: 700px) {
    .wildcats-details-grid {
      grid-template-columns: 1fr;
    }
    .wildcats-card-full {
      grid-column: 1;
    }
    .wildcats-details-section {
      padding: 20px;
    }
    .wildcats-rich-content {
      min-width: 620px;
    }
    .wildcats-season-schedule {
      overflow-x: auto;
    }
  }
</style>