:root {
  --ttc-primary-color: #D54217;
  --ttc-secondary-color: #f9f9f9;
  --ttc-text-color: #333;
  --ttc-gradient-bg: linear-gradient(90deg, rgba(243, 113, 35, 0) 0%, rgba(243, 113, 35, 1) 50%, rgba(243, 113, 35, 0) 100%);
}

/* Main Wrapper */
.ttc-wrapper {
  margin: 20px 0;
  font-family: inherit;
  /* Allow override */
}

/* Tabs Navigation */
.ttc-tabs-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 2px solid #eee;
  margin-bottom: 20px;
  gap: 10px;
}

.ttc-tab-link {
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  /* Overlap border */
}

.ttc-tab-link:hover {
  color: var(--ttc-primary-color);
  background: var(--ttc-secondary-color);
}

.ttc-tab-link.active {
  border-bottom: 2px solid var(--ttc-primary-color);
  /* Accent color, customizable ideally but hardcoded for simple dimple */
  color: var(--ttc-primary-color);
}

/* Tab Panels */
.ttc-tab-panel {
  display: none;
  animation: fadeEffect 0.5s;
}

.ttc-tab-panel.active {
  display: block;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Grid Layout */
.ttc-persons-grid {
  display: grid;
  gap: 30px;
}

@media (max-width: 768px) {
  .ttc-persons-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .ttc-persons-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Person Card */
.ttc-person-card {
  text-align: center;
}

.ttc-person-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  /* Slight rounding */
  object-fit: cover;
  aspect-ratio: 3/4;
  /* Consistent portrait aspect ratio */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0;
}

.ttc-person-name {
  margin: 0;
  padding: 10px 0;
  font-size: 1.2em;
  font-weight: 700;
  background: var(--ttc-gradient-bg);
}

.ttc-person-stat {
  font-size: 3em;
  color: var(--ttc-primary-color);
  margin-bottom: 0.35em;
	margin-top: 0.5em;
  font-weight: bold;
}

.ttc-person-subheading {
  color: white;
  font-size: 1.2em;
}

.ttc-person-info {
	background: radial-gradient(circle,rgba(213, 66, 23, 0.6) 0%, rgba(213, 66, 23, 0) 70%);
}