.insc-wrap{
  max-width: 900px;
  margin: 24px auto 40px;
  padding: 0 16px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.insc-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 4px;
  margin-bottom: 16px;
  border-bottom: 1px solid #d7dce5;
}

.insc-title{
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}

.insc-sub{
  margin: 4px 0 0;
  font-size: 13px;
  color: #6b7280;
}

.insc-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.insc-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #d7dce5;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  min-height: 110px;
  height: 50%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.insc-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.insc-name{
  font-weight: 700;
  color: #1f2937;
  flex: 1;
  line-height: 1.4;
  min-width: 0;
}

.insc-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: #006400;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s ease;
  flex-shrink: 0;
  border: none;
}

.insc-btn:hover{
  background: #003900;
}

.footer-actions{
  text-align: center;
  margin-top: 20px;
}

.notice-empty{
  padding: 18px;
  border: 1px dashed #d7dce5;
  border-radius: 12px;
  text-align: center;
  color: #6b7280;
  background: #f8fafc;
}

.insc-header.waitlist .insc-title{
  color: #003900;
}

@media (max-width: 640px){
  .insc-list{
    grid-template-columns: 1fr;
  }

  .insc-card{
    flex-direction: column;
    align-items: flex-start;
  }

  .insc-btn{
    width: 100%;
  }
}
