.vulcan-nom-module {
  --border-color: #e2e8f0;
}

.vulcan-summary-text h2 {
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 10px 0;
}

.status-badge {
  font-size: 0.8rem;
  background: #ebf8ff;
  color: #2b6cb0;
  padding: 4px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 800;
  border: 1px solid #bee3f8;
}

.vulcan-summary-text h4 {
  font-weight: normal;
  margin-bottom: 30px;
}

.instruction-heading {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: block;
}

.nomination-pathways {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.pathway-card {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pathway-card h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.pathway-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.btn-nom {
  display: inline-block;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
}

/* NOMINEE GRID */
.classification-group {
  margin-top: 50px;
}

.classification-title {
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.nominee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.nominee-tile {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 20px;
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
}

.nominee-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nominee-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.nominee-img img {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  object-fit: cover;
  background: #f7fafc;
}

.nominee-name-box h4 {
  margin: 0;
  font-size: 1.05rem;
}

.nominee-org {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.bio-preview {
  font-size: 0.9rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.click-tip {
  font-size: 0.75rem;
  font-weight: bold;
  margin-top: 10px;
  display: block;
  text-transform: uppercase;
}

.empty-placeholder {
  grid-column: 1 / -1;
  border: 2px dashed var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  font-style: italic;
  color: #a0aec0;
  background: #fafafa;
}

/* OVERLAY SYSTEM */
.nom-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.nom-overlay.active {
  display: flex;
}

.overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(26, 54, 93, 0.85);
  backdrop-filter: blur(4px);
}

.overlay-inner {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
}

.overlay-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

.overlay-top {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-bottom: 30px;
}

.overlay-img img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  border: 4px solid var(--border-color);
}

.overlay-bio {
  line-height: 1.8;
  font-size: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.overlay-bio p {
  margin: 10px 0px;
}

.linkedin-tile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0077b5;
  color: white !important;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.8rem;
  width: fit-content;
}

@media (max-width: 768px) {
  .nomination-pathways {
    flex-direction: column;
  }

  .overlay-top {
    flex-direction: column;
    text-align: center;
  }
}
