/* ============================================================================
   Island trip rating card — "Been to {island}? How many shakas was your trip?"
   Scoped to .hg-itr-* classes. Shares the amber shaka vocabulary with the
   attraction rating pill (rating-pill-v1.css). px font sizes per CLAUDE.md.
   The island brand color arrives as an inline border-top on .hg-itr-card.
   ============================================================================ */

.hg-itr-card {
  box-sizing: border-box;
  max-width: 640px;
  margin: 0 auto;
  padding: 26px 22px 22px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 14px;
  text-align: center;
}
.hg-itr-title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}
.hg-itr-title-sub {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 500;
  color: #555;
}
.hg-itr-vote-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0 0 12px;
}
.hg-itr-vote {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
  transition: transform .1s ease;
}
.hg-itr-vote .fa-shaka {
  font-size: 34px;
  color: #d9cfae;
  transition: color .12s ease;
}
.hg-itr-vote.is-hover .fa-shaka,
.hg-itr-vote.is-active .fa-shaka { color: #f59e0b; }
.hg-itr-vote:hover { transform: scale(1.12); }
.hg-itr-vote:focus { outline: 2px solid #f59e0b; outline-offset: 2px; border-radius: 6px; }
.hg-itr-line {
  margin: 0;
  min-height: 20px;
  font-size: 14px;
  color: #666;
}
.hg-itr-line .fa-shaka { color: #f59e0b; font-size: 14px; }
.hg-itr-line strong { color: #222; font-size: 16px; }
.hg-itr-thanks {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  color: #2a7d5f;
}
.hg-itr-thanks .fa-shaka { color: #f59e0b; font-size: 19px; }

@media (max-width: 480px) {
  .hg-itr-card { padding: 20px 14px 18px; }
  .hg-itr-title { font-size: 19px; }
  .hg-itr-vote .fa-shaka { font-size: 30px; }
}
