/* Nusa CMS Frontend Styles - used as base, themes can override */

/* Team Grid */
.nusa-team-grid {
  display: grid;
  gap: 32px;
}
.nusa-cols-2 { grid-template-columns: repeat(2, 1fr); }
.nusa-cols-3 { grid-template-columns: repeat(3, 1fr); }
.nusa-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .nusa-cols-2,
  .nusa-cols-3,
  .nusa-cols-4 { grid-template-columns: 1fr; }
}

.nusa-team-card {
  display: flex;
  flex-direction: column;
}
.nusa-team-photo-wrap { overflow: hidden; aspect-ratio: 3/4; }
.nusa-team-photo { width: 100%; height: 100%; object-fit: cover; }
.nusa-team-info { padding: 16px 0; }
.nusa-team-name { font-size: 18px; font-weight: 600; margin: 0 0 4px; }
.nusa-team-position { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 8px; opacity: 0.7; }
.nusa-team-bio { font-size: 14px; line-height: 1.6; margin: 0; }

/* Services Grid */
.nusa-services-grid {
  display: grid;
  gap: 24px;
}
.nusa-service-card { padding: 24px; border: 1px solid rgba(0,0,0,0.1); }
.nusa-service-icon { font-size: 36px; display: block; margin-bottom: 16px; }
.nusa-service-title { font-size: 18px; font-weight: 600; margin: 0 0 8px; }
.nusa-service-excerpt { font-size: 15px; line-height: 1.6; margin: 0; }
.nusa-service-img-wrap { margin-bottom: 16px; }
.nusa-service-img { width: 100%; height: auto; }

/* Careers */
.nusa-careers-list { display: flex; flex-direction: column; gap: 24px; }
.nusa-career-item { padding: 24px; border: 1px solid rgba(0,0,0,0.1); }
.nusa-career-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.nusa-career-title { font-size: 20px; font-weight: 600; margin: 0 0 4px; }
.nusa-career-dept { font-size: 13px; opacity: 0.7; }
.nusa-career-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.nusa-career-desc, .nusa-career-req { margin-bottom: 12px; font-size: 15px; line-height: 1.6; }
.nusa-career-apply {
  display: inline-block;
  padding: 10px 24px;
  background: #2F241A;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 8px;
}
.nusa-career-apply:hover { opacity: 0.85; color: #fff; }
.nusa-careers-empty { font-size: 15px; opacity: 0.7; }

/* Contact */
.nusa-contact-info { font-size: 15px; line-height: 1.8; }
.nusa-contact-info a { color: inherit; text-decoration: underline; }
.nusa-contact-map { margin-top: 16px; }
.nusa-contact-map iframe { display: block; }
