/* Recruiter Field Guide — booth assets, numbered steps, code tags. */

.booth-image-wrapper {
  width: 340px;
  flex-shrink: 0;
  text-align: center;
}
.booth-image-wrapper .booth-image {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: block;
}
.booth-image-wrapper .booth-caption {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

@media (max-width: 900px) {
  .booth-image-wrapper { float: none; width: 100%; margin: 0 0 1rem 0; }
}

.steps { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.step {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: rgba(111, 147, 189, 0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.step:hover { background: rgba(111, 147, 189, 0.09); border-color: var(--border-gold); }

.step-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  min-width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body { flex: 1; }
.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}
.step-body p { font-size: 0.92rem; line-height: 1.6; opacity: 0.9; }

.copy-icon {
  border: 1px solid var(--border-gold);
  background: rgba(201, 169, 97, 0.08);
  border-radius: 4px;
  color: var(--gold);
  font-size: 0.8rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 0.4rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.copy-icon:hover { background: var(--navy-600); transform: translateY(-1px); }
.copy-icon:focus-visible { outline: 2px solid var(--border-gold); outline-offset: 2px; }

@media (max-width: 700px) {
  .asset-table { font-size: 0.82rem; }
  .tab-panel .asset-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
  div[style*="display:flex"] { flex-direction: column !important; }
}
