.wplt-myaccount-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.wplt-dashboard-box {
  padding: 1.25rem 1rem;
  background: var(--background-color);
  border: 1px solid #e2e8f0;
  text-align: center;
  text-decoration: none;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 1px 2px 0 rgb(15 23 42 / 0.05) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease !important;
}

.wplt-dashboard-box:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 15px -3px rgb(15 23 42 / 0.08) !important;
  transform: translateY(-2px);
}

.wplt-dashboard-icon svg {
  width: 2.375rem;
  height: 2.375rem;
  fill: var(--primary-color) !important;
  margin-bottom: 0.625rem;
}

.wplt-dashboard-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--headline-color);
  letter-spacing: 0.01em;
}

@media (max-width: 1024px) {
  .wplt-myaccount-dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wplt-myaccount-dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .wplt-dashboard-box {
    padding: 1rem 0.75rem;
  }

  .wplt-dashboard-icon svg {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.5rem;
  }

  .wplt-dashboard-label {
    font-size: 0.8125rem;
  }
}
