/* Integração Google Drive: faixa compacta, mobile first e coerente com a identidade do Vitae. */
.drive-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  border-left: 4px solid var(--amber);
}
.drive-status div { display: grid; gap: 3px; }
.drive-status strong, .drive-status small { display: block; }
.drive-status small { color: var(--muted); }
.drive-status.connected { border-left-color: var(--green); }
@media (max-width: 480px) {
  .drive-status { align-items: stretch; flex-direction: column; }
  .drive-status button { width: 100%; }
}
