.dashboard-support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 1rem;
}

.dashboard-support-main { min-width: 0; }

.support-card-host {
  position: sticky;
  top: 20px;
  padding: 22px;
  border: 1px solid #e3e6e8;
  border-radius: 16px;
  background: #f9faf9;
  color: #202223;
}

.support-card-host:empty { display: none; }
.support-card-host img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 20px;
}
.support-eyebrow {
  margin: 0 0 10px;
  color: #61666b;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .09em;
}
.support-card-host h2 { margin: 0 0 12px; font-size: 19px; letter-spacing: -.02em; }
.support-copy, .support-status { color: #61666b; font-size: 13px; line-height: 1.65; }
.support-chat { display: block; margin: 20px 0 12px; }
.support-email { color: #303638; font-size: 13px; overflow-wrap: anywhere; text-underline-offset: 3px; }
.support-status:empty { display: none; }
.support-note {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #e3e6e8;
  color: #61666b;
  font-size: 11px;
}

@media (max-width: 850px) {
  .dashboard-support-layout { grid-template-columns: minmax(0, 1fr); }
  .support-card-host { position: static; }
  .support-card-host img { max-width: 300px; }
}
