/* =============================
   Beast Tribe — Layout & Theme
   ============================= */

.beasttribe-section css.row {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(128, 128, 128, 0.25);
}
.beasttribe-section .row:first-child {
  border-top: 1px solid rgba(128, 128, 128, 0.25);
}
.beasttribe-section .row h3 {
  padding-left: 0.75rem;
  border-left: 3px solid #006B62;
}
.beasttribe-section .row h4 {
  margin: 0.5rem 0 0.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 1;
  color: #009589;
}
.beasttribe-section .row h5 {
  font-size: 0.9rem;
  color: #009589;
  border: 2px solid #009589;
  border-radius: 4px;
  padding: 0.3rem 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.5rem 0 0.75rem;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  user-select: none;
  transition: background 0.15s;
}
.beasttribe-section .row h5:hover {
  background: rgba(0, 149, 137, 0.15);
}
.beasttribe-section .row h5.open {
  color: #4DD4CC;
  border-color: #4DD4CC;
}
.beasttribe-section .toggle-icon {
  font-size: 0.85rem;
  transition: transform 0.2s;
  display: inline-block;
}
.beasttribe-section .row h5.open .toggle-icon {
  transform: rotate(90deg);
}
.beasttribe-section .row table {
  width: 100%;
  border-collapse: collapse;
}
.beasttribe-section .row table th,
.beasttribe-section .row table td {
  padding: 0.35rem 0.6rem;
  border-bottom: 1px solid rgba(0, 149, 137, 0.2);
  text-align: left;
}
.beasttribe-section .row table tr:last-child td { border-bottom: none; }
.beasttribe-section .toggle-scenario {
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00BDB0;
  user-select: none;
}
.beasttribe-section .row .table-bordered {
  border-color: rgba(0, 149, 137, 0.25);
}
.beasttribe-section .row .table-bordered th,
.beasttribe-section .row .table-bordered td {
  border-color: rgba(0, 149, 137, 0.25);
}
.beasttribe-section .row .table-bordered thead th {
  color: #00BDB0;
  font-weight: 600;
  background: rgba(0, 149, 137, 0.08);
  border-bottom: 2px solid rgba(0, 149, 137, 0.4);
}