/* Practice hub (Pencil: PrcHb) */

.practice-hub-hero {
  padding: 80px 0;
  text-align: center;
  background: var(--color-bg-primary);
}

.practice-hub-hero h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.1;
  color: #18181B;
  margin-bottom: 24px;
}

.practice-hub-hero p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #71717A;
}

.practice-hub-content {
  padding: 0 0 80px;
  background: var(--color-bg-primary);
}

.daily-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.daily-card {
  border-radius: 22px;
  padding: 26px 28px;
  background: #FFFFFF;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.0706);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.daily-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.daily-head .ico {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.daily-head .t {
  font-size: 22px;
  font-weight: 700;
  color: #18181B;
}

.daily-head .d {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 400;
  color: #64748B;
}

.daily-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 20px;
  padding: 16px 32px;
  background: #2563EB;
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 600;
}

.type-label {
  font-size: 18px;
  font-weight: 600;
  color: #64748B;
}

.type-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.type-card {
  width: 200px;
  border-radius: 18px;
  padding: 20px 18px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.051);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.type-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
}

.type-card .ico {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.type-card .t {
  font-size: 16px;
  font-weight: 600;
  color: #18181B;
}

.type-card .go {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px 16px;
  background: #2563EB;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}

@media (max-width: 1024px) {
  .type-card { width: 100%; }
}

