/* ================================================================
   writing-task2/museum-admission — local.css
   ================================================================ */

/* Revenue breakdown table */
.ma-revenue-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: .9rem;
}
.ma-revenue-table thead tr {
  background: var(--blue);
  color: #fff;
}
.ma-revenue-table th {
  padding: .6rem 1rem;
  font-weight: 700;
  text-align: left;
  font-family: 'Raleway', sans-serif;
  font-size: .82rem;
  letter-spacing: .04em;
}
.ma-revenue-table td {
  padding: .55rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
  line-height: 1.5;
}
.ma-revenue-table tbody tr:last-child td { border-bottom: none; }
.ma-revenue-table td:first-child {
  font-weight: 600;
  color: var(--black);
}
.ma-revenue-table__highlight td {
  background: rgba(70,162,218,.1);
  color: var(--blue2);
  font-weight: 600;
}
.ma-revenue-table__highlight td:first-child {
  color: var(--blue2);
}

/* Reason subheading (sec3) — numbered circle badge + title */
.ma-h3 {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin: 1.6rem 0 .5rem;
  line-height: 1.4;
}
.ma-h3__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  background: var(--lb);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  border-radius: 50%;
  font-family: 'Raleway', sans-serif;
}

/* Stance subhead variants (for IELTS ideas section) */
.a-subhead--free {
  color: #1a6b5a;
  background: rgba(26,107,90,.09);
}
.a-subhead--paid {
  color: #8b4a00;
  background: rgba(245,161,0,.1);
}
.a-subhead--nuanced {
  color: #4a3580;
  background: rgba(74,53,128,.08);
}

@media (max-width: 640px) {
  .ma-revenue-table { font-size: .82rem; }
  .ma-revenue-table th,
  .ma-revenue-table td { padding: .45rem .75rem; }
}
