/* Sell form — photo upload */
.ta-sell-form .ta-sell-photos-field {
  display: grid;
  gap: 8px;
}
.ta-sell-form .ta-sell-photos-label {
  font-size: 13px;
  font-weight: 700;
  color: #374151;
}
.ta-sell-form #sell-photos {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
}
.ta-sell-form label.ta-sell-upload {
  display: block !important;
  gap: 0 !important;
}
.ta-sell-form .ta-sell-upload {
  display: block;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  background: linear-gradient(180deg, #fafafa 0%, #f3f4f6 100%);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  margin: 0;
}
.ta-sell-form .ta-sell-upload:hover,
.ta-sell-form .ta-sell-upload.ta-sell-upload--drag {
  border-color: #cf1020;
  background: linear-gradient(180deg, #fff5f5 0%, #fef2f2 100%);
  box-shadow: 0 0 0 3px rgba(207, 16, 32, 0.12);
}
.ta-sell-form .ta-sell-upload.ta-sell-upload--full {
  opacity: 0.75;
  cursor: not-allowed;
  pointer-events: none;
}
.ta-sell-form .ta-sell-upload.ta-sell-upload--error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}
.ta-sell-form .ta-sell-upload-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 28px 20px;
  text-align: center;
}
.ta-sell-form .ta-sell-upload-icon {
  font-size: 40px !important;
  color: #cf1020;
  margin-bottom: 4px;
}
.ta-sell-form .ta-sell-upload-title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: #1f2937;
}
.ta-sell-form .ta-sell-upload-sub {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}
.ta-sell-form .ta-sell-upload-link {
  color: #cf1020;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ta-sell-form .ta-sell-upload-meta {
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
}
.ta-sell-form .ta-sell-upload.ta-sell-upload--has-files .ta-sell-upload-prompt {
  padding: 18px 16px;
}
.ta-sell-form .ta-sell-upload.ta-sell-upload--has-files .ta-sell-upload-icon {
  font-size: 28px !important;
}
.ta-sell-form .ta-sell-upload-previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.ta-sell-form .ta-sell-upload-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.ta-sell-form .ta-sell-upload-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ta-sell-form .ta-sell-upload-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.ta-sell-form .ta-sell-upload-remove:hover {
  background: #cf1020;
}
.ta-sell-form .ta-sell-upload-remove .material-symbols-outlined {
  font-size: 18px !important;
}

/* About — team roles */
.ta-team-member .ta-team-role {
  display: inline-block;
  margin: 8px 0 0;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff !important;
  background: #cf1020;
  border-radius: 999px;
  line-height: 1.2;
}
.ta-team-photo-wrap--missing {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ta-team-photo-wrap--missing::after {
  content: "Photo";
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
}
