.bbb-la-box {
  margin: 32px 0;
  padding: 28px;
  border: 1px solid #eee3dc;
  border-radius: 20px;
  background: #fcf8f5;
}
.bbb-la-title {
  margin: 0 0 16px;
  font-size: 1.5rem;
  line-height: 1.2;
}
.bbb-la-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.bbb-la-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eadfd7;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
}
.bbb-la-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}
.bbb-la-card-title {
  color: #231f20;
  font-weight: 600;
}
.bbb-la-card-arrow {
  color: #9b6b4f;
  font-weight: 700;
}
