/* matches.css — styles isolated to the matches fragment */

.matches {
    background: var(--paper-2, #f5f7fa);
    border-top: 1px solid #e9eef2;
    padding: 48px 0;
  }
  
  .matches-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
  }
  
  .matches-title {
    margin: 0;
    font-size: 1.6rem;
    letter-spacing: 0.2px;
    color: var(--ink, #0e2431);
  }
  
  .matches-sub {
    margin: 6px 0 0;
    font-size: 0.9rem;
    color: var(--muted, #6b7e8a);
  }
  
  .btn-outline {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid #d2d9df;
    background: #fff;
    color: var(--ink, #0e2431);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .matches-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 22px;
  }
  
  /* Card */
  .match-card {
    background: #fff;
    border: 1px solid #e7edf1;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(0,0,0,.06);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 1fr; /* image : content */
    min-height: 220px;
  }
  
  .match-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
  }
  
  .match-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .match-teams {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink, #0e2431);
    letter-spacing: 0.2px;
    text-transform: uppercase;
  }
  
  .match-blurb {
    margin: 0;
    color: var(--ink-2, #3a5060);
    font-size: 0.96rem;
    line-height: 1.35;
  }
  
  .match-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  
  .match-meta {
    font-size: 0.82rem;
    color: var(--muted, #6b7e8a);
  }
  
  .remind {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--ink, #0e2431);
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 10px;
    transition: background .15s ease;
  }
  .remind:hover { background: #f4f6f8; }


  /* ---------- Partners ---------- */
  #partners {
    padding: 56px 20px;
  }
  
  #partners h3 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 1.8rem;
  }
  
  .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  
  .card {
    background: #fff;
    border: 1px solid #eef2f5;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: transform 0.2s ease;
  }
  
  .card:hover {
    transform: translateY(-4px);
  }
  
  .card img {
    aspect-ratio: 16/10;
    object-fit: cover;
  }
  
  .card-body {
    padding: 14px 16px;
  }
  
  .card-body h4 {
    margin: 0 0 8px;
    font-size: 1.2rem;
  }
  
  .card-body p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #444;
  }
  
  
  /* Responsive */
  @media (max-width: 1024px) {
    .matches-grid { grid-template-columns: repeat(2, minmax(260px, 1fr)); }
  }
  @media (max-width: 700px) {
    .matches-head { align-items: center; }
    .matches-grid { grid-template-columns: 1fr; }
    .match-card { grid-template-columns: 1fr; }
    .match-media img { aspect-ratio: 16 / 9; }
  }
  