/* ET Faculty Fellows — layout provided by service-shell.css */

/* ── COMPACT QUICK-NAV ── */
#quick-links { padding: 1.25rem 0; }
#quick-links .quick-links { gap: 0.6rem; }
#quick-links .quick-link-card {
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
#quick-links .quick-link-label {
  font-size: 0.65rem;
  margin-bottom: 0;
  white-space: nowrap;
  flex-shrink: 0;
}
#quick-links .quick-link-card strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#quick-links .quick-links {
  grid-template-columns: repeat(3, 1fr);
}

/* ── FELLOWSHIP DETAIL LAYOUT ── */
.fellows-detail {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.fellows-detail-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  color: #111;
}

.fellows-detail-aside {
  display: flex;
  flex-direction: column;
}

.fellows-aside-card {
  background: #fff;
  border: 1px solid #e6e1d9;
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
}

.fellows-aside-stat {
  font-size: 3.5rem;
  font-weight: 800;
  color: #bf5700;
  line-height: 1;
  margin: 0.5rem 0 0.25rem;
}

.fellows-aside-label {
  font-size: 0.85rem;
  color: #6b6560;
  line-height: 1.5;
}

/* ── SHARED ELEMENTS ── */
.fellows-card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b35000;
  background: rgba(191,87,0,0.08);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.fellows-card-list {
  margin: 0;
  padding-left: 1.1rem;
}

.fellows-card-list li {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

/* ── APPLY BOX ── */
.fellows-apply-box {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 1.75rem;
  border: 1px solid #e6e1d9;
  border-radius: 16px;
  background: #faf9f7;
}

/* ── MEET THE FELLOWS ── */
.fellows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.fellow-card {
  border: 1px solid #e6e1d9;
  border-radius: 16px;
  overflow: hidden;
  background: #faf9f7;
  position: relative;
  opacity: 0.72;
}

.fellow-card-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #e8e3db 0%, #d4cec6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fellow-card-avatar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #c8c2ba;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fellow-card-avatar-icon svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.fellow-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
}

.fellow-card-name {
  height: 0.9rem;
  background: #ddd8d0;
  border-radius: 4px;
  width: 60%;
  margin-bottom: 0.5rem;
}

.fellow-card-dept {
  height: 0.75rem;
  background: #e8e3db;
  border-radius: 4px;
  width: 80%;
  margin-bottom: 0.85rem;
}

.fellow-card-desc {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.fellow-card-desc span {
  display: block;
  height: 0.65rem;
  background: #ece8e3;
  border-radius: 3px;
}

.fellow-card-desc span:last-child { width: 55%; }

/* Coming soon ribbon */
.fellows-coming-soon-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(191,87,0,0.06);
  border: 1px solid rgba(191,87,0,0.18);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  margin-top: 2rem;
}

.fellows-coming-soon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bf5700;
  flex-shrink: 0;
  animation: fellowsPulse 2s ease-in-out infinite;
}

@keyframes fellowsPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.fellows-coming-soon-text {
  font-size: 0.85rem;
  color: #5a3a1a;
  line-height: 1.5;
}

.fellows-coming-soon-text strong {
  font-weight: 700;
}

@media (max-width: 900px) {
  .fellows-detail,
  .fellows-apply-box {
    grid-template-columns: 1fr;
  }
  .fellows-grid {
    grid-template-columns: 1fr;
  }
}
