Startseite

Zuletzt geändert von Lucas Meister am 2026/05/23 13:21

body, .dashboard-wrapper {
  font-family: 'Inter', sans-serif;
  background: #fafafa;
}

.dashboard-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
}

/* HEADER */
.title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.6px;
  margin-bottom: 6px;
}

.subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

/* SECTION */
.section {
  margin-bottom: 34px;
}

.section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #777;
  margin-bottom: 14px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
}

/* CARD (größer & „portaliger“) */
.card {
  background: white;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 22px 20px;
  text-decoration: none !important;
  color: #222;
  transition: all 0.15s ease;
  min-height: 110px;
}

.card:hover {
  border-color: #b7e4c7;
  background: #f6fffa;
  transform: translateY(-2px);
}

/* TITLE */
.card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* DESC */
.card-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

/* Accent line */
.accent {
  height: 2px;
  width: 60px;
  background: #1b7a4a;
  margin: 10px 0 18px;
  border-radius: 2px;
}