.dashboard-objectives-disclosure {
  padding: 0;
  overflow: hidden;
}

.dashboard-objectives-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 76px;
  padding: 17px 18px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.dashboard-objectives-summary::-webkit-details-marker {
  display: none;
}

.dashboard-objectives-summary-copy {
  min-width: 0;
}

.dashboard-objectives-summary-copy strong,
.dashboard-objectives-summary-copy small {
  display: block;
}

.dashboard-objectives-summary-copy strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.dashboard-objectives-summary-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.3;
}

.dashboard-objectives-summary-status {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.dashboard-objectives-summary-status b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: #0f766e;
  font-size: 0.82rem;
  font-weight: 950;
}

.dashboard-objectives-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: var(--muted);
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.dashboard-objectives-disclosure[open]
  .dashboard-objectives-chevron {
  transform: rotate(180deg);
  color: #0f766e;
}

.dashboard-objectives-disclosure[open]
  .dashboard-objectives-summary {
  border-bottom:
    1px solid rgba(226, 232, 240, 0.88);
}

.dashboard-objectives-content {
  display: grid;
  gap: 13px;
  padding: 15px 17px 17px;
}

.dashboard-objective-list {
  display: grid;
  gap: 11px;
}

.dashboard-objectives-more {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.dashboard-objectives-disclosure
  .objective-progress-card {
  padding: 14px;
  border-radius: 19px;
}

.dashboard-objectives-disclosure
  .personal-wide-action {
  width: 100%;
}

@media (max-width: 430px) {
  .dashboard-objectives-summary {
    min-height: 70px;
    padding: 15px;
  }

  .dashboard-objectives-summary-status {
    gap: 7px;
  }

  .dashboard-objectives-summary-status b {
    min-width: 47px;
    padding-inline: 8px;
  }

  .dashboard-objectives-content {
    padding: 13px 14px 15px;
  }
}