/* Mentorship pages */

.mentorship-action-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(74, 52, 40, 0.10);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 12px 28px rgba(85, 55, 20, 0.08);
}

.mentorship-action-panel span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3b291a;
  font-weight: 900;
}

.mentorship-action-panel p {
  margin: 8px 0 0;
  color: #776554;
  font-size: 13px;
  line-height: 1.45;
}

.mentorship-action-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.mentorship-action-panel__actions .button {
  border-color: rgba(217, 137, 0, 0.28);
  background: linear-gradient(135deg, #fff8e4, #fff0bd);
  color: #7a4a00;
}

.mentorship-action-panel__actions .button:hover,
.mentorship-action-panel__actions .button:focus-visible {
  border-color: rgba(217, 137, 0, 0.48);
  background: linear-gradient(135deg, #ffce3a, #e49100);
  color: #3b291a;
  box-shadow: 0 10px 22px rgba(217, 137, 0, 0.22);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .mentorship-action-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .mentorship-action-panel__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .mentorship-action-panel__actions .button {
    width: 100%;
  }
}
