/* =========================================================
   SUPPORT PAGE THEME — Support Ticket Cards
   Author: ChatGPT & Gwezie
========================================================= */

.sc-card-support {
  background: linear-gradient(to bottom, #38250d, #2b1b08);
  border: 3px solid #ad8640;
  border-radius: 18px;
  padding: 26px;
  width: 85%;
  margin: 0 auto 48px;
  box-shadow:
    0 0 22px rgba(0, 0, 0, 0.85),
    inset 0 0 10px rgba(0, 0, 0, 0.45);
  color: #e9d9b0;
}

/* Remove old pseudo decorations */
.sc-card-support::before,
.sc-card-support::after {
  display: none !important;
  content: none !important;
  background: none !important;
  border: none !important;
}

/* Header layout */
.sc-card-support .sc-card-header {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 10px;
}

.sc-card-support .sc-imgwrap img {
  width: 150px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/* Title */
.sc-card-support .sc-name {
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #f4d074;
  text-shadow:
    0 0 6px rgba(0,0,0,0.8),
    0 0 12px rgba(139,96,28,0.9),
    0 0 20px rgba(244,208,116,0.9);
}

/* Metadata pill row */
.sc-card-support .sc-meta {
  margin-top: 6px;
}

/* Badge styling — small */
.sc-card-support .sc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,220,150,0.4);
  background: rgba(0,0,0,0.35);
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f4e1b2;
  margin-right: 18px;
  margin-top: 6px;
}

.sc-card-support .sc-badge a {
  color: inherit;
  text-decoration: none;
}
.sc-card-support .sc-badge a:hover {
  text-decoration: underline;
}

/* Form body area */
.sc-card-support .sc-body {
  margin-top: 16px;
  padding: 16px 18px;
  background: linear-gradient(to bottom, #3a2916, #24170c);
  border-radius: 12px;
  box-shadow: inset 0 0 18px rgba(0,0,0,0.65);
  line-height: 1.55;
  font-size: 1.02rem;
}

/* Buttons row */
.sc-card-support .sc-footer {
  margin-top: 18px;
  padding: 0 0 6px;
  display: flex;
  justify-content: flex-end;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.sc-card-support .sc-footer a,
.sc-card-support button.sc-tag {
  display: inline-block;
  border: 2px solid #d4a74e;
  padding: 8px 22px;
  border-radius: 999px;
  color: #d4a74e;
  background: #3a2916;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: inset 0 0 12px rgba(0,0,0,0.6);
  transition: 0.2s;
  cursor: pointer;
}

.sc-card-support .sc-footer a:hover,
.sc-card-support button.sc-tag:hover {
  background: #51371d;
  box-shadow: 0 0 14px rgba(212,167,78,0.6);
}
