.tip-dashboard,
.tip-dashboard *,
.tip-status-list,
.tip-admin,
.tip-admin * {
  box-sizing: border-box;
}

.tip-dashboard {
  --tip-navy: #08306b;
  --tip-blue: #0057b8;
  --tip-mid: #1e73d8;
  --tip-light: #eef6ff;
  --tip-gold: #d8a316;
  --tip-text: #10213f;
  --tip-body: #31435f;
  --tip-border: #d9e5f5;
  color: var(--tip-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0 auto;
  max-width: 1180px;
  padding: 28px 16px 48px;
}

.tip-hero {
  align-items: flex-start;
  background:
    linear-gradient(110deg, rgba(238, 246, 255, 0.98), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 92% 14%, rgba(216, 163, 22, 0.22), transparent 28%);
  border: 1px solid var(--tip-border);
  border-radius: 8px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 30px;
}

.tip-eyebrow {
  color: var(--tip-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.tip-hero h1 {
  color: var(--tip-navy);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
  margin: 0 0 10px;
}

.tip-hero p,
.tip-card p,
.tip-pending-card p,
.tip-notice {
  color: var(--tip-body);
  line-height: 1.55;
}

.tip-status-pill {
  background: #fff;
  border: 1px solid var(--tip-border);
  border-radius: 8px;
  min-width: 190px;
  padding: 12px 14px;
}

.tip-status-pill span {
  color: var(--tip-body);
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}

.tip-status-pill strong {
  color: var(--tip-navy);
  display: block;
  font-size: 1.2rem;
}

.tip-member-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.tip-member-nav a {
  background: #fff;
  border: 1px solid var(--tip-border);
  border-radius: 8px;
  color: var(--tip-navy);
  font-weight: 800;
  padding: 10px 13px;
  text-decoration: none;
}

.tip-member-nav a:hover,
.tip-member-nav a:focus-visible {
  border-color: var(--tip-blue);
  outline: none;
}

.tip-card-grid,
.tip-tool-grid,
.tip-admin-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0;
}

.tip-card,
.tip-pending-card,
.tip-status-list,
.tip-admin-card,
.tip-admin .widefat,
.tip-notice {
  background: #fff;
  border: 1px solid var(--tip-border, #d9e5f5);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 33, 63, 0.08);
}

.tip-card,
.tip-pending-card,
.tip-status-list,
.tip-notice {
  padding: 18px;
}

.tip-card {
  color: var(--tip-text);
  text-decoration: none;
}

.tip-card span {
  color: var(--tip-blue);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.tip-card strong,
.tip-pending-card h2,
.tip-status-list h2 {
  color: var(--tip-navy);
  display: block;
  font-size: 1.2rem;
  margin: 0 0 8px;
}

.tip-card:hover,
.tip-card:focus-visible {
  border-color: var(--tip-blue);
  outline: none;
}

.tip-status-row {
  align-items: center;
  border-top: 1px solid var(--tip-border, #d9e5f5);
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.tip-status-row:first-of-type {
  border-top: 0;
}

.is-ok {
  color: #0a7a3d !important;
}

.is-pending {
  color: #b66b00 !important;
}

.tip-admin-grid--cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tip-admin-card {
  padding: 16px;
}

.tip-admin-card span {
  color: #31435f;
  display: block;
  font-weight: 700;
}

.tip-admin-card strong {
  color: #08306b;
  display: block;
  font-size: 1.45rem;
  line-height: 1.12;
  margin-top: 6px;
}

.tip-admin-card p {
  color: #31435f;
  margin-bottom: 0;
}

.tip-checklist {
  background: #eef6ff;
  border: 1px solid #d9e5f5;
  border-radius: 8px;
  padding: 16px 18px 16px 36px;
}

@media (max-width: 860px) {
  .tip-hero,
  .tip-card-grid,
  .tip-tool-grid,
  .tip-admin-grid,
  .tip-admin-grid--cards {
    display: block;
  }

  .tip-status-pill,
  .tip-card,
  .tip-pending-card,
  .tip-admin-card {
    margin-top: 14px;
  }
}
