/* Teams Starter CSS */
.ts-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px;
}

.ts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.ts-header-left h2 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  display: inline-block;
  margin-right: 8px;
}

.ts-breadcrumb {
  font-size: 11px;
  color: #6b7280;
  display: inline-block;
}

.ts-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}

.ts-breadcrumb a:hover {
  text-decoration: underline;
}

.ts-btn-outline {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: 0.2s;
}

.ts-btn-outline:hover {
  background: #f9fafb;
}

.ts-btn-primary {
  background: #3b82f6;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.ts-btn-primary:hover {
  background: #2563eb;
}

/* Card General */
.ts-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

/* Hero Section */
.ts-hero-card {
  text-align: center;
  padding: 48px 24px;
}

.ts-hero-img {
  width: 180px;
  height: auto;
  margin-bottom: 24px;
}

.ts-hero-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.ts-hero-desc {
  font-size: 12px;
  color: #6b7280;
  max-width: 450px;
  margin: 0 auto 24px auto;
  line-height: 1.6;
}

/* FAQ Section */
.ts-faq-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.ts-faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
}

.ts-faq-item:last-child {
  border-bottom: none;
}

.ts-faq-q {
  font-size: 12px;
  font-weight: 500;
  color: #374151;
}

.ts-faq-icon {
  color: #9ca3af;
  font-size: 14px;
  transition: transform 0.2s;
}

.ts-faq-item:hover .ts-faq-q {
  color: #111827;
}

.ts-faq-item:hover .ts-faq-icon {
  color: #111827;
}

/* Illustration Cards - 2 Column */
.ts-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .ts-grid-2 {
    grid-template-columns: 1fr;
  }
}

.ts-illus-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.ts-illus-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.ts-illus-card p {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 55%;
}

.ts-illus-card a {
  font-size: 10px;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: auto;
}

.ts-illus-card a:hover {
  text-decoration: underline;
}

.ts-illus-img {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 140px;
  height: auto;
}
